<?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: Dinesh Nagarajan</title>
    <description>The latest articles on DEV Community by Dinesh Nagarajan (@dinesh_nagarajan_7f102d3e).</description>
    <link>https://dev.to/dinesh_nagarajan_7f102d3e</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%2F3300500%2F102963c0-263a-4b18-ad80-c20f9e8b4303.png</url>
      <title>DEV Community: Dinesh Nagarajan</title>
      <link>https://dev.to/dinesh_nagarajan_7f102d3e</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/dinesh_nagarajan_7f102d3e"/>
    <language>en</language>
    <item>
      <title>Find out the max &amp; min value in given array</title>
      <dc:creator>Dinesh Nagarajan</dc:creator>
      <pubDate>Thu, 24 Jul 2025 11:31:04 +0000</pubDate>
      <link>https://dev.to/dinesh_nagarajan_7f102d3e/find-out-the-max-min-value-in-given-array-3924</link>
      <guid>https://dev.to/dinesh_nagarajan_7f102d3e/find-out-the-max-min-value-in-given-array-3924</guid>
      <description>&lt;p&gt;public static void main(String[] args) {&lt;br&gt;
        // TODO Auto-generated method stub&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    //Max Value:

    int []marks= {5,10,20,50,40,60};
    int max=0;

    for(int i=0;i&amp;lt;=marks.length-1;i++) {

        if(marks[i]&amp;gt;max) {

            max=marks[i];
        }
    }
   System.out.println(max);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;System.out.println("&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;");          &lt;/p&gt;

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

    for(int i=0;i&amp;lt;=marks.length-1;i++) {

    if(marks[i]&amp;lt;min) {

        min=marks[i];

    }

}

    System.out.println(min);

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

&lt;/div&gt;

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

</description>
    </item>
    <item>
      <title>String,StringBuffer,StringBuilder using == Operator.</title>
      <dc:creator>Dinesh Nagarajan</dc:creator>
      <pubDate>Thu, 24 Jul 2025 11:30:10 +0000</pubDate>
      <link>https://dev.to/dinesh_nagarajan_7f102d3e/stringstringbufferstringbuilder-using-operator-kcl</link>
      <guid>https://dev.to/dinesh_nagarajan_7f102d3e/stringstringbufferstringbuilder-using-operator-kcl</guid>
      <description>&lt;p&gt;public static void main(String[] args) {&lt;br&gt;
        // TODO Auto-generated method stub&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    // Primitive Data Types:
        int no1 = 10;
            int no2 = 10;
            System.out.println(no1 == no2);    // == operator comparing the value.
            //Output: "true"

            // Non Primitive Data Types---&amp;gt;    "String"
            // with new keyword using string
            String s1 = new String("hello");
            String s2 = new String("hello");  
            System.out.println(s1 == s2);     // == Operator comparing the object.
            //Output: "False"

            System.out.println(s1.equals(s2)); // equals() method is used to compare the value.
            //Output: "False" 

            // Without new keyword using string
            String a1 = "welcome";
            String a2 = "welcome";
            System.out.println(a1 == a2);      // == operator comparing the value because its having same value for both variables on same location.
            System.out.println(a1.equals(a2)); // equals() method is used to compare the value. 



    //StringBuffer 
            StringBuffer sb1 = new StringBuffer("java");
            StringBuffer sb2 = new StringBuffer("java");
            System.out.println(sb1 == sb2);                   
            // StringBuffer objects are created on the heap, and even if they have the same content,new StringBuffer() creates distinct objects in memory
            //Output: "False"
            System.out.println(sb1.equals(sb2));  
            //The equals() method in StringBuffer (and StringBuilder) is inherited from Object and by default performs a reference comparison
            //Output: "False"

    //StringBuilder
            StringBuilder sg1 = new StringBuilder("sql");
            StringBuilder sg2 = new StringBuilder("sql");
            System.out.println(sg1 == sg2); 
            //StringBuilder objects are created on the heap, and even if they have the same content,new StringBuilder() creates distinct objects in memor
            //Output: "False"
            System.out.println(sg1.equals(sg2));
            //The equals() method in StringBuilder is inherited from Object and by default performs a reference comparison
            //Output: "False"
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

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

</description>
    </item>
    <item>
      <title>Array</title>
      <dc:creator>Dinesh Nagarajan</dc:creator>
      <pubDate>Tue, 22 Jul 2025 13:14:59 +0000</pubDate>
      <link>https://dev.to/dinesh_nagarajan_7f102d3e/array-2fm1</link>
      <guid>https://dev.to/dinesh_nagarajan_7f102d3e/array-2fm1</guid>
      <description>&lt;p&gt;//Print all elements in array&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;     int a[]= {11,23,45,6,8,10,5};

        System.out.println("Array Before Reversed:");

        for (int i = 0; i &amp;lt; a.length; i++) {

            System.out.print(" "+a[i]);
        }

        System.out.println();

    //Reverse the Array:    
        System.out.println("Array After Reversing:");

        for (int i = a.length-1; i&amp;gt;=0; i--) {

            System.out.print(" "+a[i]);

    }

            //Sum the elements in Array:

        int sum = 0;
           for (int i = 0; i &amp;lt; a.length; i++) {
                sum += a[i];

                  }
            System.out.println();

System.out.println("Sum of given array is "+ sum);
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

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

</description>
    </item>
    <item>
      <title>Access Modifier and its types(Public,Private,Protect,default)</title>
      <dc:creator>Dinesh Nagarajan</dc:creator>
      <pubDate>Fri, 04 Jul 2025 13:12:09 +0000</pubDate>
      <link>https://dev.to/dinesh_nagarajan_7f102d3e/access-modifier-and-its-typespublicprivateprotectdefault-46p</link>
      <guid>https://dev.to/dinesh_nagarajan_7f102d3e/access-modifier-and-its-typespublicprivateprotectdefault-46p</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%2Focxntjbmhut7oxfdktxb.jpg" 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%2Focxntjbmhut7oxfdktxb.jpg" alt="Image description" width="800" height="1065"&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%2Fqodakgstdnr5umicjba3.jpg" 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%2Fqodakgstdnr5umicjba3.jpg" alt="Image description" width="781" height="1040"&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%2Feqxiujtxve44jvuluwei.jpg" 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%2Feqxiujtxve44jvuluwei.jpg" alt="Image description" width="800" height="1024"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>oop</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Inheritance and its types</title>
      <dc:creator>Dinesh Nagarajan</dc:creator>
      <pubDate>Thu, 03 Jul 2025 13:28:59 +0000</pubDate>
      <link>https://dev.to/dinesh_nagarajan_7f102d3e/inheritance-and-its-types-2jk7</link>
      <guid>https://dev.to/dinesh_nagarajan_7f102d3e/inheritance-and-its-types-2jk7</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%2F1rdztun80chyia5v4rqn.jpeg" 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%2F1rdztun80chyia5v4rqn.jpeg" alt="Image description" width="800" height="1065"&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%2Fz6vzwhadetgbbm2ygtrq.jpeg" 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%2Fz6vzwhadetgbbm2ygtrq.jpeg" alt="Image description" width="800" height="1065"&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%2Fzagueici14n5bvxlwaw2.jpeg" 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%2Fzagueici14n5bvxlwaw2.jpeg" alt="Image description" width="800" height="1065"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>oop</category>
      <category>programming</category>
      <category>discuss</category>
    </item>
    <item>
      <title>Basic Loop codes &amp; overview of OPPs (Inheritance and Types of inheritance).</title>
      <dc:creator>Dinesh Nagarajan</dc:creator>
      <pubDate>Wed, 02 Jul 2025 10:51:51 +0000</pubDate>
      <link>https://dev.to/dinesh_nagarajan_7f102d3e/basic-loop-codes-overview-of-opps-inheritance-and-types-of-inheritance-46ei</link>
      <guid>https://dev.to/dinesh_nagarajan_7f102d3e/basic-loop-codes-overview-of-opps-inheritance-and-types-of-inheritance-46ei</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%2Fa2iewt7jer3o1nud00o4.jpeg" 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%2Fa2iewt7jer3o1nud00o4.jpeg" alt="Image description" width="800" height="1065"&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%2F81a5k0qf0shob9bzvbm7.jpeg" 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%2F81a5k0qf0shob9bzvbm7.jpeg" alt="Image description" width="781" height="1040"&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%2Frkxme6sc3beeat4wmyni.jpeg" 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%2Frkxme6sc3beeat4wmyni.jpeg" alt="Image description" width="781" height="1040"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Git clone Procedures and commands</title>
      <dc:creator>Dinesh Nagarajan</dc:creator>
      <pubDate>Tue, 01 Jul 2025 12:01:19 +0000</pubDate>
      <link>https://dev.to/dinesh_nagarajan_7f102d3e/git-clone-procedures-and-commands-k34</link>
      <guid>https://dev.to/dinesh_nagarajan_7f102d3e/git-clone-procedures-and-commands-k34</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%2Fgukcnq0lt5s47lsqw5xj.jpeg" 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%2Fgukcnq0lt5s47lsqw5xj.jpeg" alt="Image description" width="800" height="1065"&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%2Fworqlj1tv6dxu9a0hbbo.jpeg" 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%2Fworqlj1tv6dxu9a0hbbo.jpeg" alt="Image description" width="781" height="1040"&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%2Fl35c01dtbq9om3m6y6j8.jpeg" 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%2Fl35c01dtbq9om3m6y6j8.jpeg" alt="Image description" width="781" height="1040"&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%2Fshf2xgu6kyp5sb89ebpt.jpeg" 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%2Fshf2xgu6kyp5sb89ebpt.jpeg" alt="Image description" width="781" height="1040"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>git</category>
      <category>bash</category>
      <category>cli</category>
    </item>
    <item>
      <title>Basic Looping Statements using while loop,for loop</title>
      <dc:creator>Dinesh Nagarajan</dc:creator>
      <pubDate>Sat, 28 Jun 2025 13:11:40 +0000</pubDate>
      <link>https://dev.to/dinesh_nagarajan_7f102d3e/basic-looping-statements-using-while-loopfor-loop-4d57</link>
      <guid>https://dev.to/dinesh_nagarajan_7f102d3e/basic-looping-statements-using-while-loopfor-loop-4d57</guid>
      <description>&lt;p&gt;&lt;strong&gt;while loop Example:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;class whileLoop {&lt;br&gt;
    public static void main(String args[])&lt;br&gt;
    {&lt;br&gt;
        int i = 1;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    // test expression
    while (i &amp;lt; 6) {
        System.out.println("Hello World");

        // update expression
        i++;
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

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

&lt;p&gt;&lt;strong&gt;for loop Example:&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;package Demo;&lt;/p&gt;

&lt;p&gt;public class Practice {&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[]) {
        int s = 0;

        // for loop begins
        // and runs till x &amp;lt;= 20
        for (int x = 1; x &amp;lt;= 20; x++) {
            s = s + x;
        }
        System.out.println("Sum: " + s);
    }
}
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&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%2Fsnbciwfpqdar1m9l0xy2.jpeg" 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%2Fsnbciwfpqdar1m9l0xy2.jpeg" alt="Image description" width="800" height="1065"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>coding</category>
      <category>howto</category>
      <category>basics</category>
    </item>
    <item>
      <title>Java program using if, else if, else and switch case</title>
      <dc:creator>Dinesh Nagarajan</dc:creator>
      <pubDate>Fri, 27 Jun 2025 13:21:30 +0000</pubDate>
      <link>https://dev.to/dinesh_nagarajan_7f102d3e/java-program-using-if-else-if-else-and-switch-case-48b0</link>
      <guid>https://dev.to/dinesh_nagarajan_7f102d3e/java-program-using-if-else-if-else-and-switch-case-48b0</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%2Fovupu7xdqe4olw316oov.jpeg" 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%2Fovupu7xdqe4olw316oov.jpeg" alt="Image description" width="800" height="966"&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%2Fef5wq07c5s5rtfjss562.jpeg" 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%2Fef5wq07c5s5rtfjss562.jpeg" alt="Image description" width="800" height="1065"&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%2Fmapvbvijo6qrcx3l394a.jpeg" 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%2Fmapvbvijo6qrcx3l394a.jpeg" alt="Image description" width="800" height="989"&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%2Fog0ts5wlswawflbktsqn.jpeg" 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%2Fog0ts5wlswawflbktsqn.jpeg" alt="Image description" width="800" height="937"&gt;&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>howto</category>
      <category>coding</category>
      <category>basics</category>
    </item>
  </channel>
</rss>
