The Java programming language defines the following kinds of variables:
There are a few rules and conventions related to the naming of variables.

An expression is a construct made up of variables, operators, and method invocations, which are constructed according to the syntax of the language, that evaluates to a single value. You’ve already seen examples of expressions, illustrated in bold below:
System.out.println(“Element 1 at index 0: “ + anArray[0]);
Statements are roughly equivalent to sentences in natural languages. A statement forms a complete unit of execution. The following types of expressions can be made into a statement by terminating the expression with a semicolon ( ; ).
A block is a group of zero or more statements between balanced braces {} and can be used anywhere a single statement is allowed.
The statements inside your source files are generally executed from top to bottom, in the order that they appear. Control flow statements, however, break up the flow of execution by employing decision making, looping, and branching, enabling your program to conditionally execute particular blocks of code. This section describes the decision-making statements (if-then, if-then-else, switch), the looping statements (for, while, do-while), and the branching statements (break, continue, return) supported by the Java programming language.
Conversion from the more conveniently human-writable code into computer-executable files is performed by assemblers, interpreters, or compilers.

What follows describes two ways to look up the System.out.println method.
A list of letters is near the top of the index as follwing figure

3- In the P section, do a search for println to find the println entries.Most web browsers enable you to search for something like println in the text of a page. Here’s how:
3.1 - Make sure the browser knows that you want to search in the big frame that takes up most of the page (and not in the smaller frames on the left side of the page). To do this, click your mouse inside the big frame. (Don’t click a link. Click on some neutral white area of the frame.)
3.2 - Open the browser’s Find dialog box. On most Windows browsers, pressing Ctrl+F coaxes the Find dialog box out of hiding. On a Mac, clicking Command+F does the trick.
3.3 - When you see the Find dialog box, type println in the text box and click the box’s Find or Find Next button
4- Pick one of the println entries.
The P section has a big boatload of println entries, as shown in follwing Figure, below. The entries differ from one another in two ways:

Each entry says println(int), println(String), or println(someOtherTypeName). The type name can differ from one entry to another.
Each entry says that println is a method in class java.someStuff.someMoreStuff. The class can differ from one entry to another.

