public class output { public static void main(String args[]) { StringBuffer s1 = new StringBuffer("Interview"); s1.setCharAt(8,'W'); System.out.println(s1); } }
IntervieW
Previous Question Next Question
Your comments will be displayed only after manual approval.