1 00:00:00,150 --> 00:00:03,390 ‫Making decisions is very important in real life. 2 00:00:03,390 --> 00:00:05,670 ‫And it's the same with programming there. 3 00:00:05,670 --> 00:00:09,780 ‫You need to write programs sometimes that have to make decisions as well. 4 00:00:09,780 --> 00:00:15,560 ‫But the thing is, you decide which are the decisions that they are going to make and what are the end 5 00:00:15,570 --> 00:00:16,290 ‫results of that. 6 00:00:16,290 --> 00:00:19,860 ‫And we're going to see how to use if statements in order to do that. 7 00:00:19,860 --> 00:00:26,550 ‫So you can write a program after this chapter which will execute code based on conditions. 8 00:00:26,550 --> 00:00:32,820 ‫So we're going to look into if statements, switch statements, then we're also going to see what else 9 00:00:32,820 --> 00:00:38,790 ‫and else if means and how we can catch the different conditions that there are and run code depending 10 00:00:38,790 --> 00:00:39,420 ‫on them. 11 00:00:39,420 --> 00:00:42,450 ‫And then you're going to have another exercise. 12 00:00:42,450 --> 00:00:48,390 ‫You're going to see what nested if statements are, how to use advanced if statements, and of course 13 00:00:48,390 --> 00:00:49,290 ‫there will be exercises. 14 00:00:49,290 --> 00:00:52,110 ‫So I'd say let's dive right into it. 15 00:00:52,110 --> 00:00:53,460 ‫I hope you're right. 16 00:00:53,460 --> 00:00:54,750 ‫Enjoy this chapter.