Question 29 / 90:  Given the following code segment, what is printed to standard out?
boolean value = true;

System.out.print( true || (value=false) );

System.out.println(", " + value);

A  true, true
B  true, false
C  false, true
D  false, false
<< First < Previous Next > Last >>
Explanation:

A. Since conditional OR (||) is a short-circuit operator, as soon as the left operand evaluates to true, the right operand is not evaluated.

Therefore, true, true is printed to standard out.

B, C, and D are incorrect because true, true is printed to standard out.

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

My OCA Mock

Author:

Access: Public Instant Grading

Ask
Caitlyn Gobble
Start Exam
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>