| preferred AP College board partner for AP classes
AP Computer Science A/Unit 4: Iteration
Start Practice TestPractice Test
About Exam
easy Solved by 3 students
Decrementing For Loop
< Prev
Next >

What is printed when the following code segment is executed?

public class ReverseFor {
    public static void main(String[] args) {
        for (int i = 3; i >= 1; i--) {
            System.out.print(i);
        }
    }
}
A

321

B

3 2 1

C

123

D

Compilation Error

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

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: [email protected]|Privacy Policy