class GRC10 {
public static void main (String[] s) {
System.out.print(s[1] + s[2] + s[3]);
}}
java GRC10 A B C D E F
What is the result of attempting to compile and run the program using the specified command line?
| a. | Prints: ABC |
| b. | Prints: BCD |
| c. | Prints: CDE |
| d. | Prints: A B C |
| e. | Prints: B C D |
| f. | Prints: C D E |
| g. | Compile-time error |
| h. | Run-time error |
| i. | None of the above |
class GRC4 {public static void main(String[] args) {}} // 1
class GRC5 {public static void main(String []args) {}} // 2
class GRC6 {public static void main(String args[]) {}} // 3
What is the result of attempting to compile and run the above programs?
| a. | Compile-time error at line 1. |
| b. | Compile-time error at line 2. |
| c. | Compile-time error at line 3. |
| d. | An attempt to run GRC4 from the command line fails. |
| e. | An attempt to run GRC5 from the command line fails. |
| f. | An attempt to run GRC6 from the command line fails. |
| g. | None of the above |
class GRC7 {public void main(String[] args) {}} // 1
class GRC8 {public void main(String []args) {}} // 2
class GRC9 {public void main(String args[]) {}} // 3
What is the result of attempting to compile and run the above programs?
| a. | Compile-time error at line 1. |
| b. | Compile-time error at line 2. |
| c. | Compile-time error at line 3. |
| d. | An attempt to run GRC7 from the command line results in an error at run-time. |
| e. | An attempt to run GRC8 from the command line results in an error at run-time. |
| f. | An attempt to run GRC9 from the command line results in an error at run-time. |
class GRC1 {public static void main(String[] args) {}} // 1
class GRC2 {protected static void main(String[] args) {}} // 2
class GRC3 {private static void main(String[] args) {}} // 3
What is the result of attempting to compile each of the three class declarations and invoke each main method from the command line?
| a. | Compile-time error at line 1. |
| b. | Compile-time error at line 2. |
| c. | Compile-time error at line 3. |
| d. | An attempt to run GRC1 from the command line fails. |
| e. | An attempt to run GRC2 from the command line fails. |
| f. | An attempt to run GRC3 from the command line fails. |