What does bitwise or mean?


No Answer is Posted For this Question
Be the First to Post Answer

Post New Answer

More Core Java Interview Questions

why we write public static void main (String args[]) in core java plz explain briefly??????????????????

3 Answers   HCL,


What is meant by controls and types?

1 Answers  


What do you mean by thread safe?

0 Answers  


Which of the classes will have more memory allocated?

0 Answers  


Given: 10. interface A { void x(); } 11. class B implements A { public void x() { } public voidy() { } } 12. class C extends B { public void x() {} } And: 20. java.util.List list = new java.util.ArrayList(); 21. list.add(new B()); 22. list.add(new C()); 23. for (A a:list) { 24. a.x(); 25. a.y();; 26. } What is the result? 1 Compilation fails because of an error in line 25. 2 The code runs with no output. 3 An exception is thrown at runtime. 4 Compilation fails because of an error in line 20.

3 Answers  






Can we catch more than one exception in single catch block?

0 Answers  


why not override thread to make a runnable? : Java thread

0 Answers  


Can you instantiate the math class?

0 Answers  


How many digits can a float hold?

0 Answers  


What is lifetime variable?

0 Answers  


If there are two notepad opened and working on it . is this a process or thread? computer based Live Example to differentiate between Thread , Process , and Multi tasking ?

3 Answers   TCS, Wipro,


What is the function of static in java?

0 Answers  


Categories