AP CSA 2.2 Exercise 1: True or False, Printed

Unit 2: Selection and Iteration · Lesson 2.2 · Exercise 1

True or False, Printed

Boolean Expressions. Write real Java, run it, and submit it to be graded against hidden test cases.

Why this one is worth doing

A boolean expression is a value, not a question. Printing one directly is the fastest way to stop thinking of comparisons as something that only lives inside an if.

What to write

  1. Read two integers, a and b.
  2. Print the value of a > b.
  3. Print the value of a == b.
  4. Print the value of a != b.
  5. Print the value of a <= b.
  6. Store a >= b in a boolean variable and print that variable on the last line.

Your program reads

Two integers on separate lines: a, then b.

Your program prints

Five lines, each true or false.

Worked examples

These are the cases you can see. There are more you cannot, and they use different values, so an answer that prints these numbers as constants will fail.

Example 1 input
5
3
Example 1 output
true
false
true
false
true
Example 2 input
4
4
Example 2 output
false
true
false
true
true

Your answer

Main.java

Input for the Run button

Run sends whatever is in the input box below. Submitting runs your program against every test case, including hidden ones with different input.


  

  

Stuck?

Hint 1

System.out.println(a > b) prints the word true or the word false. You do not need an if to produce them.

Hint 2

= assigns and == compares. boolean atLeast = a >= b; uses both in one line, and they mean different things.

Hint 3

a != b is always the opposite of a == b, so those two lines can never match.

Where to go next

Get in Touch

Whether you're a student, parent, or teacher — I'd love to hear from you.

Just want free AP CS resources?

Enter your email below and check the subscribe box — no message needed. Students get daily practice questions and study tips. Teachers get curriculum resources and teaching strategies.

Typically responds within 24 hours

Message Sent!

Thanks for reaching out. I'll get back to you within 24 hours.

🏫 Welcome, fellow educator!

I offer curriculum resources, practice materials, and study guides designed for AP CS teachers. Let me know what you're looking for — whether it's classroom materials, a guest speaker, or Teachers Pay Teachers resources.

Email

[email protected]

📚

Courses

AP CSA, CSP, & Cybersecurity

Response Time

Within 24 hours

Prefer email? Reach me directly at [email protected]