Java 6 online test, online practice test, exam, quiz

Java 6 Online Test

The purpose of this online test is to help you evaluate your Java 6 knowledge yourself. These Multiple Choice Questions (MCQs) on Java 6 will prepare you for technical round of job interview, written test and many certification exams.

The test contains 20 questions and there is no time limit. You will get 1 point for each correct answer. You will get your online test score after finishing the complete test.
(Total 20 questions)        (Time spent 0:0)

1. What will be the output of the program?

class Bitwise
{
public static void main(String [] args)
{
int x = 11 & 9;
int y = x ^ 3;
System.out.println( y | 12 );
}
}

   View Test Answer
Advertisement