StringBuffer s = new StringBuffer(“Welcome To Java”); s.delete(8,12);
What will be the output of the given code segment?
Reveal answer
Fill a bubble to check yourself
StringBuffer s = new StringBuffer(“Welcome To Java”); s.delete(8,12);
What will be the output of the given code segment?