
Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN: 9780133594140
Author: James Kurose, Keith Ross
Publisher: PEARSON
expand_more
expand_more
format_list_bulleted
Question
![1) Predict the output of the following code:
public class MyClass extends Test
public static void main(String[] args) {
MyClass x = new MyClass ();
Test y = new MyClass();
System.out.println(x.num() +
}
+ y.num());
public static int num() {
return 2;
}
}
class Test
{
public static int num() {
return 5;
}
}
a. Runtime error
b. 22
c. 2 5
d. Compilation error](https://content.bartleby.com/qna-images/question/0ef0a6eb-8bef-4dc0-92aa-463ffc1f3f73/c0dfa00c-c2b9-48db-ae60-ff48645d7ce4/wta4v5j_thumbnail.jpeg)
Transcribed Image Text:1) Predict the output of the following code:
public class MyClass extends Test
public static void main(String[] args) {
MyClass x = new MyClass ();
Test y = new MyClass();
System.out.println(x.num() +
}
+ y.num());
public static int num() {
return 2;
}
}
class Test
{
public static int num() {
return 5;
}
}
a. Runtime error
b. 22
c. 2 5
d. Compilation error
Expert Solution

This question has been solved!
Explore an expertly crafted, step-by-step solution for a thorough understanding of key concepts.
This is a popular solution
Trending nowThis is a popular solution!
Step by stepSolved in 4 steps with 1 images

Knowledge Booster
Similar questions
- What is the output? public static void main(String[] args) { new ChildClass(); } } class ParentClass { public static int a=3; public ParentClass() { System.out.print(a); } public ParentClass(int i) { this(); System.out.print(i); //notice the ln is missing } } class ChildClass extends ParentClass { public ChildClass(int i) { super(5+i); System.out.print(i); //notice the ln is missing } public ChildClass() { this(3); System.out.print(3); //notice the ln is missing } }arrow_forwardpublic class OfferedCourse extends Course { // TODO: Declare private fields // TODO: Define mutator methods - // setInstructorName(), setLocation(), setClassTime() // TODO: Define accessor methods - // getInstructorName(), getLocation(), getClassTime() } import java.util.Scanner; public class CourseInformation { public static void main(String[] args) { Scanner scnr = new Scanner(System.in); Course myCourse = new Course(); OfferedCourse myOfferedCourse = new OfferedCourse(); String courseNumber, courseTitle; String oCourseNumber, oCourseTitle, instructorName, location, classTime; courseNumber = scnr.nextLine(); courseTitle = scnr.nextLine(); oCourseNumber = scnr.nextLine(); oCourseTitle = scnr.nextLine(); instructorName = scnr.nextLine(); location = scnr.nextLine(); classTime = scnr.nextLine(); myCourse.setCourseNumber(courseNumber); myCourse.setCourseTitle(courseTitle);…arrow_forwardc) Draw a UML Diagram for the following source code. (CLO1, CLO2) public class MyCircle { double MyRadius= 0.0; MyCircle() { } MyÇircle(double newRadius) { MyRadius = newRadius; } double getArea() { return MyRadius * MyRadius * 3.14159;} public static void main(String[] args) { MyCircle C1 = new MyCircle(); C1 MyRadius = 2.0; MyCircle C2 = new MyCircle(); C2.MyRadius = 4.0; System.out.println(C1.getArea()); System.out println(C2,getArea(); } }arrow_forward
- Please give me the solutionarrow_forwardwhat is the output? public class practice { public static void main(String[] args) { new ChildClass(5).tryThis(4); } } class ParentClass { public ParentClass(int i) { System.out.print(i); //notice the ln is missing } } class ChildClass extends ParentClass { int a; public ChildClass(int a) { super(a + 3); this.a = a; } public void tryThis(int a) { System.out.print(a); } }arrow_forwardGiven the following class definition,public class Pen{ private String name; public Pen(String n) { name = n; } @Override public String toString() { return this.name + "-"; }}public class Brush extends Pen{ private int ink; public Brush(String n, int m) { super(n); ink = m; } @Override public String toString() { return super.toString() + this.ink + "-"; }}What is the output of the following program? Brush fluffy = new Brush("Fluffy", 5); System.out.print(fluffy);If there is no output, please specify "nothing" (no quotes) in the blank for the output. No hand written and fast answer with explanationarrow_forward
- Instructions-Java Assignment is to define a class named Address. The Address class will have three private instance variables: an int named street_number a String named street_name and a String named state. Write three constructors for the Address class: an empty constructor (no input parameters) that initializes the three instance variables with default values of your choice, a constructor that takes the street values as input but defaults the state to "Arizona", and a constructor that takes all three pieces of information as input Next create a driver class named Main.java. Put public static void main here and test out your class by creating three instances of Address, one using each of the constructors. You can choose the particular address values that are used. I recommend you make them up and do not use actual addresses. Run your code to make sure it works. Next add the following public methods to the Address class and test them from main as you go: Write getters and…arrow_forwardPlease help debug this: Debugging Exercise 4-3, Farrell, Joyce, Java Programming, 9th edition, Cengage Learning public class DebugBox { private int width; private int length; private int height; private FixDebugBox() { length = 1; width = 1; height = 1; } public DebugBox(int width, int length, int height) { width = width; length = length; height = height; } public void showData() { System.out.println("Width: " + width + " Length: " + length + " Height: " + height); } public double getVolume() { double vol = length - width - height; return vol; } }arrow_forwardThe following is in Java: public class MyClass { private int x; private double y; public static void setValues(int a, double b) { x = a; y = b; } } 1) What is the problem? 2) In a few sentences how can the issue be fixed?arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- Computer Networking: A Top-Down Approach (7th Edi...Computer EngineeringISBN:9780133594140Author:James Kurose, Keith RossPublisher:PEARSONComputer Organization and Design MIPS Edition, Fi...Computer EngineeringISBN:9780124077263Author:David A. Patterson, John L. HennessyPublisher:Elsevier ScienceNetwork+ Guide to Networks (MindTap Course List)Computer EngineeringISBN:9781337569330Author:Jill West, Tamara Dean, Jean AndrewsPublisher:Cengage Learning
- Concepts of Database ManagementComputer EngineeringISBN:9781337093422Author:Joy L. Starks, Philip J. Pratt, Mary Z. LastPublisher:Cengage LearningPrelude to ProgrammingComputer EngineeringISBN:9780133750423Author:VENIT, StewartPublisher:Pearson EducationSc Business Data Communications and Networking, T...Computer EngineeringISBN:9781119368830Author:FITZGERALDPublisher:WILEY

Computer Networking: A Top-Down Approach (7th Edi...
Computer Engineering
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:PEARSON

Computer Organization and Design MIPS Edition, Fi...
Computer Engineering
ISBN:9780124077263
Author:David A. Patterson, John L. Hennessy
Publisher:Elsevier Science

Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:9781337569330
Author:Jill West, Tamara Dean, Jean Andrews
Publisher:Cengage Learning

Concepts of Database Management
Computer Engineering
ISBN:9781337093422
Author:Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:Cengage Learning

Prelude to Programming
Computer Engineering
ISBN:9780133750423
Author:VENIT, Stewart
Publisher:Pearson Education

Sc Business Data Communications and Networking, T...
Computer Engineering
ISBN:9781119368830
Author:FITZGERALD
Publisher:WILEY