
Big Java Late Objects
2nd Edition
ISBN: 9781119330455
Author: Horstmann
Publisher: WILEY
expand_more
expand_more
format_list_bulleted
Question
Chapter 12, Problem 2PP
Program Plan Intro
Appointment Calendar
Program plan:
Filename: “AppoinmentTime.java”
This program file is used to define a class “AppoinmentTime”. In the code,
- Import the required packages.
- Define a class “AppoinmentTime”.
- Define the class members “minutes”, “hours” and “BAD_TIME”.
- Define a constructor “AppoinmentTime()”.
- Define the object of “Scanner” class.
- Get the delimiter.
- Define the “try” block.
- Get the values of “hours” and “minutes”.
- If the “hours” is less than 0 or greater than 23,
- Throw a runtime exception.
- If the “minutes” is less than 0 or greater than 59,
- Throw a runtime exception.
- Define a “catch” exception.
- Set “hours” equal to “-1”.
- Set “minutes” equal to “-1”.
- Define the method “equals()”.
- If the condition is true,
- Return false.
- Define “b” of class “AppoinmentTime”.
- Return the result of expression.
- If the condition is true,
- Define the method “toString()”.
- Return the time in string format.
Filename: “AppointmentDate.java”
This program file is used to define a class “AppoinmentDate”. In the code,
- Import the required packages.
- Define a class “AppoinmentDate”.
- Define the class members “year”, “month”, “day”, “DAYS” and “BAD_DATE”.
- Define a constructor “AppoinmentDate ()”.
- Define the object of “Scanner” class.
- Get the delimiter.
- Define the “try” block.
- Get the values of “year”, “month” and “day”.
- If the “month” is less than 1 or greater than 12,
- Throw a runtime exception.
- If “day” is less than 1,
- Throw a runtime exception.
- If the condition “day>DAYS[month-1]”,
- Throw a runtime exception.
- If the “month” greater than 2 and “year” is not a leap year and the “days” are greater than 28,
- Throw a runtime exception.
- Define a “catch” exception.
- Set “year” equal to “-1”.
- Set “month” equal to “-1”.
- Set “day” equal to “-1”.
- Define the method “equals()”.
- If the condition is true,
- Return false.
- Define “b” of class “AppoinmentDate”.
- Return the Boolean result of expression.
- If the condition is true,
- Define the method “toString()”.
- Return the date in string format.
- Define the method “isLeapYear()”.
- Check the condition and return the result.
Filename: “AppointmentDateTimeTester.java”
This program file is used to define a class “AppointmentDateTimeTester”. In the code,
- Define a class “AppointmentDateTimeTester”.
- Define a method “main()”.
- Print the statement.
- Define the object of “AppoinmentDate”.
- Check the good date “2016/3/15”.
- Print the expected value.
- Check another date “Jan 15, 2016”.
- Check the bad format.
- Print the expected bad date.
- Print the invalid format.
- Print the expected result.
- Check the equality.
- Print the expected result.
- Check with new date “2016/02/30”.
- Check the invalid date.
- Print the expected result.
- Assign “d” equal to “2016/02/02”.
- Assign “d2” equal to “2016/02/02”.
- Check the equality of “d” and “d2”.
- Print the expected value.
- Check whether “d” equals “null”.
- Print the expected value.
- Check whether “d” equals “2016/02/02”.
- Print the expected value.
- Print a new line.
- Print the statement.
- Assign “t1” equal to “8:15”.
- Check the good time.
- Print the expected result.
- Assign “t1” equal to “7:05”.
- Check the good time.
- Print the expected result.
- Checking the invalid format.
- Print the invalid time format.
- Assign “t1” equal to “7:60”.
- Check the bad time.
- Print the expected value.
- Assign “t1” equal to “24:05”.
- Checking the bad time.
- Print the expected value.
- Assign “t1” equal to “8:15”.
- Check the equality.
- Print the expected result.
- Check whether “t1” is equal to “null”.
- Print the expected value.
- Check the equality.
- Print the expected value.
- Define a method “main()”.
Expert Solution & Answer

