What will be printed?
int income = 30; boolean condition1 = true, condition2 = true; if(income < 100) if(income > 10) if(condition1){ System.out.print("A"); if(income < 20) System.out.print("B"); } else System.out.print("C"); if(!condition2){ if(income > 50) System.out.print("D"); } else{ System.out.print("E"); }
There are no hints for this question