HOW DOES A PROGRAMMING LANGUAGE LOOKS AND HOW SIMPLE IT CAN BE WHEN WE DIVIDE IN TO ITS BUILDING BLOCKS , THE BUILDING BLOCKS ARE LIKE BUILDING MATERIAL FOR HOUSE , YOU HAVE BRICKS, CEMENT, SHINGLES , PAINT , GRAVEL AND SOME MORE . EACH HAS ITS OWN VALUE TOWARDS THE FORMATION OF HOUSE THEY LOOK SMALL WHEN THEY HAVE BEEN LOOKED INDIVIDUALLY BUT WHEN YOU COMBINE THEM THEY BUILD A BIG EXPENSIVE HOUSE SAME GOES WITH PROGRAMMING LANGUAGE
1> VARIABLES = yes if you thinking about x and y alphabets thats what i am talking about here x and y hold values and change as the per the situation they are dynamic and therefore used in various parts in programming language it can be any other alphabets
2> DATATYPES = different datatypes have different method to operate like alphabets (strings)have upper case and downcase method , integer add in different way compare to strings, there also floats which is integer and there is also boolean operator which gives you true or false
3> collectable = Array – this are like bags where you store multiple values , for example
an array of cars will give you different models of cars, and an array of fruits will give different kinds of fruit . An array has a sign of bracket x = []
4> loops = loop is way to tell to computer how much time you have to repeat a given instruction it can be repeat i need to take medicine till i get cured or keep asking the password to user until he enters the right password.
5> Conditions – this is IF and ELSE , what to do if condition is true and what not to do if condition is false. if apple is available buy it else buy oranges (if and else example )
This are some programming fundamentals concept to get you started in long journey of programming