What will be the output??
int i=10; if(i==50) System.out.println("i is fifty"); else System.out.println("i is not fifty");
i is fifty
i is not fifty
Logical Error
Syntax Error