What is the string contained in s after following lines of Java code?
StringBuffer s new StringBuffer("Hello");s.deleteCharAt(0);
StringBuffer s new StringBuffer("Hello");s.deleteCharAt(0);What is the string contained in s after following lines of Java code?
StringBuffer s new StringBuffer("Hello");s.deleteCharAt(0); Correct Answer ello