<?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: Akshay Varshney</title>
    <description>The latest articles on DEV Community by Akshay Varshney (@akshayvarshney6).</description>
    <link>https://dev.to/akshayvarshney6</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%2F485881%2Ff58624dd-4a61-4764-8529-32b0f1fa915f.jpg</url>
      <title>DEV Community: Akshay Varshney</title>
      <link>https://dev.to/akshayvarshney6</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/akshayvarshney6"/>
    <language>en</language>
    <item>
      <title>Few awesome tricks in Python</title>
      <dc:creator>Akshay Varshney</dc:creator>
      <pubDate>Sun, 17 Jan 2021 11:56:08 +0000</pubDate>
      <link>https://dev.to/akshayvarshney6/few-awesome-tricks-in-python-p8g</link>
      <guid>https://dev.to/akshayvarshney6/few-awesome-tricks-in-python-p8g</guid>
      <description>&lt;p&gt;Few awesome tricks with Python that will save both your time and extra Lines:&lt;/p&gt;

&lt;p&gt;A. Assigning Values according to the condition:&lt;/p&gt;

&lt;p&gt;Normal Code:👉&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--vGH2SDhh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/v4o8i5guh91f4l0o8zdy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--vGH2SDhh--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/v4o8i5guh91f4l0o8zdy.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;br&gt;
Better way:&lt;br&gt;
In spite of writing these lines of code what we can do is use in this way.👇&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--YiTvpDXT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/xvzke22ein1d8smrd3kc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--YiTvpDXT--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/xvzke22ein1d8smrd3kc.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;B. Using indexes and values of a list at the same time&lt;/p&gt;

&lt;p&gt;Normal Code:  👇&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--IfkDEWFo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vkbmqlz9iokifttqc8d2.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--IfkDEWFo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/vkbmqlz9iokifttqc8d2.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Better way:&lt;br&gt;
Using the enumerate function. Enumerate is a function that will return both the values and index that we are looping over the list.👇&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--PPvq0AY0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/ljoqzzbizxgolunhe9xq.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--PPvq0AY0--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/ljoqzzbizxgolunhe9xq.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;C. Unpacking&lt;br&gt;
Suppose there are a few variables in code and we have to use some of them then we can use the unpacking technique.&lt;br&gt;
Normal code: 👇&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--HEswTOH---/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/cmtg4d1yw8bohhadw9f5.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--HEswTOH---/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/cmtg4d1yw8bohhadw9f5.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Better way: &lt;br&gt;
If we are using only one variable then we can get rid of that by using _ &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--f7ZcVq96--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/usf0chnc3ro7nktgm55p.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--f7ZcVq96--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/usf0chnc3ro7nktgm55p.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;D. Reverse a list or string:&lt;br&gt;
In python, we can reverse a list or a string by just using one line of code.&lt;br&gt;
Better way : 👉&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--T-Dc1Ji1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/1x6e04pu19rb2tc1fzdx.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--T-Dc1Ji1--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/1x6e04pu19rb2tc1fzdx.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;E. Swap numbers without using temp variable:&lt;br&gt;
Normal code:👉&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--OD0y04r4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/mhi355qyi1kqacaf9wii.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--OD0y04r4--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/mhi355qyi1kqacaf9wii.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Better way: 👉&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--dY0Q-upm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/f7aaix834g8raecvi19v.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--dY0Q-upm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/f7aaix834g8raecvi19v.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;F. Looping over multiple lists at the same time&lt;/p&gt;

&lt;p&gt;Suppose there are multiple lists and we have to loop over all of them and use them in one statement or function, then in that case we can use the zip function like this: 👇&lt;br&gt;
&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--E4G-P4RK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/i7k5c51idiht6xaedicl.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--E4G-P4RK--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/i/i7k5c51idiht6xaedicl.png" alt="Alt Text"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;That's it for this one. Thanks for reading :)&lt;/p&gt;

</description>
    </item>
    <item>
      <title>How do I maintain consistency to focus for at least 1 hour in coding every single day?</title>
      <dc:creator>Akshay Varshney</dc:creator>
      <pubDate>Sun, 10 Jan 2021 11:00:08 +0000</pubDate>
      <link>https://dev.to/akshayvarshney6/how-do-i-maintain-consistency-to-focus-for-at-least-1-hour-in-coding-every-single-day-bc3</link>
      <guid>https://dev.to/akshayvarshney6/how-do-i-maintain-consistency-to-focus-for-at-least-1-hour-in-coding-every-single-day-bc3</guid>
      <description>&lt;p&gt;As a beginner in coding, we struggle a lot to build consistency, and due to which we lost our pace. In the start, things look favorable to us so we did it consistently but when things become slightly complex we start losing our way. I also struggled a lot to build consistency and it's ok if you also do. Coding is like a marathon of sprints. I think there are a few things that we need to understand while studying coding. &lt;/p&gt;

