Question 1
Question
Given the following code segment, what would be the output?
int a = 0;
int b = 0;
int c = 0;
System.out.println(a++ + " " + --b + " " + c++ + " " + a + " " + b);
Answer
-
1 0 1 0 0
-
0 0 0 0 0
-
1 0 1 1 -1
-
0 -1 0 1 -1
Question 2
Question
Which of the following string classes create mutable strings? (Choose all that apply.)
Answer
-
String
-
StringBuffer
-
StringBuilder
Question 3
Question
Choose the simplest data structure to use to store multiple like variables that could then be accessed by an index.
Answer
-
Primitive
-
Object
-
Array
-
Enumeration
Question 4
Question
Which of the statements are correct? (Choose all that apply.)
Answer
-
3.0 is a valid literal for an int.
-
3.0 is a valid literal for a float.
-
3 is a valid literal for an int.
-
3 is a valid literal for a float.
-
3f is a valid literal for an int.
-
3f is a valid literal for a float.
Question 5
Question
What literal values are acceptable to use with the boolean primitive?
Question 6
Question
Which code segments related to enumerations will result in a compiler error? (Choose all that apply.)
Answer
-
enum Coin {PENNY, NICKEL, DIME, QUARTER}
Coin coin = Coin.NICKEL;
-
enum Coin {PENNY, NICKEL, DIME, QUARTER}
Coin coin;
coin = Coin.NICKEL;
-
enum Coin {PENNY, NICKEL, DIME, QUARTER}
Coin coin = NICKEL;
-
enum Coin {penny, nickel, dime, quarter}
Coin coin = Coin.NICKEL;
Question 7
Question
Consider the following declarations. Which declaration has an element name that does not conform to standard naming conventions?
Question 8
Question
Java 7 added the allowance of a special character to indentify places. Which declaration is correct?
Answer
-
int investment = 1x000x000;
-
int investment = 1_000_000;
-
int investment = 1^000^000;
-
int investment = 1-000-000;
Question 9
Question
What are the wrapper classes for the primitives boolean, char, short, int, and double?
Answer
-
Boolean, Char, Short , Int , Double
-
Boolean, Char, Short, Integer, Double
-
Boolean, Character, Short, Int, Double
-
Boolean, Character, Short, Integer, Double
Question 10
Question
Which of the following statements contain literal values?
Answer
-
int maxHorsePower = 170;
-
float currentHorsePower = (float) maxHorsePower;
-
float idleHorsePower = ((float) currentHorsePower) / 10);
-
System.out.println("Current HP: " + currentHorsePower);
Question 11
Question
What is the correct way to initialize a variable declared as a Penguin as a new Penguin object?
Question 12
Question
Which of the following are primitive data types? (Choose all that apply.)
Answer
-
int
-
boolean
-
char
-
Float
-
String
Question 13
Question
Which code example makes use of arrays without producing a compiler or runtime error?
Answer
-
public class Actor {
String[] characterName = new String[3];
{
characterName[0] = "Captain Video";
characterName[1] = "Quizmaster";
characterName[2] = "J.C. Money";
characterName[3] = "Jersey Joe";
}
}
-
public class Actor {
String[] characterName = new String[1..4]
{
characterName[0] = "Captain Video";
characterName[1] = "Quizmaster";
characterName[2] = "J.C. Money";
characterName[3] = "Jersey Joe";
}
}
-
public class Actor {
String characterName = new String[4];
{
characterName[0] = "Captain Video";
characterName[1] = "Quizmaster";
characterName[2] = "J.C. Money";
characterName[3] = "Jersey Joe";
}
}
-
public class Actor {
String [] characterName = new String[4];
{
characterName[0] = "Captain Video";
characterName[1] = "Quizmaster";
characterName[2] = "J.C. Money";
characterName[3] = "Jersey Joe";
}
}
Question 14
Question
Class variables, also known as static fields, have only one instance in existence. Following standing naming conventions, which answer represents a class variable?
Answer
-
variableName
-
VariableName
-
ClassName:variableName
-
ClassName.variableName
Question 15
Question
What statement about local variables is true?
Answer
-
Local variables are declared outside of methods and are initialized with a default value.
-
Local variables are declared inside of methods and are initialized with a default value.
-
Local variables are declared outside of methods and are not initialized with a default value.
-
Local variables are declared inside of methods and are not initialized with a default value.