| Title | Topics | Action | |||
|---|---|---|---|---|---|
| 69 | If Equals To 50Create an int variable x = 50. Use an if statement with == to check if x is equa... | easy | ○ Not Started | If Statements | Solve |
| 70 | If Greater Than 50Create an int variable x = 60. Use if/else with > to check if x is greater than ... | easy | ○ Not Started | If Statements | Solve |
| 71 | If Less Than 50Create an int variable x = 40. Use if/else with < to check if x is less than 50 ... | easy | ○ Not Started | If Statements | Solve |
| 72 | If Greater or EqualCreate an int variable x = 50. Use an if statement with >= to check if x is grea... | easy | ○ Not Started | If Statements | Solve |
| 73 | If Less or EqualCreate an int variable x = 50. Use an if statement with <= to check if x is less... | easy | ○ Not Started | If Statements | Solve |
| 74 | If Not EqualCreate an int variable x = 25. Use an if statement with != to check if x is not ... | easy | ○ Not Started | If Statements | Solve |
| 75 | Else If First MatchCreate int x = 50 and use if / else if / else to print only the first matching c... | easy | ○ Not Started | If Statements | Solve |
| 76 | Else Block CaseCreate int x = 0 and use if / else if / else so that all conditions are false an... | easy | ○ Not Started | If Statements | Solve |
| 77 | Even or Odd (No Input)Create int number = 51. Use if/else with % to print Even or Odd.
Expected Outpu... | easy | ○ Not Started | If Statements | Solve |
| 78 | Positive or Negative (No Input)Create int num = 5. Use if/else to print if it is positive or negative.
Expecte... | easy | ○ Not Started | If Statements | Solve |
| 146 | Sign of a NumberRead one number. Use if-else statements to determine and print its sign: print 0... | easy | ○ Not Started | If Statements | Solve |
| 79 | Letter Grade (No Input)Create int grade = 75 and use an if/else if/else chain to print the letter grade... | medium | ○ Not Started | If Statements | Solve |
| 80 | In Range 1..100 (No Input)Create int inRange = 75 and use && to check if it is between 1 and 100 inclusive... | medium | ○ Not Started | If Statements | Solve |
| 81 | Out of Range (No Input)Create int outOfRange = 11 and use || to check if it is out of range for 1..10.
... | medium | ○ Not Started | If Statements | Solve |
| 82 | Complex Boolean ExpressionCreate int myNum = 6 and use parentheses to evaluate a complex boolean expressio... | medium | ○ Not Started | If Statements | Solve |
| 83 | Two Conditions with &&Create int x = 50 and int y = 10. Use && to check if x == 50 and y > 5. Print:
... | medium | ○ Not Started | If Statements | Solve |
| 84 | At Least One True with ||Create int x = 5 and int y = 100. Use || to check if x < 0 or y >= 100. Print:
... | medium | ○ Not Started | If Statements | Solve |
| 85 | Nested If Entry CheckCreate int age = 18 and boolean hasId = true. Use nested if statements to print:... | medium | ○ Not Started | If Statements | Solve |
| 86 | Multiple Ifs vs Else-IfCreate int x = 50. Write three separate if statements (not else-if) that check x... | medium | ○ Not Started | If Statements | Solve |
| 87 | Even or Odd (Input)Read an integer and print Even if it is divisible by 2, otherwise print Odd.
⚠️... | medium | ○ Not Started | If StatementsUser Input | Solve |
| 88 | Positive, Negative, or Zero (Input)Read an integer and print Positive, Negative, or Zero using if/else if/else.
⚠️... | medium | ○ Not Started | If StatementsUser Input | Solve |
| 89 | Range Check 1..100 (Input)Read an integer and print In range if it is between 1 and 100 inclusive, otherwi... | medium | ○ Not Started | If StatementsUser Input | Solve |
| 90 | Simple Withdrawal Check (Input)Account balance is 1000. Read a withdrawal amount (double). If it is > 0 and <= ... | medium | ○ Not Started | If StatementsUser Input | Solve |
| 91 | Scholarship Eligibility (Input)Read a float GPA and an int serviceHours. If GPA > 3.5 OR serviceHours >= 50, pr... | medium | ○ Not Started | If StatementsUser Input | Solve |
| 92 | Multiple of 5 and EvenCreate int num = 20. If num is a multiple of 5 AND even, print:
Multiple of 5 a... | medium | ○ Not Started | If Statements | Solve |
| 93 | Temperature CategoryCreate int temp = 72. Use if/else if/else to print Warm if temp >= 70, Cool if t... | medium | ○ Not Started | If Statements | Solve |