+91-85006-22255
What will be the output of the following program?
public class Triangle { public static void main(String args[]) { StringBuffer s = new StringBuffer("output of the following program?"); s.insert(15, "two"); System.out.println(s); }}
Topic: Java StringBuffer insert() Method With Example
Read this topic Take test on this topic
Open In App