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 Learn java

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

Learn Java and try this example for your better understanding of Java and improve your skills in Java

Institution
Course

Content preview

Q)What is an implementation class?
=>Child class(sub class) of an interface is nothing but an implementation class.

=>Implementation class should implement/override all the abstract methods of the
interface.

=>An implementation class can inherit from any number of interfaces.
For eg.
interface I1{
}
interface I2{
}
class A implements I1,I2{
}
Q)Can a class inherit from more than one interface?
=>Yes.
=>But a class can inherit from only one class.
Q)Can a class inherit from a class and an interface at the same time?
=>Yes.
For eg.
interface I1{
}
interface I2{
}
class B{
}
class A extends B implements I1,I2{
}

Q)What is wrong with the following code?
interface I{
int a;
void y(){
}
protected void z();
}

Ans:- An interface can have only constants. Therefore, "a" should be initialized.
=>interface methods can’t have body.
=>"protected" modifier is not allowed for the members of an interface.

interface I{
int a=30;
void y();
public void z();
}
Q)What is wrong with the following code?
interface I{
void x();
}
class A implements I{
}

Ans:- Either declare class A abstract as x() method is not implemented in class A.
=>Or, implement x() method in class A.

Written for

Institution
Course

Document information

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

Subjects

$5.39
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

Recently viewed by you

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