MultipleChoice
Given:
class Test
int a1;
public static void doProduct(int a) {
a = a * a;
)
public static void doString(StringBuilder s) {
s.append('' '' + s);
}
public static void main(String[] args) {
Test item = new Test();
item.a1 = 11;
StringBuilder sb = new StringBuilder(''Hello'');
Integer i = 10;
doProduct(i);
doString(sb);
doProduct(item.a1);
System.out.println(i + '' '' + sb + '' '' + item.a1);
}
}
What is the result?
OptionsMultipleChoice
Which two class definitions fail to compile?
OptionsMultipleChoice
The following grid shows the state of a 2D array:
This grid is created with the following code:
Which line of code, when inserted in place of //line n1, adds an X into the grid so that the grid contains three consecutive X's?
Options