Page 1 of 1

What will the following code print out when it is run! 'i', 'o', 'u'}; char[] letters1 = {'a', 'e' char letters2 = {'v',

Posted: Sun Jul 10, 2022 11:30 am
by answerhappygod
What Will The Following Code Print Out When It Is Run I O U Char Letters1 A E Char Letters2 V 1
What Will The Following Code Print Out When It Is Run I O U Char Letters1 A E Char Letters2 V 1 (45.44 KiB) Viewed 29 times
What will the following code print out when it is run! 'i', 'o', 'u'}; char[] letters1 = {'a', 'e' char letters2 = {'v', 'o', 'w', 'e', '1'}; letters1 = letters2; letters2 = letters1; System.out.print(letters1); System.out.print(" "); System.out.print(letters2); O aeiou vowel O vowel aeiou O aeiou aeiou O vowel vowel