<?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>Forem: Suma Sree</title>
    <description>The latest articles on Forem by Suma Sree (@suma_sree_ed61102c575002f).</description>
    <link>https://forem.com/suma_sree_ed61102c575002f</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%2F3551654%2F67df65ac-e5e0-430a-8977-4f09661c3b5f.png</url>
      <title>Forem: Suma Sree</title>
      <link>https://forem.com/suma_sree_ed61102c575002f</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://forem.com/feed/suma_sree_ed61102c575002f"/>
    <language>en</language>
    <item>
      <title>Learn about Web,Website,WebApplication.</title>
      <dc:creator>Suma Sree</dc:creator>
      <pubDate>Wed, 15 Oct 2025 17:48:54 +0000</pubDate>
      <link>https://forem.com/suma_sree_ed61102c575002f/learn-about-webwebsitewebapplication-1c78</link>
      <guid>https://forem.com/suma_sree_ed61102c575002f/learn-about-webwebsitewebapplication-1c78</guid>
      <description>&lt;p&gt;&lt;strong&gt;Web:&lt;/strong&gt;Web is a portion of internet with restricted access.Tim Berners Lee introduced the concept of web.W3C(World Wide Web) maintain the standards of web.The latest version of web is web-3.&lt;br&gt;
&lt;strong&gt;Website:&lt;/strong&gt;Website is a virtual directory on web server.It provide access to the resources of server.Website comprises only static resources.&lt;br&gt;
&lt;strong&gt;WebApplication:&lt;/strong&gt;WebApplication comprises of both static and dynamic resources.&lt;/p&gt;

</description>
      <category>beginners</category>
      <category>learning</category>
      <category>web</category>
    </item>
    <item>
      <title>What is the use of Live Server?</title>
      <dc:creator>Suma Sree</dc:creator>
      <pubDate>Tue, 14 Oct 2025 16:56:52 +0000</pubDate>
      <link>https://forem.com/suma_sree_ed61102c575002f/what-is-the-use-of-live-server-1ed5</link>
      <guid>https://forem.com/suma_sree_ed61102c575002f/what-is-the-use-of-live-server-1ed5</guid>
      <description>&lt;ul&gt;
&lt;li&gt;&lt;p&gt;It is used to host your web application.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;It runs the web application locally.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You can test and deploy locally using live server.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
    <item>
      <title>What is Package Manager?</title>
      <dc:creator>Suma Sree</dc:creator>
      <pubDate>Tue, 14 Oct 2025 16:51:58 +0000</pubDate>
      <link>https://forem.com/suma_sree_ed61102c575002f/what-is-package-manager-5gke</link>
      <guid>https://forem.com/suma_sree_ed61102c575002f/what-is-package-manager-5gke</guid>
      <description>&lt;p&gt;Package Manager is a software tool used to install,update,uninstall any library required for software.&lt;br&gt;
There are various package Manager softwares.&lt;br&gt;
a)NPM(Node Package Manager)&lt;br&gt;
b)NuGet&lt;br&gt;
c)RubyGEMS&lt;br&gt;
d)Composer&lt;br&gt;
e)Bower etc.&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>programming</category>
      <category>javascript</category>
      <category>beginners</category>
    </item>
    <item>
      <title>Let Us Learn Identifiers In Java.</title>
      <dc:creator>Suma Sree</dc:creator>
      <pubDate>Tue, 14 Oct 2025 16:00:20 +0000</pubDate>
      <link>https://forem.com/suma_sree_ed61102c575002f/let-us-learn-identifiers-in-java-2bi5</link>
      <guid>https://forem.com/suma_sree_ed61102c575002f/let-us-learn-identifiers-in-java-2bi5</guid>
      <description>&lt;p&gt;A name of a programming element technically called as Identifier.&lt;br&gt;
It can be class name,variable name,method name.&lt;br&gt;
&lt;code&gt;class _Example_{&lt;br&gt;
     int _student_=10;&lt;br&gt;
     void _m1()_{&lt;br&gt;
     }&lt;br&gt;
}&lt;/code&gt;&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;Identifier is used for identifying programming element from other parts of the program or project.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;&lt;strong&gt;Note:&lt;/strong&gt;We can't create class or variable or Method without name which leads to compile time error:Identifier expected.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Rules in creating Identifier:&lt;br&gt;
We have 7 rules in creating an identifier&lt;br&gt;
 1.Identifiers can contain letters[A-Z,a-z],digits[0-9],special    characters only[$,&lt;em&gt;].&lt;br&gt;
 2.Identifiers can't start with digits but it can be used from second position onwards.&lt;br&gt;
 3.Identifiers can't contain special characters except $,&lt;/em&gt;.&lt;br&gt;
 4.Identifiers can't have space in the middle of characters.&lt;br&gt;
 5.In Java Identifiers are case sensitive(a!=A).&lt;br&gt;
 6.Reserve Words and Keywords can't be used as Identifiers.&lt;br&gt;
 7.From java 9 onwords single underscore'_' can not be used as Identifier because it is a keyword.&lt;br&gt;
&lt;strong&gt;Note:&lt;/strong&gt;We can use predefine class name,method name,variable name as user defined identifier and also there is no limit in the length of Identifier.&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

</description>
      <category>java</category>
      <category>programming</category>
      <category>beginners</category>
    </item>
  </channel>
</rss>
