Question 31 / 90:  Given the following code segment, what would be the output?
int a = 0;

int b = 0;

int c = 0;

System.out.println(a++ + " " + --b + " " + c++ + " " + a + " " + b);

A  1 0 1 0 0
B  0 0 0 0 0
C  1 0 1 1 -1
D  0 -1 0 1 -1
<< First < Previous Next > Last >>
Explanation:

D. D is correct relative to the expected behavior of the decrement and increment operators.

A, B, and C are incorrect.

Exam Home Page
https://www.jobilize.com/quiz-my-oca-mock-exam-by-mike-wolf

My OCA Mock

Author:

Access: Public Instant Grading

Ask
David Bourgeois
Start Quiz
Candice Butts
Start Quiz
Copy and paste the following HTML code into your website or blog.
<iframe src="https://www.jobilize.com/embed/quiz-my-oca-mock-exam-by-mike-wolf" width="600" height="600" frameborder="0" marginwidth="0" marginheight="0" scrolling="yes" style="border:1px solid #CCC; border-width:1px 1px 0; margin-bottom:5px" allowfullscreen webkitallowfullscreen mozallowfullscreen> </iframe>