byte b; final int a = 10; final int x = a; b = x; System.out.println("The value of b is " + b);
Reveal answer
Fill a bubble to check yourself
byte b; final int a = 10; final int x = a; b = x; System.out.println("The value of b is " + b);