<?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: Brain CodeDesign</title>
    <description>The latest articles on DEV Community by Brain CodeDesign (@learnwithbrain).</description>
    <link>https://dev.to/learnwithbrain</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%2F933875%2F1d5f54c8-c20c-4d70-a0e9-459971e7e851.jpg</url>
      <title>DEV Community: Brain CodeDesign</title>
      <link>https://dev.to/learnwithbrain</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/learnwithbrain"/>
    <language>en</language>
    <item>
      <title>🟣🟢Do you know what is https status code</title>
      <dc:creator>Brain CodeDesign</dc:creator>
      <pubDate>Thu, 06 Oct 2022 14:48:07 +0000</pubDate>
      <link>https://dev.to/learnwithbrain/do-you-know-what-is-https-status-code-3kn6</link>
      <guid>https://dev.to/learnwithbrain/do-you-know-what-is-https-status-code-3kn6</guid>
      <description>

&lt;p&gt;If you people encounter with such error message Like 404,301 while browsing on internet then you should definitely know about http status code &lt;/p&gt;

&lt;p&gt;This type of message called http status code there are numerous Http status code ranging from 100-500&lt;/p&gt;

&lt;p&gt;Let's jump in to this &lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;u&gt;Table of content&lt;/u&gt;
&lt;/h2&gt;

&lt;p&gt;✅Http status code &lt;/p&gt;

&lt;p&gt;✅Classification&lt;/p&gt;

&lt;p&gt;↘️Informational response (100–199)&lt;/p&gt;

&lt;p&gt;↘️Successful response (200–299)&lt;/p&gt;

&lt;p&gt;↘️Redirection message (300–399)&lt;/p&gt;

&lt;p&gt;↘️Client error response (400–499)&lt;/p&gt;

&lt;p&gt;↘️Server error response (500–599)&lt;/p&gt;

&lt;p&gt;when ever client send a request to the server every time server response this request in the from of http status code&lt;/p&gt;

&lt;p&gt;These are  codes the server can generate in response to HTTP requests &lt;/p&gt;

&lt;p&gt;HTTP status codes are three-digit codes, and are grouped into five different classes&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;u&gt;1️⃣1xx (Informational response)&lt;/u&gt;
&lt;/h2&gt;

&lt;p&gt;It means the request has been received and the process is continuing.&lt;/p&gt;

&lt;p&gt;The informational response is classify as:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅100&lt;/strong&gt; - Continue.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅101&lt;/strong&gt; - Switching protocols.&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;u&gt;2️⃣ 2xx (Success response )&lt;/u&gt;
&lt;/h2&gt;

&lt;p&gt;It means the action was successfully received,understood,accepted.&lt;/p&gt;

&lt;p&gt;The 2xx response is classify as:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅200&lt;/strong&gt;:The request is OK&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅201&lt;/strong&gt;:The request has been created&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅202&lt;/strong&gt;:The request has been accepted for processing, but the processing has not been completed&lt;br&gt;
&lt;strong&gt;✅204&lt;/strong&gt; : The server successfully processed the request, and is not returning any content&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;u&gt;3️⃣3xx (Redirection message)&lt;/u&gt;
&lt;/h2&gt;

&lt;p&gt;It means further action must be taken in order to complete the request.&lt;/p&gt;

&lt;p&gt;The 3xx is classify as:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅301&lt;/strong&gt;:The 301 status tells that the request has moved permanently to a new URL&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅302&lt;/strong&gt;:The 302 HTTP status tell that requested page exists at different URL&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;u&gt;4️⃣ 4xx (Client Error)&lt;/u&gt;
&lt;/h2&gt;

&lt;p&gt;It means the request contains incorrect syntax or incorrect url.&lt;/p&gt;

&lt;p&gt;The 4xx is classify as:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅402&lt;/strong&gt;:this response indicates that the user not made the required payment.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅404&lt;/strong&gt;:The content you are trying to looking for in a website is not present in server&lt;/p&gt;

&lt;h2&gt;
  
  
  &lt;u&gt;5️⃣5xx (Server Error)&lt;/u&gt;
&lt;/h2&gt;

&lt;p&gt;It means the server failed to fulfill thevalid request.&lt;/p&gt;

&lt;p&gt;The 5xx is classify as:&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅500&lt;/strong&gt;:The server is unable to fulfill the request due to an unexpected condition.&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;✅503&lt;/strong&gt;:The server cannot handle the request because it has run out of resources&lt;br&gt;
&lt;strong&gt;✅505&lt;/strong&gt; : The server doesn’t support the HTTP protocol version used in the request. Using an outdated web browser usually triggers this response code.&lt;/p&gt;

&lt;h2&gt;
  
  
  key takeaway
&lt;/h2&gt;

&lt;ul&gt;
&lt;li&gt;&lt;p&gt;These status codes serve as a means of communication between the server and the internet browser &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;HTTP status codes are generated by the server that's hosting the site when it responds to a request made by a client&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;That's wrap up &lt;/p&gt;

&lt;p&gt;Thanks for reading &lt;/p&gt;

&lt;p&gt;Do consider to &lt;/p&gt;

&lt;p&gt;like ♥️&lt;br&gt;
Comment 💬&lt;/p&gt;

&lt;p&gt;And follow me &lt;a class="mentioned-user" href="https://dev.to/learnwithbrain"&gt;@learnwithbrain&lt;/a&gt; &lt;br&gt;
For more &lt;/p&gt;

&lt;p&gt;Means Alot 💙&lt;/p&gt;

