<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Saravanan</title>
    <description>The latest articles on DEV Community by Saravanan (@saravanan_477814b61087a66).</description>
    <link>https://dev.to/saravanan_477814b61087a66</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F2521641%2Fc754ade4-5a16-41d3-9089-b9dd5bc84b42.jpg</url>
      <title>DEV Community: Saravanan</title>
      <link>https://dev.to/saravanan_477814b61087a66</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/saravanan_477814b61087a66"/>
    <language>en</language>
    <item>
      <title>Matrix Addition,Matrix Multipliction</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Tue, 04 Mar 2025 16:57:02 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/matrix-additionmatrix-multipliction-4b2d</link>
      <guid>https://dev.to/saravanan_477814b61087a66/matrix-additionmatrix-multipliction-4b2d</guid>
      <description>&lt;h2&gt;
  
  
  1.Matrix Addition:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;public static void main(String[] args) {

int[][] a= {{1,2,3}
            {1,2,3},
        {4,5,6}};

int[][] b= {{6,7,8},
        {1,2,3},
        {7,8,9}};
int [][] c=new int[a.length][a[0].length]; 

for(int row=0;row&amp;lt;a.length;row++)
{
    for(int col=0;col&amp;lt;b.length;col++)
    {   
      c[row][col]=a[row][col]+b[row][col];
      System.out.print(c[row][col]+" ");
    }
      System.out.println();
}

}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;output:&lt;br&gt;
7 9 11 &lt;br&gt;
2 4 6 &lt;br&gt;
11 13 15 &lt;/p&gt;

&lt;h2&gt;
  
  
  2.Martix Multipliction:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;public static void main(String[] args) {

int[][] a= {{1,2,3},
        {1,2,3},
        {4,5,6}};
int[][] b= {{6,7,8},
        {1,2,3},
        {7,8,9}};
int [][] c=new int[a.length][a[0].length];
for(int row=0;row&amp;lt;a.length;row++)
{
  for(int col=0;col&amp;lt;b.length;col++)
  {
    for(int k = 0;k&amp;lt;b.length;k++)
    {
      c[row][col]=c[row][col]+(a[row][k]*b[k][col]);
    }
    System.out.print(c[row][col]+" ");
  }
     System.out.println();
}

}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;output:&lt;br&gt;
29 35 41 &lt;br&gt;
29 35 41 &lt;br&gt;
71 86 101 &lt;/p&gt;

</description>
      <category>programming</category>
      <category>matrix</category>
      <category>java</category>
      <category>payilagam</category>
    </item>
    <item>
      <title>Linear search and Binary search programs</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Mon, 24 Feb 2025 17:42:49 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/linear-search-and-binary-search-program-1291</link>
      <guid>https://dev.to/saravanan_477814b61087a66/linear-search-and-binary-search-program-1291</guid>
      <description>&lt;h2&gt;
  
  
  Linear Search:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;int[] ar = {10,45,67,100}       
