What is another name for creating an object?
A collection of objects and defined states to setup scenarios for several tests are known as:
The BlueJ tool called a/an ___ is used to view the current value (state) of an object's fields.
What is a class?
"Coupling" refers to:
"Cohesion" refers to:
A Java "HashMap" container is best described as:
Some of the commonly used public methods of an Iterator object are:
Copy of Given the string declarations below, what is the value of s1 == s2?
String s1 = new String("foo");
String s2 = new String("foo");
String s3 = s2;