Quiz: Both Threes
| Check whether both x and y are 3 | x == 3 && y == 3 |
|
| Check whether at least one of x and y are 3 | x == 3 || y == 3 |
| Check whether both x and y are 3 | x == 3 && y == 3 |
|
| Check whether at least one of x and y are 3 | x == 3 || y == 3 |