Friday, February 18, 2011

if else program in java


If else conditional statement objective type questions in java


(1)



public class ControlStatement {

public static void main(String[] args) {

int a=25;



if(~a>25)

a++;

a+=a;



System.out.print(a);

}

}



What will be the output of above java program?



(a)-52

(b)50

(c)52

(d)Compiler error


No comments:

Post a Comment