The quiz contains 11 questions and there is no time limit. You can get between 1 and 3 points for answering the questions correctly. At the end of the quiz, you'll receive a total score. You can compare yourself with other users via the leaderboard. If you achieve more than 70% you will be rewarded with a certificate. Good luck!
Test your understanding of inheritance and polymorphism: - Single inheritance - Multilevel inheritance - Hierarchical inheritance - Static polymorphism - Dynamic polymorphism
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
0 of 11 Questions completed
Questions:
You have already completed the quiz before. Hence you can not start it again.
Quiz is loading…
You must sign in or sign up to start the quiz.
You must first complete the following:
0 of 11 Questions answered correctly
Your time:
Time has elapsed
You have reached 0 of 0 point(s), (0)
Earned Point(s): 0 of 0, (0)
0 Essay(s) Pending (Possible Point(s): 0)
Average score |
|
Your score |
|
Pos. | Name | Entered on | Points | Result |
---|---|---|---|---|
Table is loading | ||||
No data available | ||||
What is the output?
class Animal {
public void printAnimal() {
System.out.println("This is an Animal");
}
};
class Dog extends Animal {
public void printDog() {
System.out.println("This is a Dog");
}
};
class SingleInheritanceQuiz {
public static void main(String[] args) {
Dog obj = new Dog();
obj.printDog();
}
}
What is the output?
class Animal {
public void printAnimal() {
System.out.println("This is an Animal");
}
};
class Dog extends Animal {
public void printDog() {
System.out.println("This is a Dog");
}
};
class SingleInheritanceQuiz {
public static void main(String[] args) {
Dog obj = new Dog();
obj.printAnimal();
}
}
What is the output?
class Animal {
public void printAnimal() {
System.out.println("This is an Animal");
}
};
class Dog extends Animal {
public void printDog() {
System.out.println("This is a Dog");
}
};
class SingleInheritanceQuiz {
public static void main(String[] args) {
Animal obj = new Animal();
obj.printDog();
}
}
What is the output?
class Animal {
public void printAnimal() {
System.out.println("This is an Animal");
}
};
class Dog extends Animal {
public void printDog() {
System.out.println("This is a Dog");
}
};
class Cat extends Dog {
public void printCat() {
System.out.println("This is a Cat");
}
};
class MultilevelInheritanceQuiz {
public static void main(String[] args) {
Cat obj = new Cat();
obj.printAnimal();
}
}
What is the output?
class Animal {
public void printAnimal() {
System.out.println("This is an Animal");
}
};
class Dog extends Animal {
public void printDog() {
System.out.println("This is a Dog");
}
};
class Cat extends Dog {
public void printCat() {
System.out.println("This is a Cat");
}
};
class MultilevelInheritanceQuiz {
public static void main(String[] args) {
Dog obj = new Cat();
obj.printCat();
}
}
What is the output?
class Animal {
public void printAnimal() {
System.out.println("This is an Animal");
}
};
class Dog extends Animal {
public void printDog() {
System.out.println("This is a Dog");
}
};
class Cat extends Animal {
public void printCat() {
System.out.println("This is a Cat");
}
};
class helloworld {
public static void main(String[] args) {
Dog obj = new Cat();
obj.printCat();
}
}
What is the output?
class Animal {
public void printAnimal() {
System.out.println("This is an Animal");
}
};
class Dog extends Animal {
public void printDog() {
System.out.println("This is a Dog");
}
};
class Cat extends Animal {
public void printCat() {
System.out.println("This is a Cat");
}
};
class helloworld {
public static void main(String[] args) {
Dog obj1 = new Dog();
Cat obj = new Cat();
obj.printAnimal();
obj1.printDog();
}
}
What is the output?
class StaticPolymorphism {
void sum(int a, int b) {
System.out.println(a + b);
}
void sum(double a, double b, double c) {
System.out.println(a + b + c);
}
public static void main(String[] args) {
StaticPolymorphism obj = new StaticPolymorphism();
obj.sum(1, 2, 3);
obj.sum(1.5, 2.5);
}
}
What is the output?
void sum(int a, int b) {
System.out.println(a + b);
}
void sum(double a, double b, double c) {
System.out.println(a + b + c);
}
public static void main(String[] args) {
helloworld obj = new helloworld();
obj.sum(1.5, 2.5, 3.5);
obj.sum(1, 2);
}
Is the output the same for a
and c
class A {
void print() {
System.out.println("overridden method");
}
}
class B extends A {
void print() {
System.out.println("overriding method1");
}
}
class C extends A {
void print() {
System.out.println("overriding method2");
}
}
public class helloworld {
public static void main(String[] args) {
A a = new C();
C c = new C();
a.print();
c.print();
}
}
Wat is the output for a
?
class A {
void print() {
System.out.println("overridden method");
}
}
class B extends A {
void print() {
System.out.println("overriding method1");
}
}
class C extends A {
void print() {
System.out.println("overriding method2");
}
}
public class helloworld {
public static void main(String[] args) {
A a = new B();
a.print();
}
}
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checkbox-advertisement | 1 year | Set by the GDPR Cookie Consent plugin, this cookie is used to record the user consent for the cookies in the "Advertisement" category . |
cookielawinfo-checkbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checkbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
CookieLawInfoConsent | 1 year | Records the default button state of the corresponding category & the status of CCPA. It works only in coordination with the primary cookie. |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |
Cookie | Duration | Description |
---|---|---|
_gat | 1 minute | This cookie is installed by Google Universal Analytics to restrain request rate and thus limit the collection of data on high traffic sites. |
Cookie | Duration | Description |
---|---|---|
_ga | 2 years | The _ga cookie, installed by Google Analytics, calculates visitor, session and campaign data and also keeps track of site usage for the site's analytics report. The cookie stores information anonymously and assigns a randomly generated number to recognize unique visitors. |
_gid | 1 day | Installed by Google Analytics, _gid cookie stores information on how visitors use a website, while also creating an analytics report of the website's performance. Some of the data that are collected include the number of visitors, their source, and the pages they visit anonymously. |
tk_lr | 1 year | The tk_lr is a referral cookie set by the JetPack plugin on sites using WooCommerce, which analyzes referrer behaviour for Jetpack. |
tk_or | 5 years | The tk_or is a referral cookie set by the JetPack plugin on sites using WooCommerce, which analyzes referrer behaviour for Jetpack. |
tk_r3d | 3 days | JetPack installs this cookie to collect internal metrics for user activity and in turn improve user experience. |
tk_tc | session | JetPack sets this cookie to record details on how user's use the website. |
Cookie | Duration | Description |
---|---|---|
m | 2 years | No description available. |