What will this code output?
if(true && true && false)
{
System.out.println("Hello Karel");
}
if(true && 4 == 2 + 2)
{
System.out.println("Second if statement!");
}
1) Hello Karel
2) Hello Karel
Second if statement!
3) This program will print nothing
4) Second if statement!