

Java Abstraction and Exception
Presentation
•
Computers, Science
•
University
•
Practice Problem
•
Hard
Nishadi Ariyasinghe
Used 59+ times
FREE Resource
8 Slides • 6 Questions
1
Java Abstraction
G.N.P.Ariysinghe

2
Multiple Select
Which of the following can be used to achieve Abstraction? (Select all which is appropriate)
Abstract classes
Constructors
Interfaces
Enums
3
Abstract Classes and Methods
Data abstraction is the process of hiding certain details and showing only essential information to the user.
Abstract class: is a restricted class that cannot be used to create objects (to access it, it must be inherited from another class).
Abstract method: can only be used in an abstract class, and it does not have a body. The body is provided by the subclass (inherited from).
An abstract class can have both abstract and regular methods
4
Multiple Choice
abstract class Animal {
public abstract void animalSound();
public void sleep() {
System.out.println("Zzz");}}
What will be the output of the following code?
Animal myObj = new Animal();
Zzz
An error
myObj
animalSound
5
An error will be generated.
To access the abstract class, it must be inherited from another class.
6
Example
abstract class Animal {
public abstract void animalSound(); // Abstract method (does not have a body)
public void sleep() { // Regular method
System.out.println("Zzz");
}
}
class Pig extends Animal {
public void animalSound() {
System.out.println("The pig says: wee wee"); // The body of animalSound() is provided here
}
}
class Main {
public static void main(String[] args) {
Pig myPig = new Pig(); // Create a Pig object
myPig.animalSound();
myPig.sleep();
}
}
7
Multiple Choice
Which of these keywords are used to define an abstract class?
abst
abstract class
abstract
Abstract
8
Multiple Choice
If a class inheriting an abstract class does not define all of its function then it will be known as?
A simple class
A Static class
Abstract class
None of the mentioned
9
Any subclass of an abstract class must either implement all of the abstract method in the superclass or be itself declared abstract.
10
Multiple Choice
Which of these is not a correct statement?
Every class containing abstract method must be declared abstract
Abstract class defines only the structure of the class not its implementation
Abstract class can be initiated by new operator
Abstract class can be inherited
11
Abstract class cannot be directly initiated with new operator, Since abstract class does not contain any definition of implementation it is not possible to create an abstract object.
12
Multiple Choice
Which of these packages contains abstract keyword?
java.lang
java.util
java.io
java.system
13
class A {
public int i;
private int j;
}
class B extends A {
void display() {
super.j = super.i + 1;
System.out.println(super.i + " " + super.j);
}
}
class inheritance {
public static void main(String args[]) {
B obj = new B(); obj.i=1; obj.j=2; obj.display();
}
}
14
Class contains a private member variable j, this cannot be inherited by subclass B and does not have access to it.
$ javac inheritance.java
Exception in thread "main" java.lang.Error:
Unresolved compilation problem:
The field A.j is not visible
Java Abstraction
G.N.P.Ariysinghe

Show answer
Auto Play
Slide 1 / 14
SLIDE
Similar Resources on Wayground
8 questions
Training
Presentation
•
University
12 questions
All About Animals
Presentation
•
KG
13 questions
Wildlife Animals
Presentation
•
KG - University
11 questions
Vocabulary: Animal Rescue
Presentation
•
KG - Professional Dev...
8 questions
PRACTICAL RESEARCH
Presentation
•
12th Grade - University
10 questions
Ethics: Introduction
Presentation
•
University
12 questions
MAC 2_Lesson 8_Listening
Presentation
•
Professional Development
11 questions
Unit 1 B
Presentation
•
University
Popular Resources on Wayground
6 questions
Secondary Safety Quiz
Presentation
•
9th - 12th Grade
10 questions
MyPath Diagnostic Overview
Presentation
•
6th - 8th Grade
20 questions
Lab Safety Quiz
Quiz
•
6th Grade
21 questions
Continents and Oceans
Quiz
•
6th Grade
20 questions
Adding and Subtracting Decimals
Quiz
•
5th Grade
20 questions
Parts of Speech
Quiz
•
5th Grade
16 questions
Subject & Predicate
Quiz
•
5th Grade
21 questions
Lab Safety
Quiz
•
10th Grade
Discover more resources for Computers
20 questions
Disney Trivia
Quiz
•
University
20 questions
Brand Trivia
Quiz
•
9th Grade - University
10 questions
Would you rather...
Quiz
•
KG - University
21 questions
Mapa países hispanohablantes
Quiz
•
1st Grade - University
10 questions
Spanish Greetings and Goodbyes!
Presentation
•
6th Grade - University
12 questions
CE 2b Early Documents Review
Quiz
•
7th Grade - University
30 questions
Multiplying and Dividing Integers
Quiz
•
6th Grade - University
13 questions
Back to School
Quiz
•
KG - University