A method is declared to take three arguments. A program calls this method and passes only two arguments. What is the results?
Correct Answer: B
Question 102
Given the code fragment: What is the result?
Correct Answer: B
Question 103
Given the code fragment: What is the result?
Correct Answer: B
Question 104
Which statement is true about Java byte code?
Correct Answer: D
Java bytecodes help make "write once, run anywhere" possible. You can compile your program into bytecodes on any platform that has a Java compiler. The bytecodes can then be run on any implementation of the Java VM. That means that as long as a computer has a Java VM, the same program written in the Java programming language can run on Windows 2000, a Solaris workstation, or on an iMac.