Question 1
A Java program is first compiled into processor-dependent byte codes, then the byte codes are interpreted at run time by the Java Virtual Machine
Next
Question 2
The slash (/) escape character turns special characters into string characters
Previous Next
Question 3
Each item in an array is called an element, and each element is accessed by its numerical index (starting at 1)
Previous Next
Question 4
Any class can only contain a limited number of non-static methods, and each method can be only be called a limited number of times
Previous Next
Question 5
The while statement continually executes a block of statements only while a counter is smaller than a pre-defined value
Previous Next
Question 6
Scanner scan = new Scanner(System.in); will create a Scanner object
Previous Next
Question 7
Every instance of the class shares the class variable, which is in one fixed location in memory
Previous Next
Question 9
The + operator can be used between strings to add them together to make a new string OR you can use the concat() method to concatenate two strings
Previous Next