How many bits is a 64 bit byte?
No Answer is Posted For this Question
Be the First to Post Answer
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.
How do you find the absolute value?
How to validate the request (Eg:user name and password) in session(http session)? not in LDAP server ?
What do you mean by a JVM?
What does a boolean method return?
When should the method invokelater() be used?
What is jrmp?
please tell me what is wrapper class in java with example ?
In collection sorting comparable and comparator interface will be used..but why this two interfaces required..two will work same purpose so why there are two interfaces instead of one?when to use comparator and when to use comparable?
What is the difference between delete and delete[]
What is static in java?
What is bubble sorting in java?