Exam 3: Using Classes and Objects
Exam 1: Introduction64 Questions
Exam 2: Data and Expressions67 Questions
Exam 3: Using Classes and Objects49 Questions
Exam 4: Writing Classes53 Questions
Exam 5: Conditionals and Loops38 Questions
Exam 6: More Conditionals and Loops35 Questions
Exam 7: Object-Oriented Design44 Questions
Exam 8: Arrays45 Questions
Exam 9: Inheritance49 Questions
Exam 10: Polymorphism40 Questions
Exam 11: Exceptions39 Questions
Exam 12: Recursion55 Questions
Exam 13: Collections60 Questions
Select questions type
Given the following two lines of code, what can be said about s1 and s2? String s1 = "testing" + "123";
String s2 = new String("testing 123");
(Multiple Choice)
4.9/5
(33)
In Java, the symbol "=" and the symbol "==" are used interchangeably.
(True/False)
4.8/5
(28)
The printf method within System.out is designed to ease the conversion of legacy C code into Java.
(True/False)
4.9/5
(36)
If you need to import not only the top-level of a package, but all its secondary levels as well, you should use the following:
import package.*.*;
(True/False)
4.9/5
(38)
Only difficult programming problems require a pseudocode solution before the programmer creates the program itself.
(True/False)
4.9/5
(44)
The advantages of the DecimalFormat class compared to the NumberFormat class include
(Multiple Choice)
4.7/5
(36)
When comparing any primitive type of variable, the == operator should always be used to test if two values are equal.
(True/False)
4.8/5
(40)
Showing 41 - 49 of 49
Filters
- Essay(0)
- Multiple Choice(0)
- Short Answer(0)
- True False(0)
- Matching(0)