This is a debugging question I am struggle with -  The files provided in the code editor to the right contain syntax and/or logic errors. In each case, determine and fix the problem, remove all syntax and coding errors, and run the program to ensure it works properly. Code -  public class DebugMusical extends DebugPlay {    protected String composer;        DebugMusical(String title, String author, String comp)    {       composer = comp;    }    public void display()    {       System.out.println("The performance is " + title +          " by " + author + "\nThe music for " + title +          " is by " + composer);    } } ------ public class DebugPlay {    protected String title;    protected String author;    public DebugPlay(String title, String author)    {       title = title;       author = author;    }    public void display()    {       System.out.println("The performance is " + title +          " by " + author);    } } ----- // A Play has a title and author // A Musical is a Play that also has a composer public class DebugTen1 {    public static void mane(String args[])    {       DebugPlay performance1 = new           DebugPlay("Death of a Salesman", "Arthur Miller");       DebugMusical performance2 = new           DebugMusical("Guys and Dolls", "Jo Swerling", "Frank Loesser");       performance1display();       performance2display();    } }

Microsoft Visual C#
7th Edition
ISBN:9781337102100
Author:Joyce, Farrell.
Publisher:Joyce, Farrell.
Chapter8: Advanced Method Concepts
Section: Chapter Questions
Problem 8RQ
icon
Related questions
Question

This is a debugging question I am struggle with - 

The files provided in the code editor to the right contain syntax and/or logic errors. In each case, determine and fix the problem, remove all syntax and coding errors, and run the program to ensure it works properly.

Code - 

public class DebugMusical extends DebugPlay
{
   protected String composer;
   
   DebugMusical(String title, String author, String comp)
   {
      composer = comp;
   }
   public void display()
   {
      System.out.println("The performance is " + title +
         " by " + author + "\nThe music for " + title +
         " is by " + composer);
   }
}
------
public class DebugPlay
{
   protected String title;
   protected String author;

   public DebugPlay(String title, String author)
   {
      title = title;
      author = author;
   }
   public void display()
   {
      System.out.println("The performance is " + title +
         " by " + author);
   }
}
-----
// A Play has a title and author
// A Musical is a Play that also has a composer

public class DebugTen1
{
   public static void mane(String args[])
   {
      DebugPlay performance1 = new 
         DebugPlay("Death of a Salesman", "Arthur Miller");
      DebugMusical performance2 = new 
         DebugMusical("Guys and Dolls", "Jo Swerling", "Frank Loesser");
      performance1display();
      performance2display();
   }
}
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 1 images

Blurred answer
Knowledge Booster
Types of Loop
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
Microsoft Visual C#
Microsoft Visual C#
Computer Science
ISBN:
9781337102100
Author:
Joyce, Farrell.
Publisher:
Cengage Learning,