Want to see the full answer?
Check out a sample textbook solution
Students have asked these similar questions
Benefits of using arrays as instance variables: What are the advantages of incorporating arrays as instance variables within a class?
Initializing and managing arrays: How do you initialize and manage arrays within class constructors and mutators (setters)?
Example of using arrays as instance variables: Share an example where you have used arrays as instance variables and discuss its application in a real-world scenario.
Common mistakes with arrays as instance variables: What are some common mistakes to avoid when working with arrays as instance variables?
Information hiding violations: What is the potential violation of information hiding when using arrays as instance variables? How can this be resolved?
Do you think that computers should replace teachers? Give three references with your answer.
Is online learning or face to face learning better to teach students around the around the world? Give reasons for your answer and provide two references with your response.
What are benefits of both online learning and face to face learning ? Give two references with your answer.
How does online learning and face to face learning affects students around the world? Give two references with your answer.
Chapter 12 Solutions
Big Java Late Objects
Ch. 12.1 - Prob. 1SCCh. 12.1 - Prob. 2SCCh. 12.1 - Prob. 3SCCh. 12.1 - Prob. 4SCCh. 12.1 - Prob. 5SCCh. 12.2 - Prob. 6SCCh. 12.2 - Prob. 7SCCh. 12.2 - Prob. 8SCCh. 12.2 - Prob. 9SCCh. 12.2 - Prob. 10SC
Ch. 12.2 - Prob. 11SCCh. 12.2 - Prob. 12SCCh. 12.3 - Prob. 13SCCh. 12.3 - Prob. 14SCCh. 12 - Prob. 1RECh. 12 - Prob. 2RECh. 12 - Prob. 3RECh. 12 - Prob. 4RECh. 12 - Prob. 5RECh. 12 - Prob. 6RECh. 12 - Prob. 7RECh. 12 - Prob. 8RECh. 12 - Prob. 9RECh. 12 - Prob. 10RECh. 12 - Prob. 11RECh. 12 - Prob. 12RECh. 12 - Prob. 13RECh. 12 - Prob. 14RECh. 12 - Prob. 15RECh. 12 - Prob. 1PECh. 12 - Prob. 2PECh. 12 - Prob. 3PECh. 12 - Prob. 4PECh. 12 - Prob. 5PECh. 12 - Prob. 6PECh. 12 - Prob. 1PPCh. 12 - Prob. 2PPCh. 12 - Prob. 3PPCh. 12 - Prob. 4PPCh. 12 - Prob. 5PPCh. 12 - Prob. 6PPCh. 12 - Prob. 7PPCh. 12 - Prob. 8PPCh. 12 - Prob. 9PPCh. 12 - Prob. 10PP
Knowledge Booster
Similar questions
- Explain Five reasons if computers should replace teachers. Provide three references with your answer. List three advantages and three disadvantages face to face learning and online learning may have on children. Provide two references with your answer.arrow_forwardYou were requested to design IP addresses for the following network using the address block 10.10.10.0/24. Specify an address and net mask for each network and router interfacearrow_forwardFor the following network, propose routing tables in each of the routers R1 to R5arrow_forward
- How can I type the Java OOP code by using JOptionPane with this following code below: public static void sellCruiseTicket(Cruise[] allCruises) { //Type the code here }arrow_forwardDraw a system/level-0 diagram for this scenario: You are developing a new customer relationship management system for the BEC store, which rents out movies to customers. Customers will provide comments on new products, and request rental extensions and new products, each of which will be stored into the system and used by the manager for purchasing movies, extra copies, etc. Each month, one employee of BEC will select their favorite movie pick of that week, which will be stored in the system. The actual inventory information will be stored in the Entertainment Tracker system, and would be retrieved by this new system as and when necessary. Example of what a level-0 diagram looks like is attached.arrow_forwardWhat is the value of performing exploratory data analysis in designing data visualizations? What are some examples?arrow_forward
- Draw a level-0 diagram for this scenario: You are developing a new customer relationship management system for the BEC store, which rents out movies to customers. Customers will provide comments on new products, and request rental extensions and new products, each of which will be stored into the system and used by the manager for purchasing movies, extra copies, etc. Each month, one employee of BEC will select their favorite movie pick of that week, which will be stored in the system. The actual inventory information will be stored in the Entertainment Tracker system, and would be retrieved by this new system as and when necessary.arrow_forwardDraw a context diagram for this scenario: You are developing a new customer relationship Management system for the BEC store, which rents out movies to customers. Customers will provide comments on new products, and request rental extensions and new products, each of which will be stored into the system and used by the manager for purchasing movies, extra copies, etc. Each month, one employee of BEC will select their favorite movie pick of that week, which will be stored in. the system. The actual inventory information will be stored in the Entertainment Tracker system, and would be retrieved by this new system as and when necessary.arrow_forwardWrite a complete Java program named FindSumAndAverage that performs the following tasks in 2-D array: Main Method: a. The main() method asks the user to provide the dimension n for a square matrix. A square matrix has an equal number of rows and columns. b. The main() method receives the value of n and calls the matrixSetUp() method that creates a square matrix of size n and populates it randomly with integers between 1 and 9. c. The main method then calls another method named printMatrix() to display the matrix in a matrix format. d. The main method also calls a method named findSumAndAverage() which: • Receives the generated matrix as input. • Calculates the sum of all elements in the matrix. • Calculates the average value of the elements in the matrix. • Stores these values (sum and average) in a single-dimensional array and returns this array • e. The main method prints the sum and average based on the result returned from findSumAndAverage()). Enter the dimension n for the square…arrow_forward
arrow_back_ios
SEE MORE QUESTIONS
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