ACTUAL Exam Questions and CORRECT
Answers
Difference between byte and source code? - CORRECT ANSWER - source code is .java
byte code is .class
what will a java statement end with? - CORRECT ANSWER -;
What is the extension of a java source file? - CORRECT ANSWER - .java
What is a program? - CORRECT ANSWER - A sequence of instructions, which enables a
computer to perform a desired task.
What is an algorithm? - CORRECT ANSWER - A set of well-defined logical steps that
must be taken to perform a task.
What is the functionality of a Java Virtual Machine? - CORRECT ANSWER - It compiles
What is the difference between character and string literals? - CORRECT ANSWER -A
character only stores a single index while a string stores multiple characters.
What is the scope of a variable? - CORRECT ANSWER - From its definition to the end of
the block
What is the scope of a method parameter? - CORRECT ANSWER - From definition to the
end of the method
What is the scope of a field? - CORRECT ANSWER - The whole class