✏️ Explanatory Question
a. // Discussed in previous question
b. System.out.print(args.length);
c. for (int i = 0; i < 1; i++) {
System.out.print(args[i]);
}
d. None of the above
b prints the length of the array, which is safe.
c may throw an exception if args[] has length 0, because accessing args[0] is out of bounds.
Correct answer: c