__________________ is the string contained in s after following lines of code? StringBuffer s = new StringBuffer(Hello); s.deleteCharAt(0);
Answer options
A
llo
B
hell
C
Hel
D
ello
Correct answer: llo
Explanation
Quick AnswerThe correct answer is llo because it directly addresses the core logic of Java Programming.
Correct answer: llo.