Solved

Consider the Following Code Snippet

Question 96

Multiple Choice

Consider the following code snippet:
Int vacationDays = 10;
String output = "Number of earned vacation days is " + vacationDays;
Which of the following statements is correct?


A) The toString() method of the Object class is being used to set the value of output.
B) The toString() method of the Integer class is being used to set the value of output.
C) No toString() method is being used to set the value of output.
D) This code will not compile.

Correct Answer:

verifed

Verified

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

Related Questions