Default Section

Question Title

1. Which of the following is not a Java Primitive? (Required.)

Question Title

2. Which feature of the Java environment removes unreferenced objects from memory? (Required.)

Question Title

3. Objects are passed by? (Required.)

Question Title

4. Which of the following commands outputs to the Console? (Required.)

Question Title

5. Java Arrays start at index zero (Required.)

Question Title

6. Which of the following method signatures will allow the method to be invoked without a call to a Constructor? (Required.)

Question Title

7. Class scope objects are initialized to null (Required.)

Question Title

8. Which of the following Class definitions will prevent sub-classing? (Required.)

Question Title

9. Java coding conventions recommend Class names to start with a capital letter (Required.)

Question Title

10. What is result of the following lines of code?

          int x = 21;
          int y = ++x;
(Required.)

T