APCSA Unit 1 Progress Check MCQ Parts A & B

अब Quizwiz के साथ अपने होमवर्क और परीक्षाओं को एस करें!

Consider the following code segment. System.out.print("Ready"); // Line 1 System.out.print("Set"); // Line 2 System.out.print("Go!"); // Line 3 The code segment is intended to produce the following output but may not work as intended. Ready Set Go! Which change, if any, can be made so that the code segment produces the intended output? A Changing print to println in lines 1 and 2 B Changing print to println in line 3 C Interchanging lines 1 and 3 D Replacing all three lines with the single statement System.out.println("Ready Set Go!"); E No change is needed; the code segment works correctly as is.

A

Each of the following code segments is intended to print the word Hello. Which of the following code segments works as intended? i. System.out.print("Hello"); ii. System.out.print(Hello); iii. System.out.print(He); System.out.print(llo); A I only B II only C III only D I and II E II and III

A

A store sells rope only in whole-foot increments. Given three lengths of rope, in feet, the following code segment is intended to display the minimum length of rope, in feet, that must be purchased so that the rope is long enough to be cut into the three lengths. For example, for lengths of 2.8 feet, 3 feet, and 5 feet, the minimum length of rope that must be purchased is 11 feet. For these inputs, the code segment should display 11. As another example, for lengths of 1.1 feet, 3.2 feet, and 2 feet, the minimum length of rope that must be purchased is 7 feet. For these inputs, the code segment should display 7. double len1; double len2; double len3; double total = len1 + len2 + len3; int minLength = (int) (total + 0.5); System.out.print(minLength); Which of the following best describes the behavior of the code segment? A The code segment works as intended for all nonnegative values of len1, len2, and len3. B The code segment does not work as intended for some values of len1, len2, and len3. The code segment works only works when the sum of the three lengths is an integer or the decimal part of the sum of the three lengths is greater than or equal to 0.5. C The

B

Consider the following code segment, which is intended to display 6.0. double fact1 = 1 / 2; double fact2 = 3 * 4; double product = fact1 * fact2; System.out.println(product); Which of the following best describes the error, if any, in the code segment? A There are no errors and the code works as intended. B Either the numerator or the denominator of the fraction 1 / 2 should be cast as double. C The expression fact1 * fact2 should be cast as double. D The expressions 1 / 2 and 3 * 4 should both be cast as double. E The variables fact1 and fact2 should both be declared as int.

B

Consider the following code segment. System.out.print("cat "); System.out.println("dog "); System.out.println("horse "); System.out.print("cow "); What is printed as a result of executing the code segment? A cat dog horse cow B cat dog horse cow C cat dog horse cow D cat dog horse cow E cat dog horse cow

B

Consider the following code segment. double d = 0.25; int i = 3; double diff = d - i; System.out.print((int)diff - 0.5); What is printed as a result of executing the code segment? A -2 B -2.5 C -3 D -3.25 E Nothing is printed because an int cannot be subtracted from a double.

B

Consider the following code segment. int x = 10; int y = 20; /* missing code */ System.out.print(top / bottom); Which of the following replacements for /* missing code */ will cause an ArithmeticException to occur? I. int top = x - y; int ottom = y - x; II. int top = 2 * x; int bottom = y - top; III. int top = x + y; int bottom = 2 * top; A I only B II only C III only D I and II E II and III

B

Consider the following code segment. int x = 4; int y = 6; x -= y; y += x; Which of the following best describes the behavior of the code segment? A The value of x and the value of y have not been changed. B Both the value of x and the value of y have been decreased. C Both the value of x and the value of y have been increased. D The value of x has been decreased and the value of y has been increased. E The value of x has been increased and the value of y has been decreased.

B

Which statement correctly declares a variable that can store a temperature rounded to the nearest tenth of a degree? A boolean patientTemp; B double patientTemp; C int patientTemp; D patientTemp = 0; E patientTemp = 0.0;

B

A teacher determines student percentages in a course as the points a student earns divided by the total points available in the grading period. Points are awarded only in whole number increments, but student percentages are to be stored as decimals. The following code segment appears in a program used to compute student percentages. Points that a student earns are stored in pointsEarned, the total points available in the grading period are stored in totalPoints, and the student percentage is stored in percentage. int pointsEarned; /* missing code */ Which of the following is most appropriate to replace /* missing code */ in the program? A int totalPoints; int percentage; B double totalPoints; int percentage; C int totalPoints; double percentage; D int totalPoints; boolean percentage; E double totalPoints; boolean percentage;

C

Consider the following code segment, which is intended to calculate the average of two quiz scores. double avg = 15 + 20; avg /= 2; Which of the following best describes the behavior of the code segment? A The code segment stores 17 in avg because 17 is the result of the integer division of 35 by 2. B The code segment stores 18 in avg because 18 is the result of the integer division of 35 by 2. C The code segment stores 17.5 in avg because 17.5 is the result of the floating point division of 35.0 by 2. D The code segment does not compile because int values cannot be assigned to double values. E The code segment does not compile because a double value cannot be divided by an int value.

C

