What kind of a class might be considered to be "fragile"?
A. A built in class that is overloaded.
B. A class that depends on being passed parameters from another method.
C. A class that depends on field names from parent classes.
D. A class that has no destructor method.
Answer: C
You might also like to view...
Skin mode is when Windows Media Player displays with an alternative appearance
Indicate whether the statement is true or false
What is displayed on the console when running the following program?
``` public class Test { public static void main (String[] args) { try { System.out.println("Welcome to Java"); return; } finally { System.out.println("The finally clause is executed"); } } }``` a. Welcome to Java b. Welcome to Java followed by The finally clause is executed in the next line c. The finally clause is executed d. None of the above