Starting Out with Java: Early Objects, Student Value Edition (6th Edition)
Starting Out with Java: Early Objects, Student Value Edition (6th Edition)
6th Edition
ISBN: 9780134457918
Author: GADDIS, Tony
Publisher: PEARSON
bartleby

Concept explainers

bartleby

Videos

Textbook Question
Book Icon
Chapter 4, Problem 5PC

BankCharges Class

A bank charges $10 per month, plus the following check fees for a commercial checking account:

$.10 for each check if less than 20 checks were written

$.08 for each check if 20 through 39 checks were written

$.06 for each check if 40 through 59 checks were written

$.04 for each check if 60 or more checks were written

The bank also charges an extra $15 if the account balance falls below $400 (before any check fees are applied). Design a class that stores the ending balance of an account and the number of checks written. It should also have a method that returns the bank’s service fees for the month.

Blurred answer
Students have asked these similar questions
esign a class named WorkingDays. The purpose of the class is to store a value that represents number of hours worked and then convert it into number of days worked according to the formula given below: 8 working hours = 1 working day For example: v 8 hours would be equal to 1 day v 12 hours would be equal to 1.5 days v 18 hours would be equal to 2.25 days
a. Sammy's Seashore Supplies rents beach equipment such as kayaks, canoes, beach chairs, and umbrellas to tourists. In Chapters 3 and 4, you created a Rental class for the company. Now, make the following change to the class: Currently, a rental price is calculated as $40 per hour plus $1 for each minute over a full hour. This means that a customer who rents equipment for 41 or more minutes past an hour pays more than a customer who waits until the next hour to return the equipment. Change the price calculation so that a customer pays $40 for each full hour and $1 for each extra minute up to and including 40 minutes.   Save the file as Rental.java. b. In Chapter 4, you modified the RentalDemo class to demonstrate a Rental object. Now, modify that class again as follows: Instantiate three Rental objects, and prompt the user for values for each object. Display the details for each object to verify that the new price calculation works correctly. Create a method that accepts two Rental…
:Define and implement class Employee. This class should contain the following fields: first name, last name, employee id, hourly pay. This class should contain getters and setters for all its attributes. This class also needs at least one constructor. Implement method computePay() in this class. This method should accept an integer number of hours the employee worked as an input argument and return a floating point value indicating the pay the employee earned. If the number of hours is invalid (e.g. a negative number) this method should throw NumberFormatException. If the number of hours is over 40 then this method should throw a custom exception named TooManyHoursWorkedException. Remember that you will have to define your own exception class for this. Save this class and its definition into a file named Employee.java. Define and implement class EmployeeTest.This class should implement main() method. In the body of the main() method you should create an instance of Employee with the…

Chapter 4 Solutions

Starting Out with Java: Early Objects, Student Value Edition (6th Edition)

