<?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: Hrithik Gorane</title>
    <description>The latest articles on DEV Community by Hrithik Gorane (@hrithik_gorane_).</description>
    <link>https://dev.to/hrithik_gorane_</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%2F2147539%2F78e0fbf3-ecc0-48a7-9872-a28ea57ca5c1.jpg</url>
      <title>DEV Community: Hrithik Gorane</title>
      <link>https://dev.to/hrithik_gorane_</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/hrithik_gorane_"/>
    <language>en</language>
    <item>
      <title>...Loop...</title>
      <dc:creator>Hrithik Gorane</dc:creator>
      <pubDate>Sun, 06 Oct 2024 03:16:10 +0000</pubDate>
      <link>https://dev.to/hrithik_gorane_/loop-2e41</link>
      <guid>https://dev.to/hrithik_gorane_/loop-2e41</guid>
      <description>&lt;p&gt;hello there! I hope you well and good, God bless you and you got everything that you once wish it. when we listen loop we suddenly relate with ourselves because our life is also an loop where in these loop we wake up, fresh, take breakfast, go for work, take lunch, come home, take dinner, sleep do these everyday that we called  loop of life. &lt;/p&gt;

&lt;p&gt;in computation term loop is running n of iteration and done the work. there are 3 ways to we can run an loops:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;for&lt;/li&gt;
&lt;li&gt;while&lt;/li&gt;
&lt;li&gt;do while&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;⁕ for loop's syntax,&lt;/p&gt;

