Podcast
Questions and Answers
The process by which one object can acquire the properties of another object:
The process by which one object can acquire the properties of another object:
Constructors are used to:
Constructors are used to:
An object that has more than one form is referred to as:
An object that has more than one form is referred to as:
Information Hiding can also be termed as:
Information Hiding can also be termed as:
Signup and view all the answers
Main method can be overridden:
Main method can be overridden:
Signup and view all the answers
The keyword that is used to access the method or member variables from the superclass:
The keyword that is used to access the method or member variables from the superclass:
Signup and view all the answers
When sub class declares a method that has the same type of arguments as a method declared by one of its superclasses, it is termed as:
When sub class declares a method that has the same type of arguments as a method declared by one of its superclasses, it is termed as:
Signup and view all the answers
What is the difference between method overloading and method overriding in Java?
What is the difference between method overloading and method overriding in Java?
Signup and view all the answers
Which is not a feature of OOP in general definitions?
Which is not a feature of OOP in general definitions?
Signup and view all the answers
Which feature of OOP indicates code reusability?
Which feature of OOP indicates code reusability?
Signup and view all the answers
Which of the following is not true about polymorphism?
Which of the following is not true about polymorphism?
Signup and view all the answers
What does CSS stand for?
What does CSS stand for?
Signup and view all the answers
Website: A collection of _________________________ web pages on the World Wide Web
Website: A collection of _________________________ web pages on the World Wide Web
Signup and view all the answers
In computer science a language used to create web pages is...
In computer science a language used to create web pages is...
Signup and view all the answers
Fill in the blank: HTML Hypertext ________________ Language
Fill in the blank: HTML Hypertext ________________ Language
Signup and view all the answers
What does a hyperlink do?
What does a hyperlink do?
Signup and view all the answers
What is the primary focus of abstraction in Java?
What is the primary focus of abstraction in Java?
Signup and view all the answers
In Java, what does abstraction aim to hide?
In Java, what does abstraction aim to hide?
Signup and view all the answers
What aspect of Java does abstraction emphasize?
What aspect of Java does abstraction emphasize?
Signup and view all the answers
Which keyword is used to define a class in Java that cannot be instantiated and can only be used as a base for other classes?
Which keyword is used to define a class in Java that cannot be instantiated and can only be used as a base for other classes?
Signup and view all the answers
What is the term for the process of wrapping the data members and methods into a single unit known as a class?
What is the term for the process of wrapping the data members and methods into a single unit known as a class?
Signup and view all the answers
What is the access modifier that restricts the access to the members within the same class?
What is the access modifier that restricts the access to the members within the same class?
Signup and view all the answers