What is the difference between menuitem and checkboxmenu item?
No Answer is Posted For this Question
Be the First to Post Answer
How can you make sure that your singleton class will always return single instance in multi-threaded environment?
What is java util concurrentmodificationexception?
What is a line break?
Explain about vector, dictionary,hash table, property classes?
why constructor dont have returns type?
What is reflexive association?
11. static class A { 12. void process() throws Exception { throw new Exception(); } 13. } 14. static class B extends A { 15. void process() { System.out.println(”B”); } 16. } 17. public static void main(String[] args) { 18. new B().process(); 19. } What is the result? 1 B 2 The code runs with no output. 3 Compilation fails because of an error in line 12. 4 Compilation fails because of an error in line 15.
What is the largest data type in java?
Can we override constructors?
Write POJO class as a key to hashmap???
What is integers and example?
what is the output??????? public class multireturn { public(int assign x ( int x) { if(4==x) { return 7; } else if (7=x+3) { return 6; } return 5; } }