&lt;p&gt;I would recommend everyone to follow the 100dayofcode challenge. But the question here is How to focus for at least 1 hour/day continuously and that too for 100 days?&lt;/p&gt;

&lt;p&gt;If I plan to have a long coding session for around 3-4 hours continuously then after some time I will definitely get bored with my studies and I may start to play movies, start thinking about something else, or maybe start checking social media. It's like I study with my laptop open but my mind is somewhere and this was really the root cause of my problem. What is the threshold? what should be enough for me. So I have to identify this threshold limit. But how to identify this limit let's find out...&lt;/p&gt;

&lt;p&gt;Building 1-hour consistency at the very start is not an easy task. So what I used to do is I started with short sessions. Like I do coding for around 30 min then I take a short break of 5-10 mins then come back for another 30 min. In this way, at my initial stage, I completed 1 hour. After around 7-10 days when I start to feel comfortable, I kept increasing my timelimit by 5 mins until I reach my threshold. I have 2 sessions of 35 min followed by a 10 min break in between. In this way, I am tricking my brain to get comfortable with coding, brain now coding is your thing &amp;amp; you have to learn it so please cooperate. Follow this until you find your threshold limit.&lt;/p&gt;

&lt;p&gt;If you start directly with 1 hour then I know we will be able to focus for the first few days but after some days when things start getting out of our way, we start losing consistency. &lt;/p&gt;

&lt;p&gt;When I am sitting down to study I have some specific rules. &lt;/p&gt;

&lt;p&gt;What are my rules to study?&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;&lt;p&gt;I am working it means I am working period. Not allowed to do anything like I kept my mobile phone in another room. Turn off email, social media notifications from the laptop if possible.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Plan to start with a short 30 min session then start adding the time until you reach your threshold. My threshold was 1 hour 20 min.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If you have a break that means you have a break, no coding in your break. Like, suppose 30 min is over you should get up from your desk and do what you want to do in your break. It's like forcing myself to step away from the screen when the break starts. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Decide what time you will sit for study. Try to follow the same time for a few days and after some days it will become your habit. My time was 8:00 AM- 9:15 AM &amp;amp; (9PM-10PM)&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If you find to struggle a lot with the motivational side then start Listening to some podcasts when you get time. I don't know but listening to them will give me some energy and I feel energetic.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;If possible try to have some meditation or yoga before your study session.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Whenever you get the free time it doesn't mean that you have to think about coding all the 24*7. Try not to think about code each and every time your brain will break down. The brain is only a muscle so it also needs some time to relax. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;When I get bored with my regular studies then for a change I used to do some side projects as my hobby. Like I was learning DSA, whenever I feel too tired to do DSA and feel like not studying I move to my side project. This will give me a change and the next day you can pick what you were studying with much more energy.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Sharing progress with someone will give you motivation. Strongly recommend sharing your progress with friends or on Twitter/Linkedin. Don't think about what other senior developers will say. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;No longer distraction, Simple to understand but harder to implement. &lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;You should enjoy the process of coding.&lt;/p&gt;&lt;/li&gt;
&lt;li&gt;&lt;p&gt;Set goals for every single day. Make sure your goal should be realistic.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;By following this process after around 1.5 months I was focused to do coding for at least 1hr each day&lt;/p&gt;

&lt;p&gt;Some reasons for your struggle:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Don't go for a longer coding session in a day and skipping the next few days.&lt;/li&gt;
&lt;li&gt;Try not to think about code each and every time your brain will break down. &lt;/li&gt;
&lt;li&gt; Unclear boundaries between work and break. &lt;/li&gt;
&lt;li&gt;You enjoy coding but don't enjoy the process it could be a lack of boundaries.&lt;/li&gt;
&lt;li&gt;You have unclear goals or your goal are unrealistic. &lt;/li&gt;
&lt;li&gt;You are working with a lot of distractions.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;It's all about tricking your brain to learn discipline. Hope this will help you reach where you want to go. You can apply this to whatever you are learning if it works for me then it will work for you as well.&lt;/p&gt;

