Skip to main content

How to learn coding from scratch?





With the resources present on the Internet, it is very easy to get started with programming. If you have a laptop/desktop and a reliable Internet connection, you can start your coding journey right now. Follow this roadmap to begin without any confusion.๐Ÿ˜–๐Ÿ˜–๐Ÿ˜–๐Ÿ˜–๐Ÿ˜–


Object Oriented Programming Language( OOP )


 Start your coding journey with an OOP Language such as C++. Learn the nitty gritties of it and master the important libraries such as STL. For a detailed strategy to learn C++, check this article. It is equally important to solve different programming problems. This tests if you can actually convert an algorithm into working code. Hackerrank is a good source for covering the basics and solving challenging problems.


Mastering Data Structures and Algorithms


 You should develop the ability to tackle different programming questions by implementing the correct algorithm. This is also crucial for software developer roles, as every company tests the knowledge of algorithms and data structures. Competitive programming websites such as Codechef, Codeforces are some of the recommended sources to begin with.

Building Software

 Start developing your own applications. Simple projects such as web scrapers, document searchers are a good starting point. Learn Python which can be used for developing several web applications. You can also start learning android and web development. You can also build your own portfolio after this.

Specialized Skills

 Try to gain skills which can be leveraged massively. Start with Machine Learning from Andrew Ng’s Coursera course. Join Kaggle and participate in their contests so that you can understand the implementation of ML in the real world. Often the practical use of different ML algorithms is more essential than understanding the theory fully. You can also explore areas such as Cryptography, Network Security depending on your interests.

 



Comments

Popular posts from this blog

Let’s dig into the Comparison and Benefits of MEAN Stack Vs MERN Stack!

Gone are the times when web application development was done using JavaScript, HTML, and CSS. Now, the developers use a ‘stack’ of technologies to provide you with a seamless website or application. You don’t know what a stack is or their different types? Don’t worry! We got you! Apart from discussing MEAN stack vs MERN stack in this blog, we will be talking about the basics too! What is a stack? A “Stack” is a combination of programming languages, technologies or even software products. Development stacks are further divided into two categories – Technology stack & application stack. Our topic of discussion today, Mean vs Mern, falls under the category of technology stacks. Apart from these two, another popular technology stack is full-stack. Before we get down to Mean stack vs Mern stack comparison, let’s discuss in brief about Full-stack Vs Mean stack. What is MERN Stack? Just like Mean Stack, Mern Stack is a combination of technologies. Mern Sta...

Git vs. GitHub

Git vs. GitHub๐Ÿ˜• Version Control : Development projects don’t come into existence ex nihilo ; they’re built code line upon code line from the ground up. And often, there’s a lot of trial, error, and correction that goes into creating something that actually works the way it’s supposed to. That’s where version control comes in. Version control is like a savings program for your project. By tracking and logging the changes you make to your file or file sets over time, a version-control system gives you the power to review or even restore earlier versions. Version control takes snapshots of every revision to your project. You can then access these versions to compare or restore them as needed. For example, let’s say that you’re working on a web development project, and through the course of your revisions, you suddenly notice all of your text has become misaligned. And because the first rule of coding is that it’s always your fault, you can bet that some ...