Final Exam (part 1) Flashcards
The compiler generates bytecode even if the program has syntax errors. T/F
False
Java was originally developed by a team led by James Gosling at Sun Microsystems. T/F
True
One byte has ____ bits.
8
The JDK command to compile a class in the file Text.java is _____.
javac Test.java
The command to compile a class in the file Test.java is ____.
javac Test.java
______ is a technical definition of the language that includes the syntax and semantics of the java programming language.
Java JDK
The extension name of a java source code file is _____.
.java
A block is enclosed inside _____.
braces
To assign a double variable d to a float variable x, you write ______.
x = (float)d;
-25 % 5 is _____.
0
To improve readability and maintainability, you should declare _____ instead of using literal values such as 3.14159.
constants
To assign a value 1 to variable x, you write ______.
x = 1;
Which of the following assignment statements is illegal?
float f = -34;
int t = 23;
short s = 10;
float f = 34.0;
float f = 34.0;
Any assignment statement can be used as an assignment expression. T/F
True
If you attempt to add an int, a byte, a long, and a double, the result will be a _____ value.
double
System.exit(0) can be used to terminate the program. T/F
True
Suppose x = 10 and y = 10. What is x after evaluating the expression (y > 10) && (x– > 10)?
10
In Java, the word true is _____.
a Boolean literal
Which of the following expression is equivalent
to (x > 1)?
x >= 1
!(x <= 1)
!(x = 1)
!(x < 1)
!(x <= 1)
Assume x = 4, which of the following is true?
!(x == 4)
x != 4
x == 5
x != 5
x != 5
_______ are short-circuit operators.
&&
||
!
&&
||
Which of the following is a possible output for (int)(51 * Math.random())?
0
50
100
500
0
50
“smiles”.substring(1, 5) returns “mile”. T/F
true
An int variable can hold ____.
‘x’
120
120.0
‘x’
120
Which of the following is the correct expression of character 4?
4
“4”
‘\0004’
‘4’
To obtain the sine of 35 degrees, use ____.
Math.sin(35)
Math.sin(Math.toRadians(35))
Math.sin(Math.toDegrees(35))
Math.sin(Math.toRadian(35))
Math.sin(Math.toDegree(35))
Math.sin(Math.toRadians(35))
Given two Strings s1 = “Welcome to Java” and s2 = “Programming is fun”, which of the following is true?
s1.equals(s2)
s2.equals(s1)
s1.contains(s2)
s2.contains(s1)
!s1.contains(s2)
!s1.contains(s2)
Suppose i is an int type variable. Which of the following statements display the character whose Unicode is stored in variable i?
System.out.println(i);
System.out.println((char)i);
System.out.println((int)i);
System.out.println(i + “ “);
System.out.println((char)i);
Write one statement that prints out “No pain, no gain.” The output need to be in two lines as:
No pain,
no gain.
(note: there is a tab space in front of no gain)
System.out.println(“No pain,\n\tno gain.”);
Write an if-else statement to print out “EVEN” if x is even; print out “ODD” if x is odd. Here x is an int type variable that has been initialized
if(x % 2 == 0) System.out.println(“EVEN”);
else System.out.println(“ODD”);
Write a line of code to declare a Scanner object named keyboard.
Scanner keyboard = new Scanner(System.in);
Write an if-else statement to print out “Excellent” if the student’s score is 90 or above, “Good” if the student’s score is 80 to 89, “Word harder” otherwise. Assume score is an int type variable that has been initialized.
if(score >=90) System.out.println(“Excellent”);
else if(score >= 80) System.out.println(“Good”);
else System.out.println(“Word harder”);
Write a switch statement to print out “Excellent” if the student’s grade is A; “Good” if the student’s grade is B; “Word harder” otherwise. Assume grade is a char type variable that has been initialized.
switch(grade) {
case ‘A’: System.out.println(“Excellent”);
break;
case ‘B’: System.out.println(“Good”);
break;
default: System.out.println(“Word harder”);
break;
}
Write one expression that returns true if and only if char c is an arithmetic operator, i.e. +, -,*,/ or %.
c == ‘+’ || c == ‘-‘ || c == ‘’ || c == ‘/’ || c == ‘%’
or
“+-/%”.indexOf(c) != -1
Write one expression that returns true if and only if String s doesn’t contain lower case English letter.
s.equals(s.toUpperCase())
Write one line of code to print out the length of String greeting. Assume that greeting has been declared and initialized.
System.out.println(greeting.length());