What will be the output when you compile and run the program? Explain your answers.

class Example{
public static void main(String args[]){
byte b1=10,b2=20,b3;
b3=b1+b2; //Line 1
b3=b1+1;...