SlideShare a Scribd company logo
//Ques. 14 WAP of method overriding by using abstract methods.

importjava.util.*;
class A
{
public String title;
voidgetA()
{
System.out.println("n t t Thought Of The Day");
}
}
class B extends A
{
public String title;
voidgetB()
{
getA();
System.out.println("n Try And Fail");
}
}
class C extends A
{
public String title;
voidgetC()
{

System.out.println("n But Never fail To Try");
}
}
classAdemo
{
public static void main(String arr[])
{
B b = new B();
C c = new C();
b.getB();
c.getC();
}
}

OUTPUT:-

More Related Content

PDF
Java agents are watching your ByteCode
PPTX
Cse presentation ratul
PDF
Scalability comparison: Traditional fork-join-based parallelism vs. Goroutine...
PDF
靜宜大學電腦視覺講座
ODP
C workshop day 6
DOCX
program on Function overloading in java
PPT
Oop lecture1
DOCX
java practical file index
Java agents are watching your ByteCode
Cse presentation ratul
Scalability comparison: Traditional fork-join-based parallelism vs. Goroutine...
靜宜大學電腦視覺講座
C workshop day 6
program on Function overloading in java
Oop lecture1
java practical file index

More from One97 Communications Limited (20)

DOCX
Er. Model Of Hospital Management
DOCX
Fcfs Cpu Scheduling With Gantt Chart
PPTX
Neural Interfacing
PPT
Blue eye technology
PPTX
Computer Forensics
PPTX
Protect Folders without using any Software
PPTX
Introduction to Java Programming
DOCX
WAP to invoke constructors using super keyword in java
DOCX
WAP to find out whether the number is prime or not in java
DOCX
How to achieve multiple inheritances by using interface in java
DOCX
Method overriding in java
DOCX
WAP to implement inheritance and overloading methods in java
DOCX
Program on usage of Final keyword in java
DOCX
WAP to initialize different objects with different values in java
DOCX
Conversion of data types in java
Er. Model Of Hospital Management
Fcfs Cpu Scheduling With Gantt Chart
Neural Interfacing
Blue eye technology
Computer Forensics
Protect Folders without using any Software
Introduction to Java Programming
WAP to invoke constructors using super keyword in java
WAP to find out whether the number is prime or not in java
How to achieve multiple inheritances by using interface in java
Method overriding in java
WAP to implement inheritance and overloading methods in java
Program on usage of Final keyword in java
WAP to initialize different objects with different values in java
Conversion of data types in java
Ad

Recently uploaded (20)

PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
Institutional Correction lecture only . . .
PPTX
master seminar digital applications in india
PPTX
Pharma ospi slides which help in ospi learning
PDF
Basic Mud Logging Guide for educational purpose
PDF
Sports Quiz easy sports quiz sports quiz
PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
Computing-Curriculum for Schools in Ghana
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PDF
O5-L3 Freight Transport Ops (International) V1.pdf
PDF
Classroom Observation Tools for Teachers
PPTX
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
Cell Structure & Organelles in detailed.
PDF
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
PDF
Anesthesia in Laparoscopic Surgery in India
PDF
Abdominal Access Techniques with Prof. Dr. R K Mishra
PDF
Microbial disease of the cardiovascular and lymphatic systems
human mycosis Human fungal infections are called human mycosis..pptx
O7-L3 Supply Chain Operations - ICLT Program
Institutional Correction lecture only . . .
master seminar digital applications in india
Pharma ospi slides which help in ospi learning
Basic Mud Logging Guide for educational purpose
Sports Quiz easy sports quiz sports quiz
Module 4: Burden of Disease Tutorial Slides S2 2025
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Computing-Curriculum for Schools in Ghana
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
O5-L3 Freight Transport Ops (International) V1.pdf
Classroom Observation Tools for Teachers
IMMUNITY IMMUNITY refers to protection against infection, and the immune syst...
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Cell Structure & Organelles in detailed.
Physiotherapy_for_Respiratory_and_Cardiac_Problems WEBBER.pdf
Anesthesia in Laparoscopic Surgery in India
Abdominal Access Techniques with Prof. Dr. R K Mishra
Microbial disease of the cardiovascular and lymphatic systems
Ad

Overriding abstract in java

  • 1. //Ques. 14 WAP of method overriding by using abstract methods. importjava.util.*; class A { public String title; voidgetA() { System.out.println("n t t Thought Of The Day"); } } class B extends A { public String title; voidgetB() { getA(); System.out.println("n Try And Fail"); } } class C extends A { public String title; voidgetC() { System.out.println("n But Never fail To Try"); } }
  • 2. classAdemo { public static void main(String arr[]) { B b = new B(); C c = new C(); b.getB(); c.getC(); } } OUTPUT:-