Page 1 of 1

2. Given the code: int a = 3; int b = 15; while (a < b) { System.out.println("Hello"); } a = a + 2; b = b = 2; How many

Posted: Fri Jul 01, 2022 5:42 am
by answerhappygod
2 Given The Code Int A 3 Int B 15 While A B System Out Println Hello A A 2 B B 2 How Many 1
2 Given The Code Int A 3 Int B 15 While A B System Out Println Hello A A 2 B B 2 How Many 1 (9.79 KiB) Viewed 29 times
2. Given the code: int a = 3; int b = 15; while (a < b) { System.out.println("Hello"); } a = a + 2; b = b = 2; How many times is "Hello" printed? B. 2 A. 1 C. 3 D. 4