

MCQOPTIONS
This section includes 8 Mcqs, each offering curated multiple-choice questions to sharpen your Language Fundamentals Finding the output knowledge and support exam preparation. Choose a topic below to get started.
1. |
What will be the output of the program? and the command line invocation is > java X a b |
A. | names |
B. | null |
C. | Compilation fails |
D. | An exception is thrown at runtime |
Answer» C. Compilation fails | |
2. |
|
|
A. | 7 | |
B. | 9 | |
C. | 11 | |
D. | 13 | |
E. | Compilation fails | |
Answer» D. 13 | ||
3. |
What will be the output of the program? and the command-line invocation is > java CommandArgsTwo 1 2 3 |
A. | 0 1 2 |
B. | 1 2 3 |
C. | 0 0 0 |
D. | An exception is thrown at runtime |
Answer» E. | |
4. |
What will be the output of the program ?
|
A. | 10, 9, 8, 7, 6, |
B. | 9, 8, 7, 6, 5, |
C. | Compilation fails. |
D. | An exception is thrown at runtime. |
Answer» D. An exception is thrown at runtime. | |
5. |
What will be the output of the program?
|
A. | null |
B. | theDogs |
C. | Compilation fails |
D. | An exception is thrown at runtime |
Answer» E. | |
6. |
public class F0091 { public void main( String[] args ) { System.out.println( "Hello" + args[0] ); } } What will be the output of the program, if this code is executed with the command line: > java F0091 world |
A. | Hello |
B. | Hello Foo91 |
C. | Hello world |
D. | The code does not run. |
Answer» E. | |
7. |
What will be the output of the program? and the command-line invocation is > java CommandArgs 1 2 3 4 |
A. | args[2] = 2 |
B. | args[2] = 3 |
C. | args[2] = null |
D. | An exception is thrown at runtime. |
Answer» E. | |
8. |
What will be the output of the program? and the command-line invocation is > java CommandArgsThree 1 2 3 |
A. | 0 0 |
B. | B. |
C. | C. |
D. | D. |
Answer» E. | |