LEARN TO CODE(Beginners)
SELECT *
FROM WORLD
WHERE “SOMEONE”
LIKE ’%YOU’
….Can you all guess what is the result of above few lines??,,or simply what does it mean? Explorers in computer science background may have slight guess going on in your mind. The result of above query is “no results”. I admire the sayings of Maria Klawe which is “Coding is today’s language of creativity, All our children deserve a chance to become creators instead of consumers of computer science. Thats the reason I started the article with few lines of code, so learn to code easily and quickly with right the right learning strategy.
WHAT IS CODING?
- Coding is all about writing a computer program to solve a specific program.
- Computer code is used to program the websites, apps, and other technologies we interact with every day.
IS CODING HARD TO LEARN?
No, it is not hard to learn. Initially some people find it bit scary and tedious during the learning process. Efforts, and the patience, which you need to invest ,while programming is all that matters. If you have right learning strategy, then you can easily learn the computer programming without much difficulty.
Lets explore our strategies !!
- Clear the basic concepts of computer science and programming
- Consider both theory and practical equally
- Be professionally qualified programmer
- Learn the programming practices
- Start learning simple programming language
- Work on the project
And yes, this is our learning curve. Computer programming is just one part of over all fields of computer science. So, making the foundation part clear make you a professional programmer.
START WITH SIMPLE PROGRAMMING LANGUAGE:
· As a beginner, it is recommended to start with simple procedural language C.C language is simple, gives a fairly good exposure to language structure which includes concepts of variables, data types, functions, pointers, loops, syntax and so on.
Python is always recommended if you’re looking for an easy and even fun programming language to learn first. Rather than having to jump into strict syntax rules, Python reads like English and is simple to understand for someone who’s new to programming.
HOW TO
WRITE PROGRAM CODE:
There are
two options to start coding in a simple text editor or use a fully automated
programming tool such as Integrated Development Environment(IDE).IDE tool
package consists of compiler, debugger, automatic language syntax correction.
Most popularly used IDE includes
·
NetBeans
·
eClipse
·
IntelliJ
IDE makes
programmers to code easier as making a small mistake in the code reports error
and hence debugging the large program
errors is timeconsuming too.Ide may not be the best option as an absolute
beginner.
The other
option for beginners is using the simple text editor such as Notepad. In these editors,
initially you might commit mistakes in syntax mainly, but once you become
expertise in writing code you can start using IDE which becomes much easier for
coding and debugging.
The
theoretical knowledge is important to understand the language syntax. However
it is equally important to start working simultaneously on a project , logically proceeding step by step and
implement the knowledge you have gained.Lets end up with the success algorithm,
While(noSuccess)
{
tryagain();
if(dead)
break;
}
Hope you know the result of the above code, and yes coders start drawing the learning curve from today. Keep exploring… Thanks for reading !!..Hope you liked this blog, share your thoughts and stay engaged for more blogs.
Comments
Post a Comment