#includestdio.hint main(){int arr[] = {12, 14, 15, 23, 45};printf("%u, %u\n", arr, &arr);return 0;}
class Test{public static void main(String [] args){Test p = new Test();p.start();}void start(){boolean b1 = false;boolean b2 = fix(b1);System.out.println(b1 + " " + b2);}boolean fix(boolean b1){b1 = true;return b1;}}
What will be the output of the following Java code?class String_demo{public static void main(String args[]){char chars[] = {'a', 'b', 'c'};String s = new String(chars);System.out.println(s);}}