public class Result { public static void main(String args[]) { String str1 = "Interview"; String str2 = str1 + " Mania"; System.out.println(str2); } }
Interview Mania
Previous Question Next Question
Your comments will be displayed only after manual approval.