Big Java, Binder Ready Version: Early Objects
Big Java, Binder Ready Version: Early Objects
6th Edition
ISBN: 9781119056447
Author: Cay S. Horstmann
Publisher: WILEY
bartleby

Concept explainers

Question
Book Icon
Chapter 3.5, Problem 20SC
Program Plan Intro

Card for a car object:

Consider a “Car” class, which simulates fuel consumption in a car.

On the front side of the card, the methods that the object can execute are written. The methods for efficiency, adding gas, driving a given distance, and checking the amount of gas left in the tank that is as follows:

Car myCar

Car(mpg)

addGas(amount)

drive(distance)

getGasLeft

On the back side of the card, the values of the instance variables are noted down. After creating the objects, the values of the instance variables will be as follows:

  

gasLeftmilesPerGallon
025

Here, the initial value of “gasLeft” will be zero and the efficiency calculated in miles per gallon will be 25mpg.

Tracing the methods of Self Check 18:

The following method calls are given:

//Call the methods

Car myCar(25);

myCar.addGas(20);

myCar.drive(100);

myCar.drive(200);

myCar.addGas(5);

Cross out the old values whenever a mutator method is called, and write down the new one below.

gasLeftmilesPerGallon

0

 20

 16

8

13

25
  • Initially, the value of “gasLeft” and “milesPerGallon” was “0” and “25” respectively.
  • When the method myCar.addGas(20)is called, the value “0” is cut-off and the value of “gasLeft” will be updated to “20”.
    • It is because the addGas method adds the value of gas and thus, the gas left will be 0+20=20.
  • When the method myCar.drive(100)is called, the value “20” is cut-off and the value of “gasLeft” will be updated to “16”.
    • It is because a gas of value “4” is required to travel a distance of “100miles” and thus, the gas left will be 20-4=16.
  • When the method myCar.drive(200)is called, the value “16” is cut-off and the value of “gasLeft” will be updated to “8”.
    • It is because a gas of value “8” is required to travel a distance of “200miles” and thus, the gas left will be 16-8=8.
  • When the method myCar.addGas(5)is called, the value “8” is cut-off and the value of “gasLeft” will be updated to “13”.
    • It is because the addGas method adds the value of gas and thus, the gas left will be 8+5=13.

Instance variable added in Self Check 19:

It is given that the odometer of the car is simulated by adding a method “getMilesDriven”.

After adding the instance variables to the card, the card will be as follows:

gasLeftmilesPerGallontotalMiles
0250

The initial value of the variable “totalMiles” is assigned to zero.

Blurred answer

Chapter 3 Solutions

Big Java, Binder Ready Version: Early Objects

Ch. 3.3 - Suppose we modify the BankAccount class so that...Ch. 3.3 - Why does the following code not succeed in robbing...Ch. 3.3 - The Rectangle class has four instance variables:...Ch. 3.3 - Give a possible implementation of the translate...Ch. 3.4 - Prob. 15SCCh. 3.4 - Prob. 16SCCh. 3.5 - Consider a Car class that simulates fuel...Ch. 3.5 - Trace the following method calls: Car myCar =...Ch. 3.5 - Prob. 19SCCh. 3.5 - Prob. 20SCCh. 3.6 - Prob. 21SCCh. 3.6 - Why was it necessary to introduce the local...Ch. 3.6 - Prob. 23SCCh. 3.7 - Prob. 24SCCh. 3.7 - Prob. 25SCCh. 3.7 - Prob. 26SCCh. 3.8 - Prob. 27SCCh. 3.8 - Prob. 28SCCh. 3.8 - Prob. 29SCCh. 3 - Prob. 1RECh. 3 - Prob. 2RECh. 3 - Instance variables are a part of the hidden...Ch. 3 - Prob. 4RECh. 3 - Prob. 5RECh. 3 - Prob. 6RECh. 3 - Prob. 7RECh. 3 - Show that the BankAccount (double initialBalance)...Ch. 3 - Why does the BankAccount class not have a reset...Ch. 3 - What happens in our implementation of the...Ch. 3 - What is the this reference? Why would you use it? Ch. 3 - Prob. 12RECh. 3 - Prob. 13RECh. 3 - Prob. 14RECh. 3 - Consider the following implementation of a class...Ch. 3 - Consider the following implementation of a class...Ch. 3 - Provide a unit test class for the Counter class in...Ch. 3 - Read Exercise E3.12, but do not implement the Car...Ch. 3 - Prob. 19RECh. 3 - Prob. 20RECh. 3 - Using the object tracing technique described in...Ch. 3 - Design a modification of the BankAccount class in...Ch. 3 - Suppose you want to extend the car viewer program...Ch. 3 - Explain why the calls to the getWidth and...Ch. 3 - Prob. 25RECh. 3 - We want to add a button to the tally counter in...Ch. 3 - Simulate a tally counter that can be used to admit...Ch. 3 - Prob. 3PECh. 3 - Prob. 4PECh. 3 - Change the public interface of the circuit class...Ch. 3 - Write a BankAccountTester class whose main method...Ch. 3 - Add a method public void addInterest(double...Ch. 3 - Prob. 8PECh. 3 - Add a method printReceipt to the CashRegister...Ch. 3 - After closing time, the store manager would like...Ch. 3 - Implement a class Employee. An employee has a name...Ch. 3 - Prob. 12PECh. 3 - Implement a class Product. A product has a name...Ch. 3 - Prob. 14PECh. 3 - Prob. 15PECh. 3 - Prob. 16PECh. 3 - Prob. 17PECh. 3 - Prob. 18PECh. 3 - Prob. 19PECh. 3 - Prob. 20PECh. 3 - Prob. 21PECh. 3 - Prob. 22PECh. 3 - Write a program to plot the string “HELLO”, using...Ch. 3 - Write a program that displays the Olympic rings....Ch. 3 - Prob. 25PECh. 3 - Prob. 1PPCh. 3 - Support computing sales tax in the CashRegister...Ch. 3 - Implement a class Balloon. A balloon starts out...Ch. 3 - Prob. 4PPCh. 3 - Prob. 5PPCh. 3 - Prob. 6PPCh. 3 - Implement a class Student. For the purpose of this...Ch. 3 - Prob. 8PPCh. 3 - Write a program that draws three stars like the...Ch. 3 - Prob. 10PPCh. 3 - Implement a VotingMachine class that can be used...Ch. 3 - In this project, you will enhance the BankAccount...Ch. 3 - In this project, you will explore an...
Knowledge Booster
Background pattern image
Computer Science
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.
Recommended textbooks for you
Text book image
Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education
Text book image
Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON
Text book image
Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON
Text book image
C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON
Text book image
Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning
Text book image
Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education