Solved

Consider the Counter Class Below. Public Class Counter

Question 53

Multiple Choice

Consider the Counter class below. public class Counter
{
Public int count = 0;
Public int getCount()
{
Return count;
}
Public void increment()
{
Count++;
}
}
Using the class above and the variable declared below, what is the value of num.toString() ?
Counter num = new Counter() ;


A) a string with count's value
B) a string with num's type and hashcode
C) a string with count's type and hashcode
D) nothing since toString is not defined for Counter

Correct Answer:

verifed

Verified

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

Related Questions