Java Programming Fundamentals
Test your knowledge of Java programming language fundamentals including type system, exceptions, garbage collection, and core APIs
Questions
Question 1 Multiple Choice (Single Answer)
What is Externalizable?
- Class
- Constructor
- Interface
- Method
Question 2 Multiple Choice (Single Answer)
What is the Immediate superclass of the Applet Class in AWT?
- Panel
- Frame
- Window
- AWT
Question 3 True/False
Exception can be Rethrown?
- True
- False
Question 4 True/False
The base class for Error and Exception is throwable
- True
- False
Question 5 Multiple Choice (Single Answer)
What is a JVM?
- Interpreter
- Compiler
- Byte code file
- Class file
Question 6 True/False
Can a double value be cast to a byte?
- True
- False
Question 7 True/False
Is “abc” a primitive value?
- True
- False
Question 8 Multiple Choice (Single Answer)
What ia the result when you add a double value to a String?
- double
- string
- int
- float
Question 9 Multiple Choice (Single Answer)
Are true and false keywords in java?
- Yes
- No
- Cant say
- Not Aplicable
Question 10 True/False
An object can be reachable again when it is garbage collected.
- True
- False