Chapter 2
What is the value of result after the following Java statements execute (assume all variables are of type int)? a = 4; b = 12; c = 37; d = 51; result = d % a * c + a % b + a; A) 119 B) 51 C) 127 D) 59
A) 119
Which is the output of the following statements? System.out.print( "Hello "); System.out.println( "World" ); A) Hello World B) HelloWorld C) Hello World D) World Hello
A) Hello World
End-of-line comments that should be ignored by the compiler are denoted using. A) Two forward slashes ( // ). B) Three forward slashes ( /// ). C) A slash and a star ( /* ). D) A slash and two stars ( /** ).
A) Two forward slashes ( // ).
What will be output after the following Java statements have been executed (assume all variables are of type int)? a = 4; b = 12; c = 37; d = 51; if ( a < b ) System.out.println( "a < b" ); if ( a > b ) System.out.println( "a > b" ); if ( d <= c ) System.out.println( "d <= c" ); if ( c != d ) System.out.println( "c != d" ); A) a < bc != d B) a < bd <= c c != d C) a > b c != d D) a < bc < d a != b
A) a < bc != d
Which of the following statements does not alter the value stored in a memory location? A) int a; B) number = 12; C) y = y + 2; D) width = Integer.parseInt(input);
A) int a;
Which command executes the Java class file Welcome.class? A) java welcome B) java Welcome.class C) java Welcome D) run Welcome.class
A) java welcome
Which of the following is not a valid Java identifier? A) my Value B) $_AAA1 C) width D) m_x
A) my Value
Optional parentheses in expressions are said to be A) redundant B) binary operators C) implied D) declared
A) redundant
The format specifier ________ is a placeholder for an int value. A) %n B) %d C) %int D) %s
B) %d
Each of the following is a relational or equality operator except: A) <= B) =! C) == D) >
B) =!
Which of the following is not a compilation error? A) Neglecting to initialize a local variable in a method before it is used. B) Placing a semicolon at the end of the first line of an if statement. C) Omitting the left and right parenthesis for the condition of an if statement. D) All are compilation errors.
B) Placing a semicolon at the end of the first line of an if statement.
Which of the following statement displays Hello World? A) System.out.printf( "%2s", "Hello " "World" ); B) System.out.printf( "%s %s", "Hello", "World" ); C) System.out.printf( "%s%s", "Hello, World" ); D) System.out.printf( "s% s%", "Hello", "World" );
B) System.out.printf( "%s %s", "Hello", "World" );
Which of the following is the escape character? A) * B) \ C) \n D) "
B) \
Which of the following escape sequences represents a carriage return? A) \n B) \r C) \cr D) \c
B) \r
All import declarations must be placed A) inside the class declaration's body B) before the class declaration C) after the class declaration D) all of the above will work
B) before the class declaration
Which command compiles the Java source code file Welcome.java? A) cd Welcome.java B) javac Welcome.java C) java Welcome.java D) compile Welcome.java
B) javac Welcome.java
Which of the following is not an arithmetic operator? A) + B) - C) . D) %
C) .
Given the Java statement number1 = input.nextInt();in which number1 is an int and input is a Scanner, which of the following occurs if the user does not enter a valid int value? A) A compilation error occurs B) The program continues executing and assigns the value 0 to number1. C) A runtime logic error occurs D) None of the above
C) A runtime logic error occurs
The filename for the public class that begins with public class Addition must be A) public.java. B) public.class.java. C) Addition.java. D) addition.java.
C) Addition.java.
Which of the following does not contain a syntax error? A) System.out.println( 'Hello world!' ): B) System.out.println( "Hello world!" ); C) System.out.println( "Hello world!" ); D) System.out.println( Hello world! );
C) System.out.println( "Hello world!" );
Which of the following statements would display the phase "Java is fun"? A) System.out.println( "hellois fun\rJava " ); B) System.out.println( 'Java is fun' ); C) System.out.println( "\"Java is fun\"" ); D) System.out.println( Java is fun )
C) System.out.println( "\"Java is fun\"" );
When method printf requires multiple arguments, the arguments are separated with ________. A) colons (:) B) semicolons (;) C) commas (,) D) periods (.)
C) commas (,)
Portions of statements that contain calculations are called A) variables B) constants C) expressions D) None of the above
C) expressions
Which of the following is a Scanner method for inputting an integer value? A) nextInteger B) integer C) nextInt D) int
C) nextInt
Which of the following is not a Java primitive type? A) char B) byte C) real D) double
C) real
The body of each class declaration begins with ________ and ends with ________. A) (, ) B) [, ] C) {, } D) /, \
C) {, }
Which of the following statements is true? A) System.out.print("Enter your age: "); prompts the user to take action. B) Class names typically begin with a capital letter. C) Package java.lang is imported in every Java program. D) All of the above are true
D) All of the above are true
Which of the following cannot cause a syntax error to be reported by the Java compiler? A) Mismatched {} B) Missing */ in a comment that begins with / C) Missing ; D) An extra blank line.
D) An extra blank line.
Given the Java statement sum = number1 + number2; which of the following statements is false? A) It's an assignment statement. B) It calculates the sum of variables number1 and number2 C) The operands of the addition operator are number1 and number2 D) It assigns the value of number1 to sum
D) It assigns the value of number1 to sum
Which of the following statements will print a single line containing "hello there"? A) System.out.println( "hello" );System.out.println( " there" ); B) System.out.println( "hello" , " there" ); C) System.out.println( "hello" );System.out.print( " there" ); D) System.out.print( "hello" ); System.out.println( " there" );
D) System.out.print( "hello" ); System.out.println( " there" );
Which of the following statements is false? A) Primitive types are keywords B) Primitive types must appear in all lowercase letters C) Real numbers contain decimal points D) Variable name identifiers must begin with a lowercase letter.
D) Variable name identifiers must begin with a lowercase letter.
Java's predefined classes are grouped into A) packets B) declarations C) Galleries D) packages
D) packages
Programs remember numbers and other data in the computer's memory and access that data through program elements called. A) comments B) messages C) messages D) variables
D) variables