Q: The return statement is always used in the ________ block.
A: method
Q: Java is a case-sensitive language.
A: True
Q: Java supports single-line and multi-line comments, very similar to C and C++.
A: True
Q: _______________ are those that are passed from the command prompt to the main (String [] args) method.
A: Command line arguments
Q: Which of these are access modifiers in Java?
A: All of the mentioned options
Q: Which one of the following causes memory leaks?
A: Not using Finally block often
Q: Which keywords are used as modifiers in Java?
A: strictfp
Q: Which of these cannot be used for a variable name in Java?
A: Keyword
Q: Select Odd one out from these about local variables
A: We can't create reference variables of Local variables
Q: On which platforms Java runs?
A: All of these
Q: Which one of the following is not a Java feature?
A: Use of pointers
Q: What is the correct sequence of execution for any Java program?
A: Editing -> Compilation -> Class Loader -> Bytecode Verifier -> Execution
Q: Java has five phases: editing, compilation, loading, verification, and execution. Which of the following units is responsible for execution?
A: Java Virtual Machine
Q: What are the following buzzwords in Java?
A: All of the above
Q: The new keyword that is added in JDK 1.2 is __________.
A: strictfp.