Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Summary

Summary - Java

Rating
-
Sold
-
Pages
2
Uploaded on
22-09-2024
Written in
2024/2025

It provides the Java program examples practice these examples for being a good Java programmer

Institution
Course

Content preview

Inheritance

Q)What is inheritance?
=>Inheritance is one of the three object oriented features.
=>Acquiring features from the existing entities is nothing but inheritance.
=>Inheritance is a mechanism of creating new classes from the already existing
classes using is-a relationship.
=>Already existing classes are known as parent classes(Super classes).
=>Newly created classes are known as child classes(Sub classess).
=>Sub classes inherit properties and behaviour from the super classes. I.e. Sub classes inherit instance
variables and instance methods from the super classes.
=>Inheritance fecilitates code reusability.

Q)What is the syntax to create a sub class?

class <sub class name> extends <super class name>{
}

For eg.
class Vehicle{
}//super class
class Car extends Vehicle{
}//super class

=>In the above example, Vehicle is the super class(parent class) and Car is the
sub class(child class).

=>Car class inherits all the properties and behaviour from the super class Vehicle.

Q)What is the output of the following Program?
class Vehicle{
protected void move() {
System.out.println("Vehicle is moving");
}
}
class Car{
}
class InheritanceApplication{
public static void main(String args[]) {
Car c=new Car();
c.move();
}
}

Ans:- The above program causes compilation error.
=>without defining move() method in Car class, main method is calling
move() method on the Car class object.

Q)What is the output of the folloing program?
class Vehicle{
protected void move() {
System.out.println("Vehicle is moving");
}
}
class Car extends Vehicle{

Written for

Institution
Course

Document information

Uploaded on
September 22, 2024
Number of pages
2
Written in
2024/2025
Type
SUMMARY

Subjects

$3.49
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller
Seller avatar
saiteja4

Get to know the seller

Seller avatar
saiteja4 Swami Vivekanand institution
Follow You need to be logged in order to follow users or courses
Sold
-
Member since
1 year
Number of followers
0
Documents
10
Last sold
-

0.0

0 reviews

5
0
4
0
3
0
2
0
1
0

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions