Given a sample code:
1 class Test {
2 public static void main(String[] args) {
3 int x = 4;
4 boolean bl1 = false;
5 boolean bl2 = true;
6 if ((x == 3) && !bl2)
7 System.out.print("hello");
8 System.out.print("hi");
9 if ((bl2 = true) && bl1)
10 System.out.print("bye");
}}
What will be the result? Choose the correct option?
(A) hello
(B) hi
(C) bye
(D) Compilation error at line no 9.
(B)