Edit Game
Introduction to Java Programming - Activity#2
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   10  Close
What is the expected output of the following code segment? int a=3; System.out.println(a++*3);
9
What is the expected output of the following expression? 36 % (6 + 2)
4
What is the expected output of the following expression? 3 + 4 * 20 / 3
29
What is the expected output of the following expression? 19 % (2 + 3)
4
What is the expected output of the following expression? 39 / 10
3
What is the expected output of the following expression? 22 / 5
4
What is the expected output of the following expression? 17 / 2
8
What is the expected output of the following expression? 12 / 4 + 16 / 2
11
What is the expected output of the following expression? 10 / 5 + 8
10
What is the expected output of the following expression? 4 + 6 * 2
16