&lt;p&gt;Happy 100daysofcoding...&lt;/p&gt;

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

</description>
      <category>100daysofcode</category>
      <category>codenewbie</category>
      <category>programming</category>
    </item>
    <item>
      <title>What is the best way to start with Data Structures?</title>
      <dc:creator>Akshay Varshney</dc:creator>
      <pubDate>Sun, 03 Jan 2021 16:38:40 +0000</pubDate>
      <link>https://dev.to/akshayvarshney6/what-is-the-best-way-to-start-with-data-structures-2k7c</link>
      <guid>https://dev.to/akshayvarshney6/what-is-the-best-way-to-start-with-data-structures-2k7c</guid>
      <description>&lt;p&gt;Data Structure &amp;amp; Algorithms are considered to be one of the most complex topics to understand in computer science and I believe it is true. So how do I get started?&lt;/p&gt;

&lt;p&gt;It is important to understand the Data Structure well because most companies judge you by your understanding of the data structures and Algorithms.&lt;/p&gt;

&lt;p&gt;I am not an expert in DS but telling you the strategy which I followed. Coming from a non-cs background I struggled a lot to choose the right resources and what amount to learn and what topics to learn in DS. &lt;/p&gt;

&lt;p&gt;First, we need to clarify the basics very well. There are a lot of resources and most of them are very good so you cannot go with all of them pick anyone and focus on it. If you preferred to watch videos over any other preferred material of study then you can start with these tutorials: &lt;a href="https://www.youtube.com/watch?v=92S4zgXN17o&amp;amp;list=PL2_aWCzGMAwI3W_JlcBbtYTwiQSsOTa6P"&gt;https://www.youtube.com/watch?v=92S4zgXN17o&amp;amp;list=PL2_aWCzGMAwI3W_JlcBbtYTwiQSsOTa6P&lt;/a&gt;&lt;br&gt;
These are awesome and will help you clarify your basics.&lt;/p&gt;

&lt;p&gt;The next thing is practice, you have to practice daily. For that, I would highly recommend everyone to start the 100daysofCode challenge in which you will have to do coding daily for at least 1 hour. It will work for you but you have to do it consistently.&lt;/p&gt;

&lt;p&gt;After watching these tutorials the next step I took is to start doing questions by myself. GeeksforGeeks, Leetcode, Interviewbit, Hackerrank all are very good platforms to practice coding. I pick two platforms GeeksforGeeks (&lt;a href="https://practice.geeksforgeeks.org/explore/?page=1"&gt;https://practice.geeksforgeeks.org/explore/?page=1&lt;/a&gt;) and Interviewbit(&lt;a href="https://www.interviewbit.com/courses/programming/"&gt;https://www.interviewbit.com/courses/programming/&lt;/a&gt;). I start by doing 3-4 questions in 1 hour in which I cover 1-2 easy questions and 1-2 medium level questions and try to complete all 5 questions in 1 hour. After every 15 days when I feel comfortable &amp;amp; started to solve problems, I increase one question in my list. One more point I used to write the URL of the problem which I solve and with some details in the form of an excel file. &lt;/p&gt;

&lt;p&gt;What to do when you get stuck? What is the right way to approach a problem?&lt;/p&gt;

&lt;p&gt;Yeah, we'll get stuck and it is completely normal. Pick a question read the question then solve the question on paper by brute force approach first. Give yourself a time of around 10-15 min to think about the approach. If you solved it by brute force you got 5 points next is to find the solution in an optimal way. In the start, it is not easy to find the optimal solution by yourself and it is completely ok if you have to look for the solutions. Think this way if you feed some solutions in your mind then only you will come to know how to solve the problem. So it's ok if you have to look at the solutions in start to reach the optimal solution. But next time when you solve a similar kind of problem try to solve it without looking solution.&lt;/p&gt;

&lt;p&gt;If you weren't able to solve it by brute force as well in the early stage then you can start by looking at the hints/solution. Do not memorize the solution but instead try to understand how it is working. In the start, I struggled a lot I was not able to solve problems even with the brute force approach I used to read a lot of solutions. So in this way, I am feeding myself what is the way to solve the problem.&lt;/p&gt;

&lt;p&gt;After around a month try solving around 5-6 questions in an hour and follow the same approach pick 2-3 easy problems first then move to harder ones. &lt;/p&gt;

&lt;p&gt;I continued this process for around 6 months then I got comfortable with DS.&lt;/p&gt;

&lt;p&gt;Few Tips:&lt;/p&gt;

&lt;ol&gt;
&lt;li&gt;Do not try to memorize every solution.&lt;/li&gt;
&lt;li&gt;You have to be patient to see the results.&lt;/li&gt;
&lt;li&gt;Practice coding daily for at least 1 hour/day.&lt;/li&gt;
&lt;li&gt;Turn off mobile data while practicing or keep your phone in another room.&lt;/li&gt;
&lt;li&gt;If you feel stuck then don't quit but take a small break and invest some time in any other side project for a change.&lt;/li&gt;
&lt;li&gt;You can share your progress on Twitter/Linkedin it will help to keep motivated and do much more.&lt;/li&gt;
&lt;li&gt;Keep challenging yourself to do more or you can take help from your friend who can challenge you to do more.&lt;/li&gt;
&lt;li&gt;Keep track of your progress.&lt;/li&gt;
&lt;li&gt;Never hesitate to ask for help if you are getting any issues.&lt;/li&gt;
&lt;/ol&gt;

&lt;p&gt;Remember you should never quit. Just be patient and trust the process. Thanks for reading :)&lt;/p&gt;

