Default Section

Question Title

* 1. Which of the following is not a Java Primitive?

Question Title

* 2. Which feature of the Java environment removes unreferenced objects from memory?

Question Title

* 3. Objects are passed by?

Question Title

* 4. Which of the following commands outputs to the Console?

Question Title

* 5. Java Arrays start at index zero

Question Title

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

Question Title

* 7. Class scope objects are initialized to null

Question Title

* 8. Which of the following Class definitions will prevent sub-classing?

Question Title

* 9. Java coding conventions recommend Class names to start with a capital letter

Question Title

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

          int x = 21;
          int y = ++x;

T