CMIS 141 7984 Introductory Programming (2158)
Question 1 (1 point)

According to the Google style guide, Java variable and class names should be named using UpperCamelCase.
Question 2 (1 point)

Analyze the following code:
public class Test {
public static void main (String args[]) {
int i = 0;
for (i = 0; i < 10; i++);
System.out.println(i + 4);
}
}
Question 3 (1 point)![]() What is the output of the following Java code? ____________________
|