</description>
      <category>codenewbie</category>
      <category>programming</category>
      <category>algorithms</category>
      <category>100daysofcode</category>
    </item>
    <item>
      <title>How did I get into Software Engineering?</title>
      <dc:creator>Akshay Varshney</dc:creator>
      <pubDate>Wed, 30 Dec 2020 17:24:21 +0000</pubDate>
      <link>https://dev.to/akshayvarshney6/how-do-i-get-into-software-engineering-1epm</link>
      <guid>https://dev.to/akshayvarshney6/how-do-i-get-into-software-engineering-1epm</guid>
      <description>&lt;p&gt;"Switching fields until you find your passion is difficult but not impossible..."&lt;/p&gt;

&lt;p&gt;After my engineering my parents wanted me to do a Government job so with the family's decision I decided to choose Electrical Engineering. &lt;/p&gt;

&lt;p&gt;In my first year, I was being taught about coding (C-Programming). I performed very poorly in that subject and at that time I did not understand the basics of coding rather than I was focused on writing complex programs without knowing the basics.  Somehow I managed to clear that subject and get promoted to the second year. After that, I  had made an image in my mind that coding is very difficult, and it's not my cup of tea. So I quitted coding and started studying for my curriculum, I gained a bit of interest but I was not getting a feeling of satisfaction from inside so I just keep studying for the sake of the marks or getting a government job. &lt;/p&gt;

&lt;p&gt;Then in my third year, I started my preparation for the "GATE" exam like everyone else. I used to study for the exam for more than 2-3 hours/day but still, I was not satisfied with what I was doing. In my 3rd year last semester, there was one subject "MATLAB Programming" this time when I heard this subject I decided to study this subject in depth. So I clarified my basics of programming and my interest automatically got emerged.&lt;/p&gt;

&lt;p&gt;After some time I started applying for an Internship then again the process of rejection started. Finally, after around 500 applications, I got selected for a research internship in India's most premier Engineering college IIT Madras. I continued coding in MATLAB programming language. &lt;/p&gt;

&lt;p&gt;Finally, when I entered the final lane of engineering I started learning Python. It is the time when companies came for campus recruitment. In my first interview, I performed so poorly that I got rejected in the first quiz round all my friends cleared that round. I gave the exam for TCS got rejected. A couple of more companies started to come got rejected from everywhere. In some companies other software companies I was not eligible to appear as I was not from a CS background. At this point, I decided to work more and more I started publishing a few research papers. At the same time, I was studying for interviews as well. With this much amount of load, I was working 6-7 hours daily after my college. By end of the year, I had no placement and I got rejected from more than 20-30 companies...&lt;/p&gt;

&lt;p&gt;I was seeing no hopes from on-campus placement so I started with an off-campus approach. Daily I used to apply for a lot of companies to get one single interview. I just keep going and practicing my coding daily for the interview. One day somehow I got one mail from Adobe regarding my interview. I got the chance to present myself but when I reached there then I looked there were a lot of other students who were from cs background and some of them knows coding better than me. But I know one thing that I have the ability to solve problems. I faced 5 interview rounds and after several days I got my mail...Congratulations you are on...&lt;/p&gt;

&lt;p&gt;"Never lose hope &amp;amp; keep trying until you reach your final destination..."&lt;/p&gt;

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

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