T or F You should begin testing only after most of the code is written.
T or F When compiling a Java program, the command to use is compile.
T or F An object that represents an average of integers should have a data type of int.
T or F The bubble sort swaps elements as it goes through the list.
T or F An if statement is an example of a loop.
T or F A for loop will always execute the code inside the loop at least one time.
T or F The expression i++ increments the variable i by adding 1 to its value.
T or F If your code works, it doesn't matter what it looks like.
Fill in the blanks (each question is either completely right or wrong, no partial credit):
In order to run a Java __________________________ you must also have an HTML file.
Convert the binay number 110100101010100111001111 to hex:
What kind of Java program can run over the Internet? _______________________________.
Write the command to compile an application called Test1:
Write the command to compile an Applet called Test1:
Constructors are called with ________________ while instance methods are called with ______________________.
The return-type of a method that has nothing to return should be ___________________.
Write the command to run an application called Test1:
If you need a loop that counts, you should use a _______________, and if you have a loop that ends when a particular condition changes, you
should use a _____________.
When reading a signature, what specific aspect indicates that it is a constructor?