
Big Java, Binder Ready Version: Early Objects
6th Edition
ISBN: 9781119056447
Author: Cay S. Horstmann
Publisher: WILEY
expand_more
expand_more
format_list_bulleted
Question
Chapter 21, Problem 6PP
Program Plan Intro
Implementation of a Graphical User Interface (GUI)
Program plan:
- In a file “BankAccount.java”, create a class “BankAccount”,
- Declare the necessary variables.
- Define the constructor to create a bank account with “0” balance.
- Define the constructor to create a bank account with a specified balance.
- Define the method “getAccountNumber()” to return the account number.
- Define the method “deposit()” deposit the amount into the bank account.
- Define the method “withdraw()” to debit the amount from the bank account.
- Define the method “getBalance()” to return the bank balance.
- In a file “BankData.java”, import the packages and create a class “BankData”,
- Declare the object variable.
- Define the constructor to create a “BankData” object.
- Define the method “open()” to open the data file.
- Define the method “size()” to return the number of accounts in the file.
- Define the method “close()” to close the data file..
- Define the method “read()” to read the savings account records.
- Define the method “find()” to search the position of a bank account with a given number.
- Define the method “write()” to write the savings account record to the data file.
- In a file “BankSimulatorFrame.java”, import necessary packages, and create a class “BankSimulatorFrame”,
- Declare and initialize the necessary static variables.
- Declare the necessary variables.
- Define the constructor,
- Create an object for “BankData”.
- Call the method “setLayout()”.
- Call the method “add()” to add the various panel.
- Call the method “setSize()” to set the frame size.
- Define the method “createLoadPanel()”,
- Create a panel.
- Create a button “Load”.
- Add the button into the panel.
- Create Listener class for the button,
-
- Define the method “actionPerformed()”,
- Create “JFileChooser” object.
- Check the condition for the file chooser,
- Execute try statement,
- Open the file
- Enable the buttons.
- Catch if exception occurs.
- Execute try statement,
- Check the condition for the file chooser,
- Create “JFileChooser” object.
- Define the method “actionPerformed()”,
- Call the action listener method.
- Return the panel.
- Define the panel method “createFindPanel()”,
- Create a panel.
- Create a button “Find”.
- Disable the button.
- Add the button into the panel.
- Create a button “add”.
- Disable the button.
- Add the button into the panel.
- Create text field.
- Add the text field into the panel.
- Create a listener class for the buttons,
-
- Define the method “actionPerformed()”,
- Execute try statement,
- Get the account number.
- Search the position of the account number.
- Check the condition,
- Display the message.
- Disable the button.
- Otherwise,
- Read the current position.
- Set the text for the label.
- Enable the button.
- Catch if “IOException” exception occurs.
- Catch if “NumberFormatException” exception occurs.
- Execute try statement,
- Define the method “actionPerformed()”,
- Call the listener method.
- Create a class for button listener,
-
- Define the method “actionPerformed()”,
- Get the account number.
- Search the position.
- Check the condition,
- Get the size.
- Create a new account.
- Call the method “write()”.
- Otherwise,
- Display the message.
- Read the current position.
- Set the text.
- Enable the button.
- Catch if “IOException” exception occurs.
- Catch if “NumberFormatException” exception occurs.
- Define the method “actionPerformed()”,
- Call the method action listener method.
- Returns the panel.
- Define the method “createBalancePanel()”,
- Create a panel.
- Create empty label.
- Add the label into the panel.
- Return the panel.
- Define the method “createDepositPanel()”,
- Create a panel.
- Create a button “Deposit”.
- Create and add the label into the panel.
- Create and add the text field into the panel.
- Add the button into the panel.
- Create a listener class for the buttons,
-
- Define the method “actionPerformed()”,
- Execute try statement,
- Get the amount.
- Call the method “deposit()”.
- Call the method “write()”.
- Set the text.
- Enable the button.
- Catch if “IOException” exception occurs.
- Catch if “NumberFormatException” exception occurs.
- Execute try statement,
- Define the method “actionPerformed()”,
- Call the listener method.
- Returns the panel.
- Define the method “createLoadPanel()”,
- In a file “BankSimulatorViewer.java”, import necessary packages, and create a class “BankSimulatorViewer”,
- Define the “main()” method.
- Create “BankSimulatorFrame” object.
- Call the method to define the frame operation.
- Set the frame’s title.
- Make the frame visible.
- Define the “main()” method.
Expert Solution & Answer