&lt;p&gt;for(iteration; condition; increment){&lt;/p&gt;

&lt;p&gt;statement :&lt;/p&gt;

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

&lt;p&gt;ex,&lt;br&gt;
&lt;code&gt;&lt;br&gt;
&lt;/code&gt;for(int i=0; i&amp;lt;5; i++){&lt;/p&gt;

&lt;p&gt;print("hello world");&lt;/p&gt;

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

&lt;p&gt;⁕ while loop's syntax,&lt;/p&gt;

&lt;p&gt;while(condition){&lt;/p&gt;

&lt;p&gt;statement :&lt;/p&gt;

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

&lt;p&gt;ex,&lt;/p&gt;

&lt;p&gt;int i=0;&lt;/p&gt;

&lt;p&gt;while(i&amp;lt;5){&lt;/p&gt;

&lt;p&gt;print("hello there! how are you?");&lt;/p&gt;

&lt;p&gt;i++;&lt;/p&gt;

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

&lt;p&gt;⁕ do while loop's syntax,&lt;/p&gt;

&lt;p&gt;do{&lt;/p&gt;

&lt;p&gt;statement :&lt;/p&gt;

&lt;p&gt;}while(condition);&lt;/p&gt;

&lt;p&gt;ex,&lt;/p&gt;

&lt;p&gt;int d;&lt;/p&gt;

&lt;p&gt;do{&lt;/p&gt;

&lt;p&gt;print("keep code, keep shine");&lt;/p&gt;

&lt;p&gt;d++;&lt;/p&gt;

&lt;p&gt;}while(d&amp;lt;5);&lt;/p&gt;

&lt;p&gt;here how we learned loops. stay connected, stay focus, stay active...&lt;/p&gt;

</description>
    </item>
    <item>
      <title>...conditional...</title>
      <dc:creator>Hrithik Gorane</dc:creator>
      <pubDate>Sun, 06 Oct 2024 03:12:58 +0000</pubDate>
      <link>https://dev.to/hrithik_gorane_/conditional-dao</link>
      <guid>https://dev.to/hrithik_gorane_/conditional-dao</guid>
      <description>&lt;p&gt;whenever we heard/thought about conditional we can relate easily because it's part of our life. how, suppose you have two car one car fuel is petrol and second car fuel is diesel. now you're first car fuel is empty then you will drive second car correct because here first's car fuel is empty therefore you chosen second car.&lt;/p&gt;

&lt;p&gt;if you're first car has fuel then you can not choose second you go with you're first car right. similarly in computer we used these kind of conditions with deal and handle the case and solve the problem easily.in computer these case we used if else term. if term we put condition and else part we simply showcase if condition not satisfied. here below if else condition syntax,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;if(condition){

statement :

}else{

statement :

}

ex, if(mark &amp;gt; 33){

    statement : pass

    }else{

    statement : fail

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

&lt;/div&gt;



&lt;p&gt;above example we can easily understand that if student get marks above 33 then he pass or student is fail.&lt;/p&gt;

&lt;p&gt;if you have multiple condition then you can use else if condition where it known as ladder condition.&lt;/p&gt;

&lt;p&gt;here below syntax,&lt;br&gt;
&lt;/p&gt;

&lt;div class="highlight js-code-highlight"&gt;
&lt;pre class="highlight plaintext"&gt;&lt;code&gt;if(condition){

statement :

}else if(condition){

statement :

}else{

statement :

}

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

&lt;/div&gt;



&lt;p&gt;here how we know about conditional. keep practice, remember we are in community where you can ask it and you get answer that ask for it.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Introduction to Programming Language...</title>
      <dc:creator>Hrithik Gorane</dc:creator>
      <pubDate>Sun, 06 Oct 2024 03:11:33 +0000</pubDate>
      <link>https://dev.to/hrithik_gorane_/introduction-to-programming-language-3p7i</link>
      <guid>https://dev.to/hrithik_gorane_/introduction-to-programming-language-3p7i</guid>
      <description>&lt;p&gt;Hello There! I hope you well and good, God bless you! we here to dive into programming language correct, let's first understand what is program. basically in technical term program is set of instruction which execute on computer and give desire result. these is called programming. these old fancy normal definition we know and everyone  is repeat these fancy normal define to program. do you know that we also could change these term if we want.&lt;/p&gt;

&lt;p&gt;we can replace it like, we got electric machine which work is take thought and give result according user's thought. these definition simple and easier to understand anybody. now we clear doubt here about programming&lt;br&gt;
let's go to Language...&lt;/p&gt;

&lt;p&gt;Language is that help computer to understand what is user want. real world communication language are different and difficult to learn because it's take a lot time &amp;amp; practice but in computer it has only two word that we can easier to learn and implement faster as compare real world language. do you wanna know that two word is what ?&lt;br&gt;
these two word called binary number. binary numbers are : 0 , 1&lt;/p&gt;

&lt;p&gt;yes these two word using computer communicate with user's thought. and fun part is that anybody when see it easier to catch what it's mean to say. let understand binary number 0 means No , 1 means yes.&lt;/p&gt;

&lt;p&gt;ex, fan's switch is 0 means switch is off&lt;br&gt;
    fan's switch is 1 means switch is on and we getting cool air on our room.&lt;/p&gt;

&lt;p&gt;here simply we know about language. but you have one question that how can we understand 0's and 1's okay, the answer is that you don't, you just need translator. as basically we used google translator to understand word that we don't understand, similarly computer used compiler or interpreter. these two similar works like google translator to what user want. &lt;/p&gt;

&lt;p&gt;here what we do we choose on language : c++, java one of them, we communicate with computer and work it. we need to learn these language after that we can start communicate with computer. here simply acknowledgment about programming language. &lt;/p&gt;

&lt;p&gt;what we learn programming language : we will learn syntax, loops, conditional, operators, function, string, array, oop etc. stay focus &amp;amp; healthier towards to mentally, physically. remember these is not end it's just beginning towards to one step for DSA.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How to Learn DSA</title>
      <dc:creator>Hrithik Gorane</dc:creator>
      <pubDate>Sun, 06 Oct 2024 03:07:51 +0000</pubDate>
      <link>https://dev.to/hrithik_gorane_/how-to-learn-dsa-2fp9</link>
      <guid>https://dev.to/hrithik_gorane_/how-to-learn-dsa-2fp9</guid>
      <description>&lt;p&gt;Hello there! I hope you well and good, I'm sure that you come here to know how to start DSA and learn, implement, practice right! .&lt;/p&gt;

&lt;p&gt;So, whenever we start something new we always competing to others that's where we loss battles on beginning phase. Now we all learning, we get started to train ourselves.&lt;/p&gt;

&lt;p&gt;why so hurry ? We started learn everything late but got backbone, remember starting something new concept it's takes time. That's why I'm pointing you learn, implement, practice. &lt;/p&gt;

&lt;p&gt;Now you all questions I know all these tell me how to do it, correct! okay, we starting our journey towards DSA with fundamental(programing language any like:- c++, java). once we all learn programming language if doesn't yet then it's great time to be constituent and stay focus. let's talk about whom did in past but give up on middle ground and now again comeback here to learn that's person a little bit arrogant because he act like i know these syntax , tackiness, problem, how to solve these scenario. these arrogant person no longer curiosity because that person tired of repeat programming language learn. &lt;/p&gt;

&lt;p&gt;let's talk about whom is doesn't know anything that person has curiosity. these person everyday repeat same thing with different aspects because that person know it's helps a lot in future. These person also tired but not loss curiosity same code of line repeated everyday because he/she train themselves that it's worth for better understanding &amp;amp; implementation on critical scenario.&lt;/p&gt;

&lt;p&gt;let's move to learn, implement, practice...&lt;/p&gt;

&lt;p&gt;we here to learn DSA (Data Structure Algorithm). ourselves like little child how ? we have energy but we use on different place and we fill it again next day for that different place. our inner child always try to catch fun, free mind, sleep. why not we used these inner child towards to Explore learning journey where we fill every new day energy with exciting charged to train ourselves. we are data(our mind) just we need a proper structure(habits/routine/lifestyle) and implement efficient algorithm(constancy/determine) into result we have infinity outcomes towards to future. these thing we practice(repeat) everyday into real life. because nowadays data is everywhere except to human.&lt;/p&gt;

&lt;p&gt;as above statement you understand how we learning, implement, practice! correct, we not here to discuss syllabus or topic or concepts. we here to implement all these topic or concepts into real world i hope you all connect me here and help me out towards to DSA.&lt;/p&gt;

</description>
    </item>
    <item>
      <title>Start Learning DSA...</title>
      <dc:creator>Hrithik Gorane</dc:creator>
      <pubDate>Mon, 30 Sep 2024 15:29:17 +0000</pubDate>
      <link>https://dev.to/hrithik_gorane_/start-learning-dsa-4860</link>
      <guid>https://dev.to/hrithik_gorane_/start-learning-dsa-4860</guid>
      <description>&lt;p&gt;Hello, Everyone!&lt;/p&gt;

&lt;p&gt;I’m excited to announce that I’ll dive into Data Structures and Algorithms (DSA) over the next 6 months! 🚀&lt;/p&gt;

&lt;p&gt;I’ll post weekly updates on my progress, insights, and challenges here. If you're also on a DSA learning journey or want to collaborate, let’s connect and learn together! 🙌&lt;/p&gt;

&lt;p&gt;Follow me for regular updates and let's grow as a community!&lt;/p&gt;

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