What will be the output of the following code? class Data { public static void main(String arg[]) { int i=12345; String str=”hello”; str=String.valueOf(i); System.out.println(str); } }
Reveal answer
Fill a bubble to check yourself
What will be the output of the following code? class Data { public static void main(String arg[]) { int i=12345; String str=”hello”; str=String.valueOf(i); System.out.println(str); } }