Consider the following code segment, which is intended to display 0.5. int num1 = 5; int num2 = 10; double ans = num1 / num2; System.out.print(ans); Which of the following best describes the error, if any, in the code segment? A There is no error and the code works as intended. B The code should have cast the expression num1 / num2 to double. C The code should have cast either num1 or num2 in the expression num1 / num2 to double. D The code should have declared ans as an int. E The code should have initialized num1 to 5.0 and num2 to 10.0.

C

Consider the following code segment. double a = 7; int b = (int) (a / 2); double c = (double) b / 2; System.out.print(b); System.out.print(" "); System.out.print(c); What is printed as a result of executing the code segment? A 3 1 B 3 1.0 C 3 1.5 D 3.5 1.5 E 3.5 1.75

C

Consider the following code segment. int a = 1; int b = 2; int c = 3; int d = 4; double x = a + b * c % d; What is the value of x when the code segment has been executed? A 1.0 B 2.5 C 3.0 D 7.0 E 9.0

C

Consider the following code segment. int num = 5; num *= 2; num %= 6; What is the value of num after the code segment is executed? A 1 B 2 C 4 D 6 E 10

C

Consider the code segment below. int x = 10; int y = 20; System.out.print(y + x / y); What is printed as a result of executing the code segment? A 1 B 1.5 C 3 D 20 E 20.5

D

Consider the following code segment. System.out.print("Hello!"); System.out.println("How "); System.out.print("are "); System.out.print("you?"); What is printed as a result of executing the code segment? A Hello!Howareyou? B Hello!How are you? C Hello! How are you? D Hello!How are you? E Hello! How are you?

D

Consider the following code segment. System.out.println("W"); System.out.println("X"); System.out.print("Y"); System.out.print("Z"); What is printed as a result of executing the code segment? A WXYZ B W XYZ C WX YZ D W X YZ E W X Y Z

D

Consider the following code segment. double p = 10.6; double n = -0.2; System.out.println((int) (p + 0.5)); System.out.print((int) (n - 0.5)); What is printed as a result of executing the code segment? A 10 -1 B 10 0 C 11 -1 D 11 0 E 11 1

D

Consider the following code segment. int x = /* initial value not shown */; int y = /* initial value not shown */; int z = x; z /= y; z += 2; Which of the following best describes the behavior of the code segment? A It sets z to 2. B It sets z to x. C It sets z to (1 / y) + 2. D It sets z to (x / y) + 2. E It sets z to (x + 2) / y.

D

Consider the following code segment: /* data type 1 */ x = 0.5; /* data type 2 */ y = true; Which of the following best describes the data types that should be used to replace /* data type 1 */ and /* data type 2 */ so that the code segment compiles without error? A The variable x should be declared as an int and the variable y should be declared as a boolean. B The variable x should be declared as an int and the variable y should be declared as an int. C The variable x should be declared as a double and the variable y should be declared as an int. D The variable x should be declared as a double and the variable y should be declared as a boolean. E The variable x should be declared as a boolean and the variable y should be declared as a boolean.

D

Which of the following arithmetic expressions evaluates to 1 ? I. 2 / 5 % 3 II. 2 / (5 % 3) III. 2 / 5 + 1 A I only B II only C I and II only D II and III only E I, II, and III

D

int x; int y; x = 3; y = /* missing expression */; x = 1 + 2 * y; System.out.print(x); System.out.println(y); Which of the following can be used as a replacement for /* missing expression */ so that the code segment prints 94 ? A 3 B x C x - 1 D x + 1 E 1 - 2 * x

D

Consider the following code segment. System.out.println(hello); // Line 1 System.out.print(world); // Line 2 The code segment is intended to produce the following output but does not work as intended. hello world Which of the following changes can be made so that the code segment produces the intended output? A Inserting System.out.print(); between lines 1 and 2 B Inserting System.out.println(); between lines 1 and 2 C Changing println in line 1 to print D Changing print in line 2 to println E Enclosing hello in line 1 and world in line 2 in quotation marks

E

Consider the following code segment. int j = 10; int k = 8; j += 2; k += j; System.out.print(j); System.out.print(" "); System.out.println(k); What is printed when the code segment is executed? A 2 2 B 2 10 C 10 8 D 12 12 E 12 20

E

Consider the following code segment. int x = 0; x++; x += 1; x = x + 1; x -= -1; System.out.println(x); What is printed when the code segment has been executed? A 0 B 1 C 2 D 3 E 4

E

The volume of a cylinder is equal to the height times the area of the circular base. The area of the circular base is equal to � (pi) times the square of the radius. The code segment below is intended to compute and print the volume of a cylinder with radius r and height h. Assume that the double variables r, h, and pi have been properly declared and initialized. /* missing code */ System.out.print(volume); Which of the following can be used to replace /* missing code */ so that the code segment works as intended? I. double baseArea = pi * r * r; double volume = baseArea * h; II. double volume = pi * r * r; volume = volume * h; III. double volume = pi * r * r * h; A I only B III only C I and III only D II and III only E I, II, and III

E


संबंधित स्टडी सेट्स

Money & Banking Connect HW Ch. 1-5

View Set

Accounting Test Chapter 11, 13, 14

View Set

BUSINESS FOR LAW CHAPTER 10 QUESTIONS: ILLEGAL AGREEMENTS

View Set