
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
expand_more
expand_more
format_list_bulleted
Question
- Consider a class MotorBoat that represents motorboats. A motorboat has attributes for
- The capacity of the fuel tank
- The amount of fuel in the tank
- The maximum speed of the boat
- The current speed of the boat
- The efficiency of the boat’s motor
- The distance traveled
The class has methods to
- Change the speed of the boat
- Operate the boat for an amount of time at the current speed
- Refuel the boat with some amount of fuel
- Return the amount of fuel in the tank
- Return the distance traveled so far
If the boat has efficiency e, the amount of fuel used when traveling at a speed s for time t is . The distance traveled in that time is .
Note: distance = time * speed, fuel used = distance /efficiency.
- Write a method heading for each method.
- Write preconditions and post conditions for each method.
- Write some Java statements that test the class.
- Implement the class.
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 2 steps with 1 images

Knowledge Booster
Similar questions
- Object Oriented Analysis Systems Creating a complete class diagram for the "Housekeeper service system" if given you an overview of the classes, attributes, and associations you would need: 1. *User* - Attributes: name, password, mobile phone, email - Methods: updatePassword(), updateMobilePhone() 2. *System Administrator* - Inherits from User - Attributes: level Of Access - Methods: registerWorker(), registerCustomer(), updateServices(), addOffers() 3. *Worker* - Attributes: age, nationality, specialty, evaluation degree - Methods: displayAssignedVisits(), submitLeaveOfAbsence() 4. *Customer* - Inherits from User - Attributes: nationality ID, addresses - Methods: selectServices(), chooseVisitTime(), confirmServiceInformation(), makePayment(), getTransactionInformation() 5. *Address* - Attributes: street name, building number, zip code, city - Methods: addAddress(), deleteAddress(), updateAddress(), setDefaultAddress() 6. *Payment* - Attributes: transaction…arrow_forwardPython programming is the subjectarrow_forwardIntroduction The Object Oriented software model is designed to create a new data type by using the Class structure. Therefore the various operations which define a data type, such as the common operators, assignment, etc., have a software architecture available to create those operations and data types. Assignment Description This assignment is an exercise in creating a complete class definition. A standard way to do that is to use a math data type. Here we define a Rational Number data type in a class called “Rational”. The distinctive feature of this type is the data is kept as numerator and denominator throughout all operations; there is no floating point representation used. The standard math operations, addition, subtraction, etc., are implemented, including the iostream overload. The student will not only come to understand what is required for a complete representation of such a type, but also learn about the internal mechanics of its C++ implementation. The student will be…arrow_forward
- Instructions: Create a UML diagram for a Dog class. You can get some useful information from your book Review Chapter 5 Pg. 179-180. CLASS NAME List the instance variables in the constructor. Unified Modeling Language (UML) List the methods in the class. o - indicates private o name is the variable name o string is the data type of name CLASS NAME List the instance variables in the constructor. o + indicates public o getName is the method name o o string is the return data type List the methods in the class. The second row of the UML diagram lists the instance variables in the constructor. For example -name: string Java.util. The third row of the diagram lists the methods in the class. For example, +getName(): string empty parenthesie indicate nothing is sent to the method.arrow_forwardCreate your own UML diagram — similar to the below UML diagram — for a Pet class that meets thespecification below.1. Create the fields indicated below. Use these names exactly as given for your fields. Define them inexactly this order.• name — The name of the pet, e.g., “Rufus”, “Mittens”, “Smelly”, etc.• animal — The type of pet, e.g., “dog”, “cat”, “asparagus”, etc.• age — The (integer) number of years the pet has been alive, e.g., 1, 2, 3, etc.2. Create a mutator for each of the above in the order listed. Use the standard Java naming conventionfor mutators.3. Create an accessor for each of the above in the order listed. Use the standard Java naming conventionfor accessorsarrow_forwardClass Relationships Exercises 1. In Java, we use inheritance for "is-a" relationships. Containment, on the other hand, indicates that one object has another object. These are "has-a" relationships. For the following relationships, determine if they are a "is-a" or a "has-a" relationship: o bicycle - vehicle o car - engine o pizza - topping o food - pizza o dog - mammal 2. Share with someone else 3 other examples for each of the following relationships: o Inheritance ("is-a" relationship) o Containment ("has-a" relationship) 3. public class PersonInfo { protected String firstName; protected String birthdate; } public class ChildInfo extends PersonInfo { private String schoolName; } public class MotherInfo extends PersonInfo { private String spousename; private ChildInfo children1; private ChildInfo children2; private ChildInfo children3; ... } A. Draw the relationships for the classes above using UML. If a class inherits from another class, draw an open arrow pointing to the base class…arrow_forward
arrow_back_ios
arrow_forward_ios
Recommended textbooks for you
- 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

Database System Concepts
Computer Science
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:McGraw-Hill Education

Starting Out with Python (4th Edition)
Computer Science
ISBN:9780134444321
Author:Tony Gaddis
Publisher:PEARSON

Digital Fundamentals (11th Edition)
Computer Science
ISBN:9780132737968
Author:Thomas L. Floyd
Publisher:PEARSON

C How to Program (8th Edition)
Computer Science
ISBN:9780133976892
Author:Paul J. Deitel, Harvey Deitel
Publisher:PEARSON

Database Systems: Design, Implementation, & Manag...
Computer Science
ISBN:9781337627900
Author:Carlos Coronel, Steven Morris
Publisher:Cengage Learning

Programmable Logic Controllers
Computer Science
ISBN:9780073373843
Author:Frank D. Petruzella
Publisher:McGraw-Hill Education