</description>
      <category>webdev</category>
      <category>browser</category>
    </item>
    <item>
      <title>Web browser and search engine #</title>
      <dc:creator>Brain CodeDesign</dc:creator>
      <pubDate>Thu, 29 Sep 2022 11:16:00 +0000</pubDate>
      <link>https://dev.to/learnwithbrain/web-browser-and-search-engine--50ag</link>
      <guid>https://dev.to/learnwithbrain/web-browser-and-search-engine--50ag</guid>
      <description>&lt;p&gt;In today's world internet is the basic need we use search engine and web browser for surfing on the internet to view content on the internet we use web browser and to access that content from the internet we use search engine many folks get confused between browser and search engine &lt;br&gt;
Although search engine and web browser work together but there are difference in between them&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Browser&lt;/strong&gt; &lt;br&gt;
✅Browser is the window to internet &lt;br&gt;
✅Web browser allow you to retrive, read the content  from the web page available on the web server and these web page found out with the help of search engine &lt;br&gt;
✅A web browser allow you to see the searched content&lt;br&gt;
Firefox , brave are example&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Search engine&lt;/strong&gt; &lt;br&gt;
✅A search engine is used to find the information in the World Wide Web&lt;br&gt;
✅We access search engine through browser &lt;br&gt;
✅Search engine require database &lt;br&gt;
✅Search engine allow you to find out particular content from the internet &lt;br&gt;
Goggle, Bing , duckduckgo are some examples of search engine &lt;/p&gt;

&lt;p&gt;&lt;strong&gt;In closing&lt;/strong&gt;:&lt;br&gt;
The content available on internet&lt;br&gt;
✅ Is display to the users with the help of browser,  In browser you enter the url&lt;br&gt;
 ✅ Find out with the help of search enginen , In search engine you enter the key words or phrase &lt;/p&gt;

&lt;p&gt;That's wrap up &lt;/p&gt;

&lt;p&gt;Thanks for reading &lt;/p&gt;

&lt;p&gt;Do consider to &lt;br&gt;
like ♥️&lt;br&gt;
Comment 💬&lt;/p&gt;

&lt;p&gt;And follow me  👉 &lt;a class="mentioned-user" href="https://dev.to/learnwithbrain"&gt;@learnwithbrain&lt;/a&gt; For more&lt;/p&gt;

&lt;p&gt;Means Alot 💙&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Operators in Java</title>
      <dc:creator>Brain CodeDesign</dc:creator>
      <pubDate>Wed, 28 Sep 2022 18:07:22 +0000</pubDate>
      <link>https://dev.to/learnwithbrain/operators-in-java-4j2i</link>
      <guid>https://dev.to/learnwithbrain/operators-in-java-4j2i</guid>
      <description>&lt;p&gt;Basic stands everywhere so in programming too operators are the fundamentals of any programming language so in this blog I'll write about the operators in Java&lt;br&gt;
 So what basically operators are?&lt;br&gt;
"Operators are used to perform operations on variables and values"&lt;/p&gt;

&lt;p&gt;&lt;strong&gt;Arthmetic operator&lt;/strong&gt; &lt;br&gt;
int num1 = 10;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    int num2 = 20;
    System.out.println("the value of num1 + num2 is");
    System.out.println(num1 + num2);
    System.out.println("the value of num1 - num2 is");
    System.out.println(num1 - num2);
    System.out.println("the value of num1 * num2 is");
    System.out.println(num1 * num2);
    System.out.println("the value of num1 / num2 is");
    System.out.println(num1 / num2);
    System.out.println("the value of num1 % num2 is");
    System.out.println(num1 % num2);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Assignment operator&lt;/strong&gt;&lt;br&gt;
int num1 = 10;&lt;br&gt;
int num2 = 20;&lt;br&gt;
num2 = num1;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    System.out.println("= Output: "+num2);

    num2 += num1;

    System.out.println("+= Output: "+num2);
    num2 -= num1;
    System.out.println("-= Output: "+num2);
    num2 *= num1;
    System.out.println("*= Output: "+num2);
    num2 /= num1;
    System.out.println("/= Output: "+num2);
    num2 %= num1;
    System.out.println("%= Output: "+num2);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Logical operator&lt;/strong&gt;&lt;br&gt;
Int a=9;&lt;br&gt;
Int b=11;&lt;br&gt;
int c=20;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    System.out.println(a&amp;lt;b&amp;amp;a&amp;lt;c);
    System.out.println(a&amp;gt;b||a&amp;lt;c)
    System.out.println(a&amp;gt;b|a&amp;lt;c);
    System.out.println(a&amp;gt;b||a++&amp;lt;c);
    System.out.println(a);
    System.out.println(a&amp;gt;b|a++&amp;lt;c);
    System.out.println(a);
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

&lt;p&gt;&lt;strong&gt;Comparison or rational&lt;/strong&gt; operator &lt;br&gt;
Int a=9;&lt;br&gt;
Int b=11;&lt;br&gt;
int c=20;&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;    System.out.println("a is "+  a + " and b is " + b);

    // == operator
    System.out.println(a == b);  // false

    // != operator
    System.out.println(a != b);  // true

    // &amp;gt; operator
    System.out.println(a &amp;gt; b);  // false

    // &amp;lt; operator
    System.out.println(a &amp;lt; b);  // true

    // &amp;gt;= operator
    System.out.println(a &amp;gt;= b);  // false

    // &amp;lt;= operator
    System.out.println(a &amp;lt;= b);  // true
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;

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