Exam 4: Fundamental Data Types
Exam 1: Introduction76 Questions
Exam 2: Using Objects82 Questions
Exam 3: Implementing Classes108 Questions
Exam 4: Fundamental Data Types124 Questions
Exam 5: Decisions119 Questions
Exam 6: Loops107 Questions
Exam 7: Arrays and Array Lists117 Questions
Exam 8: Designing Classes88 Questions
Exam 9: Inheritance99 Questions
Exam 10: Interfaces100 Questions
Exam 11: Input/Output and Exception Handling108 Questions
Exam 12: Object-Oriented Design104 Questions
Exam 13: Recursion99 Questions
Exam 14: Sorting and Searching100 Questions
Exam 15: The Java Collections Framework102 Questions
Exam 16: Basic Data Structures102 Questions
Exam 17: Tree Structures102 Questions
Exam 18: Generic Classes75 Questions
Exam 19: Stream Processing85 Questions
Exam 20: Graphical User Interfaces75 Questions
Exam 21: Advanced Input/Output90 Questions
Exam 22: Multithreading81 Questions
Exam 23: Internet Networking74 Questions
Exam 24: Relational Databases75 Questions
Exam 25: XML74 Questions
Select questions type
Which one of the following statements can be used to extract the last 10 characters from the string variable str?
(Multiple Choice)
4.8/5
(34)
What is wrong with the following code?
int count = 2000 * 3000 * 4000;
(Multiple Choice)
4.7/5
(34)
Which of the following statements will assign the largest value of three integer variables a, b, and c to the integer variable maximum?
(Multiple Choice)
4.7/5
(31)
What (if any) type of error occurs with the following code if the user input is ABC?

(Multiple Choice)
4.8/5
(40)
What is the output of the following code snippet?
final String str = "Java";
str += " is powerful";
System.out.println(str);
(Multiple Choice)
4.9/5
(31)
Which of the following guidelines will make code more explanatory for others?
(Multiple Choice)
4.9/5
(41)
Which of the following statements places input into the variable value given this line of code?
Scanner in = new Scanner(System.in);
(Multiple Choice)
4.9/5
(33)
What is the output of the following code snippet?
System.out.printf("%5.3f", 20.0);
(Multiple Choice)
4.8/5
(35)
What will be the value of the variables a and b after the given set of assignments?

(Multiple Choice)
4.9/5
(34)
Showing 81 - 100 of 124
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)