1.Lesson: Language Basics
Variables
You already know that fields are where objects store their state. You can also use the word “variable” in the programming language Java. This part talks about this connection, as well as how to name variables and basic data types like primitive types, character strings, and arrays, as well as default values and literals.
Operators
The operators in the programming language Java are talked about in this section. First, it shows the most-used operators. Then, it shows the less-used operators. There are pieces of code in each discussion that you can compile and run.
Expressions, Statements, and Blocks
Which compute values can be made with operators? Expressions are the building blocks of statements, which can be grouped together into blocks. This part talks about expressions, statements, and blocks using code examples you’ve already seen.
Control Flow Statements
This part talks about the control flow statements that the programming language Java can handle. It goes over the decision-making, looping, and branching statements that let your programs run certain blocks of code only when certain conditions are met.