Solved

StringBuilder Greeting = New StringBuilder("Hello, John");

Question 67

Essay

StringBuilder greeting = new StringBuilder("Hello, John");
char initial = greeting.charAt(7);​
Using the above code and the charAt() method, what value will be assigned to the variable initial ?

Correct Answer:

verifed

Verified

The charAt() method will retur...

View Answer

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

Related Questions