Ch. 4.2 - Write an if-else statement that assigns 0 to the...Ch. 4.4 - Write nested if statements that perform the...Ch. 4.4 - Write code that tests the variable x to determine...Ch. 4.5 - What will the following program display? public...Ch. 4.5 - The following program is used in a bookstore to...Ch. 4.6 - Prob. 4.16CPCh. 4.6 - Assume the variables a = 2, b = 4, and c = 6....Ch. 4.6 - Write an if statement that displays the message...Ch. 4.6 - Write an if statement that displays the message...Ch. 4.7 - Assume the variable name references a String...Ch. 4.7 - Prob. 4.21CPCh. 4.7 - Prob. 4.22CPCh. 4.9 - Rewrite the following if-else statements as...Ch. 4.10 - Complete the following program skeleton by writing...Ch. 4.10 - Rewrite the following if-else-if statement as a...Ch. 4.10 - Explain why you cannot convert the following...Ch. 4.10 - What is wrong with the following switch statement?...Ch. 4.10 - What will the following code display? int funny =...Ch. 4 - The if statement is an example of a __________. a....Ch. 4 - This type of expression has a value of either true...Ch. 4 - , , and = = are __________. a. relational...Ch. 4 - , | |, and ! are __________. a. relational...Ch. 4 - Prob. 5MCCh. 4 - To create a block of statements, you enclose the...Ch. 4 - This is a boolean variable that signals when some...Ch. 4 - How does the character A compare to the character...Ch. 4 - This is an if statement that appears inside...Ch. 4 - Prob. 10MCCh. 4 - When determining whether a number is inside a...Ch. 4 - Prob. 12MCCh. 4 - The conditional operator takes this many operands....Ch. 4 - This section of a switch statement is branched to...Ch. 4 - True or False: The = operator and the == operator...Ch. 4 - True or False: A conditionally executed statement...Ch. 4 - Prob. 17TFCh. 4 - True or False: When an if statement is nested in...Ch. 4 - True or False: When an if statement is nested in...Ch. 4 - True or False: The scope of a variable is limited...Ch. 4 - Find the errors in the following code: 1. //...Ch. 4 - Find the errors in the following code: 2. //...Ch. 4 - Find the errors in the following code: 3. //...Ch. 4 - Prob. 4FTECh. 4 - Find the errors in the following code: 5. The...Ch. 4 - Find the errors in the following code: 6. The...Ch. 4 - The following statement should determine whether...Ch. 4 - Find the errors in the following code: 8. The...Ch. 4 - Prob. 9FTECh. 4 - Write an if statement that assigns 100 to x when y...Ch. 4 - Write an if-else statement that assigns 0 to x...Ch. 4 - Using the following chart, write an if-else-if...Ch. 4 - Write an if statement that sets the variable hours...Ch. 4 - Write nested if statements that perform the...Ch. 4 - Write an if statement that prints the message The...Ch. 4 - Write an if statement that prints the message The...Ch. 4 - Write an if statement that prints the message The...Ch. 4 - Write an if-else statement that displays the...Ch. 4 - Convert the following if-else-if statement into a...Ch. 4 - Match the conditional expression with the if-else...Ch. 4 - Explain what is meant by the phrase conditionally...Ch. 4 - Explain why a misplaced semicolon can cause an if...Ch. 4 - Why is it good advice to indent all the statements...Ch. 4 - What happens when you compare two String objects...Ch. 4 - Prob. 5SACh. 4 - What risk does a programmer take when not placing...Ch. 4 - Prob. 7SACh. 4 - Prob. 8SACh. 4 - Why are the relational operators called...Ch. 4 - How do you use private methods in a class to...Ch. 4 - Roman Numerals Write a program that prompts the...Ch. 4 - Time Calculator Write a program that asks the user...Ch. 4 - TestScores Class Design a TestScores class that...Ch. 4 - Software Sales A software company sells a package...Ch. 4 - BankCharges Class A bank charges 10 per month,...Ch. 4 - ShippingCharges Class The Fast Freight Shipping...Ch. 4 - FatGram Class Design a class with a method that...Ch. 4 - Running the Race Write a program that asks for the...Ch. 4 - The Speed of Sound The following table shows the...Ch. 4 - Freezing and Boiling Points The following table...Ch. 4 - Mobile Service Provider A mobile phone service...Ch. 4 - Mobile Service Provider, Part 2 Modify the program...Ch. 4 - Body Mass Index Write a program that calculates...Ch. 4 - Days in a Month Write a class named MonthDays. The...Ch. 4 - Book Club Points Serendipity Booksellers has a...Ch. 4 - Magic Dates The date June 10, 1960, is special...Ch. 4 - Hot Dog Cookout Calculator Assume that hot dogs...Ch. 4 - Roulette Wheel Colors On a roulette wheel, the...Ch. 4 - Wi-Fi Diagnostic Tree Figure 3-23 shows a...Ch. 4 - Restaurant Selector You have a group of friends...

Additional Engineering Textbook Solutions

Find more solutions based on key concepts
What makes Python an interpreted programming language?

Computer Science: An Overview (12th Edition)

File Decryption Filter Write a program that decrypts the file produced by the program in Programming Challenge ...

Starting Out with Java: From Control Structures through Objects (7th Edition) (What's New in Computer Science)

What are the bits in a binary system?

Digital Fundamentals (11th Edition)

Average Steps Taken A Personal Fitness Tracker is a wearable device that tracks your physical activity, calorie...

Starting Out with Java: From Control Structures through Data Structures (3rd Edition)

Simplify the following program segment while (X != 5): X = 5

Computer Science: An Overview (13th Edition) (What's New in Computer Science)

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.
Similar questions
SEE MORE QUESTIONS
Recommended textbooks for you
  • Text book image
    EBK JAVA PROGRAMMING
    Computer Science
    ISBN:9781337671385
    Author:FARRELL
    Publisher:CENGAGE LEARNING - CONSIGNMENT
    Text book image
    Systems Architecture
    Computer Science
    ISBN:9781305080195
    Author:Stephen D. Burd
    Publisher:Cengage Learning
Text book image
EBK JAVA PROGRAMMING
Computer Science
ISBN:9781337671385
Author:FARRELL
Publisher:CENGAGE LEARNING - CONSIGNMENT
Text book image
Systems Architecture
Computer Science
ISBN:9781305080195
Author:Stephen D. Burd
Publisher:Cengage Learning
Introduction to Classes and Objects - Part 1 (Data Structures & Algorithms #3); Author: CS Dojo;https://www.youtube.com/watch?v=8yjkWGRlUmY;License: Standard YouTube License, CC-BY