Want to see the full answer?
Check out a sample textbook solution
Students have asked these similar questions
make corrections of this program based on the errors shown. this is CIS 227 .
Create 6 users: Don, Liz, Shamir, Jose, Kate, and Sal.
Create 2 groups: marketing and research.
Add Shamir, Jose, and Kate to the marketing group.
Add Don, Liz, and Sal to the research group.
Create a shared directory for each group.
Create two files to put into each directory:
spreadsheetJanuary.txt
meetingNotes.txt
Assign access permissions to the directories:
Groups should have Read+Write access
Leave owner permissions as they are
“Everyone else” should not have any access
Submit for grade:
Screenshot of /etc/passwd contents showing your new users
Screenshot of /etc/group contents showing new groups with their members
Screenshot of shared directories you created with files and permissions
⚫ your circuit diagrams for your basic bricks, such as AND, OR, XOR gates and 1 bit multiplexers,
⚫ your circuit diagrams for your extended full adder, designed in Section 1 and
⚫ your circuit diagrams for your 8-bit arithmetical-logical unit, designed in Section 2.
1 An Extended Full Adder
In this Section, we are going to design an extended full adder circuit (EFA). That EFA takes 6 one bit inputs: aj, bj,
Cin, Tin, t₁ and to. Depending on the four possible combinations of values on t₁ and to, the EFA produces 3 one bit
outputs: sj, Cout and rout.
The EFA can be specified in principle by a truth table with 26 = 64 entries and 3 outputs. However, as the EFA
ignores certain inputs in certain cases, it is easier to work with the following overview specification, depending only
on t₁ and to in the first place:
t₁ to Description
00
Output Relationship
Ignored
Inputs
Addition Mode
2 Coutsjaj + bj + Cin, Tout= 0
Tin
0 1
Shift Left Mode
Sj = Cin,
Cout=bj, rout = 0
rin, aj
10
1 1
Shift Right…
Chapter 21 Solutions
Big Java, Binder Ready Version: Early Objects
Ch. 21.1 - Prob. 1SCCh. 21.1 - Prob. 2SCCh. 21.2 - Prob. 3SCCh. 21.2 - Prob. 4SCCh. 21.2 - Prob. 5SCCh. 21.3 - Prob. 6SCCh. 21.3 - Prob. 7SCCh. 21.4 - Prob. 8SCCh. 21.4 - Prob. 9SCCh. 21.5 - Prob. 10SC
Ch. 21.5 - Prob. 11SCCh. 21.5 - Prob. 12SCCh. 21.5 - Prob. 13SCCh. 21.5 - Prob. 14SCCh. 21 - Prob. 1RECh. 21 - Prob. 2RECh. 21 - Prob. 3RECh. 21 - Prob. 4RECh. 21 - Prob. 5RECh. 21 - Prob. 6RECh. 21 - Prob. 7RECh. 21 - Prob. 8RECh. 21 - Prob. 9RECh. 21 - Prob. 10RECh. 21 - Prob. 11RECh. 21 - Prob. 12RECh. 21 - Prob. 13RECh. 21 - Prob. 14RECh. 21 - Prob. 15RECh. 21 - Prob. 16RECh. 21 - Prob. 1PECh. 21 - Prob. 2PECh. 21 - Prob. 3PECh. 21 - Prob. 4PECh. 21 - Prob. 5PECh. 21 - Prob. 6PECh. 21 - Prob. 7PECh. 21 - Prob. 8PECh. 21 - Prob. 9PECh. 21 - Prob. 10PECh. 21 - Prob. 1PPCh. 21 - Prob. 2PPCh. 21 - Prob. 3PPCh. 21 - Prob. 4PPCh. 21 - Prob. 5PPCh. 21 - Prob. 6PPCh. 21 - Prob. 7PPCh. 21 - Prob. 8PPCh. 21 - Prob. 9PPCh. 21 - Prob. 10PPCh. 21 - Prob. 11PPCh. 21 - Prob. 12PPCh. 21 - Prob. 13PPCh. 21 - Prob. 14PP
Knowledge Booster
Similar questions
- Show the correct stereochemistry when needed!! mechanism: mechanism: Show the correct stereochemistry when needed!! Br NaOPh diethyl ether substitutionarrow_forwardIn javaarrow_forwardKeanPerson #keanld:int #keanEmail:String #firstName:String #lastName: String KeanAlumni -yearOfGraduation: int - employmentStatus: String + KeanPerson() + KeanPerson(keanld: int, keanEmail: String, firstName: String, lastName: String) + getKeanld(): int + getKeanEmail(): String +getFirstName(): String + getLastName(): String + setFirstName(firstName: String): void + setLastName(lastName: String): void +toString(): String +getParkingRate(): double + KeanAlumni() + KeanAlumni(keanld: int, keanEmail: String, firstName: String, lastName: String, yearOfGraduation: int, employmentStatus: String) +getYearOfGraduation(): int + setYearOfGraduation(yearOfGraduation: int): void +toString(): String +getParkingRate(): double In this question, write Java code to Create and Test the superclass: Abstract KeanPerson and a subclass of the KeanPerson: KeanAlumni. Task 1: Implement Abstract Class KeanPerson using UML (10 points) • Four data fields • Two constructors (1 default and 1 constructor with all…arrow_forward
- Plz correct answer by best experts...??arrow_forwardQ3) using the following image matrix a- b- 12345 6 7 8 9 10 11 12 13 14 15 1617181920 21 22 23 24 25 Using direct chaotic one dimension method to convert the plain text to stego text (hello ahmed)? Using direct chaotic two-dimension method to convert the plain text to stego text?arrow_forward: The Multithreaded Cook In this lab, we'll practice multithreading. Using Semaphores for synchronization, implement a multithreaded cook that performs the following recipe, with each task being contained in a single Thread: 1. Task 1: Cut onions. a. Waits for none. b. Signals Task 4 2. Task 2: Mince meat. a. Waits for none b. Signals Task 4 3. Task 3: Slice aubergines. a. Waits for none b. Signals Task 6 4. Task 4: Make sauce. a. Waits for Task 1, and 2 b. Signals Task 6 5. Task 5: Finished Bechamel. a. Waits for none b. Signals Task 7 6. Task 6: Layout the layers. a. Waits for Task 3, and 4 b. Signals Task 7 7. Task 7: Put Bechamel and Cheese. a. Waits for Task 5, and 6 b. Signals Task 9 8. Task 8: Turn on oven. a. Waits for none b. Signals Task 9 9. Task 9: Cook. a. Waits for Task 7, and 8 b. Signals none At the start of each task (once all Semaphores have been acquired), print out a string of the task you are starting, sleep for 2-11 seconds, then print out a string saying that you…arrow_forward
- Programming Problems 9.28 Assume that a system has a 32-bit virtual address with a 4-KB page size. Write a C program that is passed a virtual address (in decimal) on the command line and have it output the page number and offset for the given address. As an example, your program would run as follows: ./addresses 19986 Your program would output: The address 19986 contains: page number = 4 offset = 3602 Writing this program will require using the appropriate data type to store 32 bits. We encourage you to use unsigned data types as well. Programming Projects Contiguous Memory Allocation In Section 9.2, we presented different algorithms for contiguous memory allo- cation. This project will involve managing a contiguous region of memory of size MAX where addresses may range from 0 ... MAX - 1. Your program must respond to four different requests: 1. Request for a contiguous block of memory 2. Release of a contiguous block of memory 3. Compact unused holes of memory into one single block 4.…arrow_forwardusing r languagearrow_forwardProgramming Problems 9.28 Assume that a system has a 32-bit virtual address with a 4-KB page size. Write a C program that is passed a virtual address (in decimal) on the command line and have it output the page number and offset for the given address. As an example, your program would run as follows: ./addresses 19986 Your program would output: The address 19986 contains: page number = 4 offset = 3602 Writing this program will require using the appropriate data type to store 32 bits. We encourage you to use unsigned data types as well. Programming Projects Contiguous Memory Allocation In Section 9.2, we presented different algorithms for contiguous memory allo- cation. This project will involve managing a contiguous region of memory of size MAX where addresses may range from 0 ... MAX - 1. Your program must respond to four different requests: 1. Request for a contiguous block of memory 2. Release of a contiguous block of memory 3. Compact unused holes of memory into one single block 4.…arrow_forward
- using r languagearrow_forwardWrite a function to compute a Monte Carlo estimate of the Beta(3, 3) cdf, and use the function to estimate F(x) for x = 0.1,0.2,...,0.9. Compare the estimates with the values returned by the pbeta function in R.arrow_forwardWrite a function to compute a Monte Carlo estimate of the Gamma(r = 3, λ = 2) cdf, and use the function to estimate F(x) for x = 0.2, 0.4, . . . , 2.0. Compare the estimates with the values returned by the pgamma function in R.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