Core Java objective type questions with answers and explanation (MCQs) for job interview and placement tests. This Core Java online test is useful for beginners, freshers, experienced java developers, lecturers preparing for GATE, job interview, universi
The Online Java Test by Mercer | Mettl has been designed to help recruiters evaluate candidates' knowledge and proficiency in Java.
14. Java doesn't support multiple inheritance. Why? Java doesn’t support multiple inheritance because we cannot use different methods in one class; it creates an ambiguity. Example:class Intellipaat1 { void test() { system.out.println("test() method"); } }class Intellipaat2 { void test...