In this lecture, we explore the logical thinking ways and techniques which set up the foundation of your programing career. The logical thinking ways explored here is the very basic form of what will be required in a programming language.
In this lecture, we use the logical thinking ways (discussed in lecture 1) to create and draft a flowchart our of it. It's just meant to give an idea how flowcharts are created. More details on how to create precise and accurate flowcharts are given in the latter lectures.
Letters, number, and more: They are multiple ways Data is reporesented in our lives. In this lecture, we discuss the basic Data types required in programming.
In this lecture, we go through the basic mathematical and input output features used in Programming. (Input/Output and Assignment)
In this lecture, we use the knowledge of our previous lectures to create an entire custom algorithm in the form of flowchart. This will set the foundation of creating custom algoritms throughout this series.
We know that if two roads come, you can only go to one road at once. The basic knowledge and skill of desicion making in a program is vital in your programming career.
In this lecture, we understand how loops are used to repeat one part of the program multiple times as per the set condition. Suppose you need to print "Hello World!" 100 times, Loops allow you to fulful this requirement in 3-4 lines, rather than 100.
In this lecture, we understand and implement count based loops. They define the number how many times a specific section of the program has to be repeated.
In this lecture, we understand and implement condition based loops. They define a condition when till the condition is not met, the defined specific section of the program will repeat itself over and over. Two types of Condition based loops exist, and both are discussed in this lecture. (FOR...TO...WHILE AND REPEAT...ULTIL)
In this lecture, we revise all the concepts of this chapter before we proceed on to some practice before concluding on this chapter.
In this lecture, we solve an easy question for flowcharts in assisting us to solidify our foundations of programming and algorithmic designing
In this lecture, we solve another easy question for flowcharts in assisting us to solidify our foundations of programming and algorithmic designing
In this lecture, we solve a medium question for flowcharts in assisting us to solidify our foundations of programming and algorithmic designing
In this lecture, we solve another medium question for flowcharts in assisting us to solidify our foundations of programming and algorithmic designing
In this lecture, we solve a hard question for flowcharts in assisting us to solidify our foundations of programming and algorithmic designing
In this lecture, we conclude on what exactly we did here in this chapter, and we visualise what we will do next.