In order to compare int, float and double variables, you can use <, >, ==, !=, <=, >=, but to compare char and String variables, you must use compareTo(), equals()and equalsIgnoreCase().
Coding 4 All 2023 Java Final

Quiz
•
Computers
•
University
•
Medium
Coding All
Used 64+ times
FREE Resource
33 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
True
False
Answer explanation
In order to compare int, float and double variables, you can use <, >, ==, !=, <=, >=, but to compare char and String variables, you must use compareTo(), equals()and equalsIgnoreCase().
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Assume that boolean done = false, int x = 10, int y = 11, String s = "Help" and String t = "Goodbye". Then the expression (!done && x <= y) is true.
True
False
Answer explanation
Since done is false, !done is true. Since 10 < 11, x <= y is true. Therefore, the entire expression is true.
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Assume that boolean done = false, int x = 10, int y = 11, String s = "Help" and String t = "Goodbye". Then the expression (s.concat(t).length() < y) is true.
True
False
Answer explanation
Concatenating s and t gives a String that is 11 characters long and 11 < 11 is false.
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
f you create an ArrayList without specifying the type of element, the ArrayList will store Object references which means you can put any type of object in the list.
True
False
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which of the sets of statements below will add 1 to x if x is positive and subtract 1 from x if x is negative but leave x alone if x is 0?
if (x > 0) x++;
else x--;
if (x > 0) x++;
else if (x < 0) x--;
if (x > 0) x++;
if (x < 0) x--;
if (x == 0) x = 0;
else x++;
x--;
Answer explanation
In B, if x is positive, x++ is performed, else if x is negative x-- is performed and otherwise, nothing happens, or x is unaffected. In A, C, D and E, the logic is incorrect. In A, x-- is done if x is not positive, thus if x is 0, x becomes -1 which is the wrong answer. In C, if x is positive, then x++ is performed. In either case, the next statement is executed and if x is not negative, the else clause is performed setting x to 0. So if x is positive, it becomes 0 after this set of code. In D, x++ and x-- are both performed if x is not 0. And in E, this code does not attempt to determine if x is positive or negative, it just adds one and then subtracts one from x, leaving x where it started.
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Consider the following code that will assign a letter grade of 'A', 'B', 'C', 'D', or 'F' depending on a student's test score.
if (score >= 90) grade = 'A';
if (score >= 80) grade = 'B';
if (score >= 70) grade = 'C';
if (score >= 60) grade = 'D';
else grade = 'F';
This code will work correctly in all cases.
This code will work correctly only if the grade is greater than or equal to 60.
This code will work correctly only if the grade is less than 60.
This code will work correctly only if the grade is less than 70.
This code will not work correctly under any circumstances.
Answer explanation
The problem with this code is that it consists of three if statements followed by one if-else statement, rather than a nested if-else statement. So the logic is improper. If the student's grade falls into the 'A' category, then all 4 conditions are true and the student winds up with a 'D'. If the student's grade falls into the 'B' category, then the first condition is false, but the next three are true and the student winds up with a 'D'. If the student's grade falls into the 'D' category, then the only condition that is true is the one that tests for 'D' and so the grade is assigned correctly. If the student's grade falls into the 'F' category, then none of the conditions are true and an 'F' is assigned correctly. So, only if the grade is less than 70 does the code work correctly.
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is wrong, logically, with the following code?
if (x > 10)
System.out.println("Large");
else if (x > 6 && x <= 10)
System.out.println("Medium");
else if (x > 3 && x <= 6)
System.out.println("Small");
else
System.out.println("Very small");
There is no logical error, but there is no need to have x <= 10 in the second conditional or x <= 6 in the third conditional.
There is no logical error, but there is no need to have x > 6 in the second conditional or x > 3 in the third conditional.
The logical error is that no matter what value x is, Very small is always printed out.
The logical error is that no matter what value x is, Large is always printed out.
There is nothing wrong with the logic at all.
Answer explanation
Because this is a nested if-else statement, if (x>10)is true, then the first println statement is executed and the rest of the statement is skipped. If (x>10)is not true, then the first else clause is executed and the next if condition is tested. At this point, (x>10)is known to be false and therefore (x<=10)must be true, so there is no need to check this inequality. Similarly, if (x>6)is false, then the second else clause is executed and the third if condition is tested. However, (x<=6)must be true, so there is no need to check this inequality.
Create a free account and access millions of resources
Similar Resources on Quizizz
30 questions
Round_1 (B)| Coding Combat 2.0

Quiz
•
University
30 questions
DFC20113 Programming Fundamentals Set B

Quiz
•
University
30 questions
Computer Programming-2

Quiz
•
University
30 questions
Unit 6: List, Loops, and Transversals

Quiz
•
9th Grade - University
35 questions
Unit 9.1 - Textual Programming

Quiz
•
8th Grade - University
30 questions
CS 211 - Midterm Review

Quiz
•
University
35 questions
Kuis 2

Quiz
•
University
30 questions
JavaScript

Quiz
•
University
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade