
Concept explainers
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:
gasLeft | milesPerGallon |
0 | 25 |
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.
gasLeft | milesPerGallon |
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:
gasLeft | milesPerGallon | totalMiles |
0 | 25 | 0 |
The initial value of the variable “totalMiles” is assigned to zero.

Want to see the full answer?
Check out a sample textbook solution
Chapter 3 Solutions
Big Java, Binder Ready Version: Early Objects
- Write the following in C# WinForms. Implement a function in the main menu that makes the poacher move to random directions. The movement should seem seamless. The poacher can be drew by the following in the main menu. e.Graphics.DrawImage(poacherImage, poacher.X, poacherY, tileSize, tileSize);arrow_forwardWrite the following in C# WinForms. Create a poacher class that has random x and y values when created, private set function for x and y values. Implement a function in the main menu that makes the poacher move into random direction. The movement should seem seamless. The poacher can be drew by the following in the main menu. e.Graphics.DrawImage(poacherImage, poacher.X, poacherY, tileSize, tileSize); Write the following in C# WinForms. Create a poacher class that has random x and y values when created, private set function for x and y values. Implement a function in the main menu that makes the poacher move into random direction. The movement should seem seamless. The poacher can be drew by the following in the main menu. e.Graphics.DrawImage(poacherImage, poacher.X, poacherY, tileSize, tileSize);arrow_forwardWrite the following in C# WinForms. Create a poacher class that has random x and y values when created, private set function for x and y values. Implement a function in the main menu that makes the poacher move into random direction. The movement should seem seamless. The poacher can be drew by the following in the main menu. e.Graphics.DrawImage(poacherImage, poacher.X, poacherY, tileSize, tileSize);arrow_forward
- Write the following in C# WinForms. Create a poacher class that has random x and y values when created, private set function for x and y values. Implement a function in the main menu that makes the poacher move into random direction. The movement should seem seamless. The picture of the poacher is drew by e.Graphics.DrawImage(poacherImage, poacher.X, poacher.Y, tileSize, tileSize);arrow_forwardCreate a poacher class that has random x and y values when created, private set function for x and y values, and implement a function in the main menu that makes the poacher move into random direction. The movement should seem seamless. Write it in C# WinFormsarrow_forwardHi, please solve this trying to follow this criteria. (use Keil) Abstract describing the requirements and goals of the assignment. List file with no errors or warnings. Brief description of your implementation design and code. Debugging screen shots for different scenarios with your reference and comments. Conclusionarrow_forward
- Compute a Monte Carlo estimate of 0.8 by sampling from Uniform(0,0.8) and estimate the variance of ⑦.arrow_forwardWrite a C program using embedded assembler with a function to convert a digit (0 – 15) to the corresponding ASCII character representing the value in hexadecimal. For numbers 0 – 9, the output will be the characters '0' – '9', for numbers 10 – 15 the characters 'A' – 'F'. The entire core of the program must be written in symbolic instruction language; arrays may not be used. You may only use C to print the result. Tip: This piece of C program will do the same thing: character = number < 10 ? number + '0' : number + 55; As a basis, you can use this program again , which increments a variable. Just replace the INC instruction with ADD and add a test (CMP) with some conditional jump.arrow_forwardAnswer the question fully and accurately by providing the required files(Java Code, Two output files and written answers to questions 1-3 in a word document)meaning question 1 to 3 also provide correct answers for those questions.(note: this quetion is not graded).arrow_forward
- Database System ConceptsComputer ScienceISBN:9780078022159Author:Abraham Silberschatz Professor, Henry F. Korth, S. SudarshanPublisher:McGraw-Hill EducationStarting Out with Python (4th Edition)Computer ScienceISBN:9780134444321Author:Tony GaddisPublisher:PEARSONDigital Fundamentals (11th Edition)Computer ScienceISBN:9780132737968Author:Thomas L. FloydPublisher:PEARSON
- C How to Program (8th Edition)Computer ScienceISBN:9780133976892Author:Paul J. Deitel, Harvey DeitelPublisher:PEARSONDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781337627900Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningProgrammable Logic ControllersComputer ScienceISBN:9780073373843Author:Frank D. PetruzellaPublisher:McGraw-Hill Education





