Solved

Consider the Following Code Snippet

Question 78

Multiple Choice

Consider the following code snippet:
Public interface Sizable
{
Int LARGE_CHANGE = 100;
Void changeSize() ;
}
Which of the following indicates how to use the constant LARGE_CHANGE in your program?


A) LARGE_CHANGE
B) Sizable.LARGE_CHANGE
C) Sizable(LARGE_CHANGE)
D) You cannot directly use the LARGE_CHANGE constant in your program.

Correct Answer:

verifed

Verified

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions