3.11. Multiple Choice Exercises¶
3.11.1. Easier Multiple Choice Questions¶
- x is negative
- This will only print if x has been set to a number less than zero. Has it?
- x is zero
- This will only print if x has been set to 0. Has it?
- x is positive
- The first condition is false and x is not equal to zero so the else will execute.
3-11-1: What does the following code print when x has been set to 187?
if (x < 0)
{
System.out.println("x is negative");
}
else if (x == 0)
{
System.out.println("x is zero");
}
else
{
System.out.println("x is positive");
}
- first case
- This will print if x is greater than or equal 3 and y is less than or equal 2. In this case x is greater than 3 so the first condition is true, but the second condition is false.
- second case
- This will print if x is less than 3 or y is greater than 2.
3-11-2: What is printed when the following code executes and x equals 4 and y equals 3?
if (!(x < 3 || y > 2))
System.out.println("first case");
else
System.out.println("second case");
- A
- Notice that each of the first 4 statements start with an if. What will actually be printed? Try it.
- B
- Each of the first 4 if statements will execute.
- C
- Check this in DrJava.
- D
- Each of the if statements will be executed. So grade will be set to B then C and finally D.
- E
- This will only be true when score is less than 60.
3-11-3: What is the value of grade when the following code executes and score is 80?
if (score >= 90) grade = "A";
if (score >= 80) grade = "B";
if (score >= 70) grade = "C";
if (score >= 60) grade = "D";
else grade = "E";
- first case
- This will print if either of the two conditions are true. The first isn't true but the second will cause an error.
- second case
- This will print if both of the conditions are false. But, an error will occur when testing the second condition.
- You will get a error because you can't divide by zero.
- The first condition will be false so the second one will be executed and lead to an error since you can't divide by zero.
3-11-4: What is printed when the following code executes and x has been set to zero and y is set to 3?
if (x > 0 || (y / x) == 3)
System.out.println("first case");
else
System.out.println("second case");
3.11.2. Medium Multiple Choice Questions¶
- (!c) && (!d)
- NOTing (negating) an OR expression is the same as the AND of the individual values NOTed (negated). See DeMorgans laws.
- (c || d)
- NOTing an OR expression does not result in the same values ORed.
- (c && d)
- You do negate the OR to AND, but you also need to negate the values of c and d.
- !(c && d)
- This would be equivalent to (!c || !d)
- (!c) || (!d)
- This would be equivalent to !(c && d)
3-11-5: Which of the following expressions is equivalent to !(c || d) ?
- x = 0;
- If x was set to 1 then it would still equal 1.
- if (x > 2) x *= 2;
- What happens in the original when x is greater than 2?
- if (x > 2) x = 0;
- If x is greater than 2 it will be set to 0.
- if (x > 2) x = 0; else x *= 2;
- In the original what happens if x is less than 2? Does this give the same result?
3-11-6: Which of the following is equivalent to the code segment below?
if (x > 2)
x = x * 2;
if (x > 4)
x = 0;
- x = 0;
- No matter what x is set to originally, the code will reset it to 0.
- if (x > 0) x = 0;
- Even if x is < 0, the above code will set it to 0.
- if (x < 0) x = 0;
- Even if x is > than 0 originally, it will be set to 0 after the code executes.
- if (x > 0) x = -x; else x = 0;
- The first if statement will always cause the second to be executed unless x already equals 0, such that x will never equal -x.
- if (x < 0) x = 0; else x = -1;
- The first if statement will always cause the second to be executed unless x already equals 0, such that x will never equal -x.
3-11-7: Which of the following is equivalent to the code segment below?
if (x > 0)
x = -x;
if (x < 0)
x = 0;
- I and III only
- Choice I uses multiple if's with logical ands in the conditions to check that the numbers are in range. Choice II won't work since if you had a score of 94, it would first assign the grade to an "A" but then it would execute the next if and change the grade to a "B" and so on until the grade was set to a "C". Choice III uses ifs with else if to make sure that only one conditional is executed.
- II only
- Choice II won't work since if you had a score of 94 it would first assign the grade to an "A" but then it would execute the next if and change the grade to a "B" and so on until the grade was set to a "C". This could have been fixed by using else if instead of just if.
- III only
- III is one of the correct answers. However, choice I is also correct. Choice I uses multiple if's with logical ands in the conditions to check that the numbers are in range. Choice III uses ifs with else if to make sure that the only one conditional is executed.
- I and II only
- Choice II won't work since if you had a score of 94 it would first assign the grade to an "A" but then it would execute the next if and change the grade to a "B" and so on until the grade was set to a "C". This could have been fixed by using else if instead of just if.
- I, II, and III
- Choice II won't work since if you had a score of 94 it would first assign the grade to an "A" but then it would execute the next if and change the grade to a "B" and so on until the grade was set to a "C". This could have been fixed by using else if instead of just if.
3-11-8: At a certain high school students receive letter grades based on the following scale: 93 or above is an A, 84 to 92 is a B, 75 to 83 is a C, and below 75 is an F. Which of the following code segments will assign the correct string to grade for a given integer score?
I. if (score >= 93)
grade = "A";
if (score >= 84 && score <=92)
grade = "B";
if (score >=75 && score <= 83)
grade = "C";
if (score < 75)
grade = "F";
II. if (score >= 93)
grade = "A";
if (score >= 84)
grade = "B";
if (score >=75)
grade = "C";
if (score < 75)
grade = "F";
III. if (score >= 93)
grade = "A";
else if (score >= 84)
grade = "B";
else if (score >=75)
grade = "C";
else
grade = "F";
3.11.3. Hard Multiple Choice Questions¶
- (x > 15 && x < 18) && (x > 10)
- This can't be right as it's only checking the x variable, however the original statement can solely depend on the y variable in some cases.
- (y < 20) || (x > 15 && x < 18)
- There's a third condition on x that can affect the output of the statement which is not considered in this solution.
- ((x > 10) || (x > 15 && x < 18)) || (y < 20)
- The commutative property allows the terms to be switched around, while maintaining the value. In this case, the || symbol is used with the commutative property and the statement included the && must stay together to follow the laws of logic.
- (x < 10 && y > 20) && (x < 15 || x > 18)
- This is the negation of the original statement, thus returning incorrect values.
3-11-9: Assuming that x and y have been declared as valid integer values, which of the following is equivalent to this statement?
(x > 15 && x < 18) || (x > 10 || y < 20)
- first
- This will print, but so will something else.
- first second
- Are you sure about the "second"? This only prints if y is less than 3, and while it was originally, it changes.
- first second third
- Are you sure about the "second"? This only prints if y is less than 3, and while it was originally, it changes.
- first third
- The first will print since x will be greater than 2 and the second won't print since y is equal to 3 and not less than it. The third will always print.
- third
- This will print, but so will something else.
3-11-10: What would the following print?
int x = 3;
int y = 2;
if (x > 2)
x++;
if (y > 1)
y++;
if (x > 2)
System.out.print("first ");
if (y < 3)
System.out.print("second ");
System.out.print("third");
- first
- When you do integer division you get an integer result so y / x == 0 and is not greater than 0.
- second
- The first will not print because integer division will mean that y / x is 0. The second will print since it is not in the body of the if (it would be if there were curly braces around it).
- first second
- Do you see any curly braces? Indention does not matter in Java.
- Nothing will be printed
- This would be true if there were curly braces around the two indented statements. Indention does not matter in Java. If you don't have curly braces then only the first statement following an if is executed if the condition is true.
3-11-11: What would the following print?
int x = 3;
int y = 2;
if (y / x > 0)
System.out.print("first ");
System.out.print("second ");