int key = 67;
for(int i=0;i&amp;lt;ar.length;i++)
{
 if(ar[i]==key)
 System.out.println("key is presented :"+i);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;output:&lt;br&gt;
key is presented :2&lt;/p&gt;

&lt;h2&gt;
  
  
  Binary Search:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;
int[] ar = {10,16,18,21,27,37, 45, 98,100};
int key = 18;
int max_idx = ar.length-1;
int min_idx=0;
while(min_idx&amp;lt;=max_idx)
{
    int mid_idx=(min_idx+max_idx)/2;        
    if(ar[mid_idx]==key)            

    {
        System.out.println("key is present :" + mid_idx);
        break;
    }
    else if(key&amp;gt;ar[mid_idx])    
    {
        min_idx= mid_idx+1;
    }
    else if(key&amp;lt;ar[mid_idx]) 
    {
        max_idx= mid_idx-1;     
    }


}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;output:&lt;br&gt;
key is present :2&lt;/p&gt;

</description>
      <category>programming</category>
      <category>payilagam</category>
      <category>java</category>
      <category>algorithms</category>
    </item>
    <item>
      <title>While loop examples</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Thu, 06 Feb 2025 17:03:36 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/while-loop-examples-4n5e</link>
      <guid>https://dev.to/saravanan_477814b61087a66/while-loop-examples-4n5e</guid>
      <description>&lt;h2&gt;
  
  
  (1)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                int count = 0;
        while(count&amp;lt;5)
        {
            System.out.println("1 2 3 4 5");
            count = count + 1;
        }

//      output:1 2 3 4 5
//             1 2 3 4 5
//             1 2 3 4 5
//             1 2 3 4 5 
//             1 2 3 4 5 
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  (2)
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                int count = 1;
        while (count &amp;lt;=5)
        {
            System.out.println("1 0 1 0 1");
            count = count + 1;
        }

//      output:1 0 1 0 1
//             1 0 1 0 1
//             1 0 1 0 1
//             1 0 1 0 1
//             1 0 1 0 1
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  (3) - Chocolate
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                int chocolate = 15;
        int wrapper = 15;
        while (wrapper &amp;gt;=3)
        {
            wrapper = wrapper - 3;
            chocolate = chocolate + 1;
            wrapper = wrapper + 1;

        }
        System.out.println(chocolate);

//      output: 22
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  (4) - Dosai count
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;                int total_balance = 8;
        int count = 1;
        while(count&amp;lt;=3)
        {
        int dosai_count =total_balance/2;
        total_balance = total_balance + dosai_count;
        count = count + 1;
        }
        {
        System.out.println(total_balance);
        }

//      output: 27
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  (5) - 3 tables
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;int no = 1;
        int count = 1;
        while(no&amp;lt;=10)
        {
        int j = no*3;
        System.out.println(no +"*"+3+"="+j);
        no = no+ 1;
        count = count + 1;
        }

//      output: 1*3=3
//              2*3=6
//              3*3=9
//              4*3=12
//              5*3=15
//              6*3=18
//              7*3=21
//              8*3=24
//              9*3=27
//              10*3=30
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



</description>
    </item>
    <item>
      <title>Control flow statement: while loop.</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Wed, 29 Jan 2025 13:26:26 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/control-flow-statement-while-loop-26cf</link>
      <guid>https://dev.to/saravanan_477814b61087a66/control-flow-statement-while-loop-26cf</guid>
      <description>&lt;h2&gt;
  
  
  loops:
&lt;/h2&gt;

&lt;p&gt;-Loops can execute a block of code as long as a specified condition is reached.&lt;br&gt;
-Loops are handy because they save time, reduce errors, and they make code more readable.&lt;/p&gt;

&lt;h2&gt;
  
  
  while loop:
&lt;/h2&gt;

&lt;p&gt;A while loop in Java is a control flow statement that allows code to be executed repeatedly based on a given Boolean condition. The loop continues to execute as long as the condition evaluates to true.&lt;/p&gt;

&lt;h2&gt;
  
  
  syntax:
&lt;/h2&gt;

&lt;p&gt;while (condition) {&lt;br&gt;
  // code block to be executed&lt;br&gt;
}&lt;/p&gt;

&lt;h2&gt;
  
  
  task 1:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;/*
                int count = 0;
                while(count&amp;lt;=5)
                {                                       //Output:1 1 1 1 1
                    System.out.println(1);
                    count = count + 1;
                }
                */


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  task 2:
&lt;/h2&gt;



&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt; /*
                int count = 5;
                while(count&amp;gt;=1)
                {                                         //Output:5 4 3 2 1 
                    System.out.println(count);
                    count = count - 1;
                }
                */
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;h2&gt;
  
  
  key point:
&lt;/h2&gt;

&lt;p&gt;-The loop runs zero or more times, depending on the condition.&lt;br&gt;
-If the condition is false at the start, the loop does not execute.&lt;br&gt;
-If the condition never becomes false, an infinite loop occurs.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Examples for condition statement,if,if else,else if</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Wed, 29 Jan 2025 13:07:12 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/examples-for-condition-statementifif-elseelse-if-3fij</link>
      <guid>https://dev.to/saravanan_477814b61087a66/examples-for-condition-statementifif-elseelse-if-3fij</guid>
      <description>&lt;p&gt;&lt;br&gt;
```package program_basics;&lt;/p&gt;

&lt;p&gt;public class Condition_statement {&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;public static void main(String[] args) {
    // TODO Auto-generated method stub
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;//-------------------------------------------------&lt;br&gt;
//if only&lt;br&gt;
        /*&lt;br&gt;
        int i=25;&lt;br&gt;
        int j=50;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    if (i&amp;lt;j)
    {
        System.out.println("j is greater");

    }
    */
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;//-----------------------------------------------&lt;br&gt;
//if else only&lt;br&gt;
        /*&lt;br&gt;
        int i=25;&lt;br&gt;
        int j=50;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    if (i&amp;gt;j)
    {
        System.out.println("j is greater");

    }
    else 
    {
        System.out.println("j is lesser");

    }
    */
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;//----------------------------------------------------&lt;/p&gt;

&lt;p&gt;//else if only&lt;br&gt;
        /*&lt;br&gt;
        int i=35;&lt;br&gt;
        int  j=50;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    if (i&amp;gt;j)
    {
        System.out.println("i is greater");
    }
    else if(j&amp;lt;i)
    {
        System.out.println("j is greater");
    }
    else
    {
        System.out.println("this is false");
    }
    */
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;}&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>payilagam</category>
      <category>java</category>
    </item>
    <item>
      <title>Day-5 Example for Encapsulation</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Wed, 18 Dec 2024 15:23:26 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/day-5-example-for-encapsulation-35ib</link>
      <guid>https://dev.to/saravanan_477814b61087a66/day-5-example-for-encapsulation-35ib</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;public class Friend1
{
String name;
long mobileNo; 
private int atmPin; 

public Friend1(String name, long mobileNo, int atmPin)
{
this.name = name; 
this.mobileNo = mobileNo; 
this.atmPin = atmPin; 
}

public static void main(String[] args)
{
Friend1 f1 = new Friend1("Kavin", 1234, 1111);
f1.withdraw();

}
private void withdraw()
{
System.out.println(atmPin);
}
public void tour()
{
System.out.println("Going for a ride");
}

public void publish_results()
{
System.out.println("Pass with good marks ");
}




}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;





&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class Friend2
{

public static void main(String[] args)
{

Friend1 ff = new Friend1("Arul",3434,2323);
ff.tour();
ff.withdraw();
}

}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;output:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgyjpvqbo7h27o30uccer.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fgyjpvqbo7h27o30uccer.png" alt="Image description" width="639" height="118"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>payilagam</category>
      <category>encapsulation</category>
    </item>
    <item>
      <title>Day-4 Task-2</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Wed, 18 Dec 2024 05:06:51 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/day-4-task-2-43p8</link>
      <guid>https://dev.to/saravanan_477814b61087a66/day-4-task-2-43p8</guid>
      <description>&lt;p&gt;Task:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Create a class Called PlayGround&lt;/li&gt;
&lt;li&gt;Create non-static variables as below. 
int score, balls, catches; 
String player_name; &lt;/li&gt;
&lt;li&gt;Create main method. &lt;/li&gt;
&lt;li&gt;Inside main method, create two instances as below. 
PlayGround player1 = new PlayGround("dhoni", 100, 3); 
PlayGround player2 = new PlayGround("jadeja", 56, 2, 30); &lt;/li&gt;
&lt;li&gt;Create appropriate constructors for handling above objects. &lt;/li&gt;
&lt;li&gt;Using player1 object, call batting() method.  Print - score, player_name. &lt;/li&gt;
&lt;li&gt;Using player2 object, call allrounder() method.  Print - score, player_name, balls, catches
&lt;/li&gt;
&lt;/ol&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class PlayGround
{
    int score,balls,catches;
    String player_name;

    public PlayGround(String player_name,int score,int catches)
    {
        this.score = score;
        this.player_name = player_name;
        this.catches = catches;
    }
    public PlayGround(String player_name,int score,int catches,int balls)
    {
        this.score = score;
        this.balls = balls;
        this.catches = catches;
        this.player_name = player_name;
    }

    public static void main(String [] args)
    {
        PlayGround player1 = new PlayGround("dhoni",100,3);
        PlayGround player2 = new PlayGround("jadeja",56,2,30);

        player1.batting();
        player2.allrounder();
    }
    public void batting()
    {
    System.out.println(player_name +" "+ score);
    }
    public void allrounder()
    {
    System.out.println(player_name + " " + balls + " " + score + " " + catches);
    }
}


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;Output:&lt;/p&gt;

</description>
      <category>java</category>
      <category>payilagam</category>
    </item>
    <item>
      <title>Day - 4 Task-1</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Tue, 17 Dec 2024 04:58:59 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/day-4-task-4m81</link>
      <guid>https://dev.to/saravanan_477814b61087a66/day-4-task-4m81</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;class Employee
{
    public static void main(String[] args)
    {
        Employee emp=new Employee();
        emp.develop();
        int output = emp.work(10);
        System.out.println("work" + " " + output ); 
    }

       public void develop()
    {

    }
       public int work(int e)
    {
        return e * 10;
    }


&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;



&lt;p&gt;output:&lt;/p&gt;

&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzs417e4rx6eyuv4l8ce7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fzs417e4rx6eyuv4l8ce7.png" alt="Image description" width="624" height="122"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>programming</category>
      <category>payilagam</category>
    </item>
    <item>
      <title>Day-3 simple return model</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Tue, 10 Dec 2024 15:08:39 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/day-3-simple-return-model-3n07</link>
      <guid>https://dev.to/saravanan_477814b61087a66/day-3-simple-return-model-3n07</guid>
      <description>&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;

class Bmw
{
public static void main(String args[])
{

Bmw car = new Bmw();
car.go_to_race();

}
public  int go_to_race()
{
System.out.println("we are going to race");
  return 700000;
}
}

- 

out put:

![Image description](https://dev-to-uploads.s3.amazonaws.com/uploads/articles/5o17j5q39shuo7s4ec34.png)
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

</description>
      <category>payilagam</category>
      <category>java</category>
    </item>
    <item>
      <title>Day-3 What is Datatype?</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Tue, 10 Dec 2024 14:38:48 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/what-is-datatype-mdi</link>
      <guid>https://dev.to/saravanan_477814b61087a66/what-is-datatype-mdi</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4e8oo80hvmsof9cpbu0v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F4e8oo80hvmsof9cpbu0v.png" alt="Image description" width="554" height="677"&gt;&lt;/a&gt;&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnu9d7fd31lqi7xezzuij.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fnu9d7fd31lqi7xezzuij.png" alt="Image description" width="539" height="573"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>payilagam</category>
      <category>java</category>
      <category>datatype</category>
    </item>
    <item>
      <title>Day-3 What is mean by Method overloading?</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Tue, 10 Dec 2024 14:25:09 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/method-overloading-43gk</link>
      <guid>https://dev.to/saravanan_477814b61087a66/method-overloading-43gk</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foddmthzyntw6rjj2j9y7.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Foddmthzyntw6rjj2j9y7.png" alt="Image description" width="589" height="600"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>payilagam</category>
      <category>java</category>
    </item>
    <item>
      <title>Day 2 Task-1 Theatre.java</title>
      <dc:creator>Saravanan</dc:creator>
      <pubDate>Tue, 10 Dec 2024 06:12:20 +0000</pubDate>
      <link>https://dev.to/saravanan_477814b61087a66/day-2-task-1-theatrejava-227i</link>
      <guid>https://dev.to/saravanan_477814b61087a66/day-2-task-1-theatrejava-227i</guid>
      <description>&lt;p&gt;&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7bn30utqeohjwtbmxs67.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2F7bn30utqeohjwtbmxs67.png" alt="Image description" width="800" height="325"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;out put:&lt;br&gt;
&lt;a href="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuclkdqoys847y2rqu3i9.png" class="article-body-image-wrapper"&gt;&lt;img src="https://media2.dev.to/dynamic/image/width=800%2Cheight=%2Cfit=scale-down%2Cgravity=auto%2Cformat=auto/https%3A%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Farticles%2Fuclkdqoys847y2rqu3i9.png" alt="Image description" width="800" height="456"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
  </channel>
</rss>
