1 00:00:00,600 --> 00:00:05,400 In this section, you're going to build an interactive application, you're going to build a survey 2 00:00:05,430 --> 00:00:08,189 that's going to ask the user questions and allow them to answer. 3 00:00:09,420 --> 00:00:13,470 Questions like how much money do you spend on coffee, fast food, etc.? 4 00:00:15,410 --> 00:00:20,720 And once the user answers every question, the application response, this is what makes the application 5 00:00:20,720 --> 00:00:26,120 fully interactive, the user is communicating with the application and the application is communicating 6 00:00:26,120 --> 00:00:26,660 back. 7 00:00:28,340 --> 00:00:33,560 All right, let's talk about the road map here is you you just learn how to compile and run code in 8 00:00:33,560 --> 00:00:33,990 Java. 9 00:00:35,120 --> 00:00:39,710 First, you learn about variables and how they can store values and how you can update them. 10 00:00:40,580 --> 00:00:42,560 You will learn to store text values. 11 00:00:44,220 --> 00:00:51,450 Single characters, integers and decimals, after all that, I'm confident you will develop the skills 12 00:00:51,450 --> 00:00:53,160 needed to build the survey up. 13 00:00:54,540 --> 00:00:56,130 All right, here's a sneak peek. 14 00:00:56,160 --> 00:01:02,910 You're going to use into variables to store integers, long variables to store big integers, string 15 00:01:02,910 --> 00:01:10,290 variables to store text, car variables to store single characters and double variables to store decimals. 16 00:01:11,100 --> 00:01:12,080 I hope you're excited. 17 00:01:12,090 --> 00:01:13,110 Let's start coding.