Answer the following questions: (6* 5= 30 marks) 1. Add the following method to Publication Class, explain what should be changed in the code? And Why? public abtract void Hella(); 2. Consider the test class below: What is the type of binding used in Line 6?

EBK JAVA PROGRAMMING
9th Edition
ISBN:9781337671385
Author:FARRELL
Publisher:FARRELL
Chapter11: Advanced Inheritance Concepts
Section: Chapter Questions
Problem 2GZ
icon
Related questions
Question
Consider the following classes:
D "ResearchArea java 3
D"loumaljava
public class Journal extends Publication {
2 public enum ResearchArea {
3 TECHNOLOGY, BUSINESS, HEALTH, PSYCHOLOGY
4 }
private int volume;
private int issue;
4
D "Publicationjava 13
6
public int getVolume () {
return volume;
1
7-
2 public abstract class Publication {
8
3
public void setvolume (int volume) {
this.volume = volume;
}
public int getIssue() {
return issue;
}
10
protected int year;
protected String name;
protected ResearchArea area;
protected double price;
5
11
12
13
14
15
public Publication(int year, String name, ResearchArea area) {
this.year = year;
this.name = name;
this.area = area;
9
10
11
12
13
14
15
16
17
18
19
20
21-
22
23
24 }
16
17-
public void setIssue(int issue) {
this.issue = issue;
18
19
20
public double price() {
public Publication() {
this(2022, "Ahlia", ResearchArea. TECHNOLOGY);
21
return 50;
22
public void display (String name, int year) {
System.out.printf("%s %d", super.name, super.year);
23
24
25
public abstract double price();
public void display (String name) {
System.out.printf("%s", super.name);
26
public void message() {
System.out.printin("This publication belongs to Ahlia University");
27
28
29 }
30
25
31
Answer the following questions: (6* 5= 30 marks)
1. Add the following method to Publication Class, explain what should be changed in the code?
And Why?
public abtract void Hello();
2. Consider the test class below: What is the type of binding used in Line 6?
1
2 public class Test {
3
public static void main(String[] args) {
Journal j1= new Journal ();
System.out.println(j1.price ( ));
5
7
8
}
9.
10 }
Transcribed Image Text:Consider the following classes: D "ResearchArea java 3 D"loumaljava public class Journal extends Publication { 2 public enum ResearchArea { 3 TECHNOLOGY, BUSINESS, HEALTH, PSYCHOLOGY 4 } private int volume; private int issue; 4 D "Publicationjava 13 6 public int getVolume () { return volume; 1 7- 2 public abstract class Publication { 8 3 public void setvolume (int volume) { this.volume = volume; } public int getIssue() { return issue; } 10 protected int year; protected String name; protected ResearchArea area; protected double price; 5 11 12 13 14 15 public Publication(int year, String name, ResearchArea area) { this.year = year; this.name = name; this.area = area; 9 10 11 12 13 14 15 16 17 18 19 20 21- 22 23 24 } 16 17- public void setIssue(int issue) { this.issue = issue; 18 19 20 public double price() { public Publication() { this(2022, "Ahlia", ResearchArea. TECHNOLOGY); 21 return 50; 22 public void display (String name, int year) { System.out.printf("%s %d", super.name, super.year); 23 24 25 public abstract double price(); public void display (String name) { System.out.printf("%s", super.name); 26 public void message() { System.out.printin("This publication belongs to Ahlia University"); 27 28 29 } 30 25 31 Answer the following questions: (6* 5= 30 marks) 1. Add the following method to Publication Class, explain what should be changed in the code? And Why? public abtract void Hello(); 2. Consider the test class below: What is the type of binding used in Line 6? 1 2 public class Test { 3 public static void main(String[] args) { Journal j1= new Journal (); System.out.println(j1.price ( )); 5 7 8 } 9. 10 }
Expert Solution
steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
void method
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
EBK JAVA PROGRAMMING
EBK JAVA PROGRAMMING
Computer Science
ISBN:
9781337671385
Author:
FARRELL
Publisher:
CENGAGE LEARNING - CONSIGNMENT