1.2 Why programming? Why Java?
-
Incorrect
Correct
No Answer was selected
Invalid Answer
Vocabulary
Term | Definition |
---|---|
String | String is a Java type that represents a string of characters (text) |
String Literals | A sequence of characters enclosed in double quotations “ “. |
Java Main Skeleton | Includes the class and main method arguments. Must include both in order to run successfully. |
public static void main(String args[]) | Main method. Code to be run must be placed within the main method. |
public class MyProgram | Class. The name of MyProgram must match the name of the file. |
System.out.print | Displays output on the computer monitor. |
System.out.println | Displays output on the computer monitor and moves cursor to next line. |