Are you taking CLEP classes? Try clep.ai
| preferred AP College board partner for AP classes
AP Computer Science A/Unit 4: Iteration
Start Practice TestPractice Test
About Exam
medium Solved by 2 students

Java Nested Conditional Logic

< Prev
Next >

Consider the following code segment. Which of the following strings could NOT be printed when the code is executed?

int num = /* some integer value */;
if (num > 0) {
    if (num % 2 == 0) {
        System.out.print("Even");
        if (num > 10) {
            System.out.print(" Large");
        }
    } else {
        System.out.print("Odd");
        if (num < 10) {
            System.out.print(" Small");
        }
    }
} else {
    System.out.print("Zero or Negative");
}
A

Zero or Negative

B

Even Small

C

Even Large

D

Odd Small

Hint
Did You Know?
Explain Why
Explain All Answers
Check Answer
Show Correct Answer
Report Question
Mark for review

Question Leaderboard

Not enough data yet to show leaderboard.

No comments yet. Be the first to comment!

AI Tutor

How can I help?

APFIVE © 2020.
Email: apfive@apfive.org|Privacy Policy|