WEBVTT 1 00:00:01.113 --> 00:00:05.006 Welcome to week two, Writing Java code. 2 00:00:08.005 --> 00:00:09.119 Last week you were introduced to the 3 00:00:09.220 --> 00:00:12.003 key concepts in object orientated programming 4 00:00:12.005 --> 00:00:14.227 including classes and objects. 5 00:00:15.229 --> 00:00:19.224 You saw that a class is created by writing Java source code. 6 00:00:20.226 --> 00:00:24.000 You will soon see how to create a complete Java class. 7 00:00:24.115 --> 00:00:26.117 But before that you need to learn a little bit 8 00:00:26.118 --> 00:00:28.117 about how to write Java code. 9 00:00:29.225 --> 00:00:32.005 This week you will learn about the basic elements of the 10 00:00:32.006 --> 00:00:35.228 Java language and the rules that you need to follow when using them. 11 00:00:39.224 --> 00:00:42.007 You will be introduced to Variables 12 00:00:42.223 --> 00:00:44.222 and Operators 13 00:00:45.009 --> 00:00:47.112 and how to combine these to create 14 00:00:47.223 --> 00:00:49.114 the Expressions 15 00:00:49.229 --> 00:00:51.008 and Statements, 16 00:00:51.112 --> 00:00:54.222 that are the basic building blocks required to create classes 17 00:00:55.222 --> 00:00:58.117 You will also learn how to write code to display output 18 00:00:58.118 --> 00:01:00.116 to the user of a program.