Please describe the scope for the following variables: The num variable in the Beverage2 class The price variable in the Beverage2 class The shots variable in the Espresso class The b variable in the TestBeverage2 class The j variable in the TestBeverage2 class

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Assume that all source files are in the same package. Note that some lines may wrap, but are still considered on one line.

Examine the code below. Recall that variables have four kinds of scope: static, instance, local, and block. For each variable listed below, identify its scope (static, instance, local, or block) and describe the scope using complete sentences. An example description is provided, after the code listing, for the ounces variable in the Beverage2 class.

Please describe the scope for the following variables:

  1. The num variable in the Beverage2 class
  2. The price variable in the Beverage2 class
  3. The shots variable in the Espresso class
  4. The b variable in the TestBeverage2 class
  5. The j variable in the TestBeverage2 class

 

public abstract class Beverage2 {

       private static int num;

       private int ounces;

       private double price;

       protected Beverage2(int ounces, double price) {

              this.ounces = ounces;

              this.price = price;

              num++;

       }

       public int getOunces() { return ounces; }

       public double getPrice() { return price; }

       public static int getNum() { return num; }

       public abstract String drink();

}

public class Espresso extends Beverage2 {

       private int shots;

       protected Espresso (int ounces, double price, int shots) {

              super(ounces, price);

              this.shots = shots;

       }

       public int getShots() { return shots; }

       public String drink() {

              return "The espresso is strong.";

       }

}

public class TestBeverage2 {

       public static void main(String[] args) {

              Espresso b;

              for (int j = 0; j < 3; j++) {

                     b = new Espresso(2, 2.49, j + 1);

                     System.out.print("Drink #" + Beverage2.getNum() + ": ");

                     System.out.println("Espresso with " + b.getShots() + " shot(s)");

              }

              System.out.println("\nYou ordered " + Beverage2.getNum() + " drinks.");

       }

}

 

Example description of scope for the ounces variable in the Beverage2 class: The ounces variable in the Beverage2 class is an instance variable of Beverage2, and therefore has instance variable scope. Whenever a Beverage2 object is instantiated, it has an ounces variable that lives as long as that Beverage2 object exists.

Expert Solution
Step 1

The solution is given below with proper explaantion

Happy to help you ?

steps

Step by step

Solved in 2 steps

Blurred answer
Knowledge Booster
ADT and Class
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-engineering and related others by exploring similar questions and additional content below.
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
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 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)
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
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY