View the exhibit.
Given the code fragment:
Which change enables the code to print the following?
James age: 20
Williams age: 32
Given the following class:
And given the following main method, located in another class:
Which three lines, when inserted independently at line n1, cause the program to print a 0 balance?
Given:
public class MainMethod { void main() {
System.out.println("one");
}
static void main(String args) {
System.out.println("two");
}
public static void main(String[] args) {
System.out.println("three");
}
void mina(Object[] args) {
System.out.println("four");
}
}
What is printed out when the program is excuted?