
Explanation of Solution
a)
Double click on the file that is downloaded and it will appear as shown below:
After opening the file
Explanation of Solution
b)
The below are the steps to create new
- Click “File->New” and then choose on the option “Blank desktop database”.
- Provide the name of the database and click “Create”...
Explanation of Solution
c)
Import the spreadsheet into the database click on the “External Data” tab and click on “Excel”.
- A get external data-Excel spreadsheet dialog box gets opened, then click on the “Browse” button and choose the file that location where the file is available.
Get external data dialog box
- Now Import Spreadsheet wizard get opened.
Import spreadsheet wizard
- Now click on the “Next” button and click on the “First Row contains Column Heading” and click “Next”...
Explanation of Solution
d)
Import the spreadsheet into the database click on the “External Data” tab and click on “Excel”.
- A get external data-Excel spreadsheet dialog box gets opened, then click on the “Browse” button and choose the file that location where the file is available.
Get external data dialog box
- Now Import Spreadsheet wizard get opened.
Import spreadsheet wizard
- Now click on the “Next” button and click on the “First Row contains Column Heading” and click “Next”.
Import spreadsheet wizard
Explanation of Solution
e)
In the menu bar, click on “Database Tools” menu and click on “Relationships” button.
- A “show Table” dialog box appears, then clicks on the required table, then click “Add” and once after completing click the close button.
Screenshot of adding the table to establish relationship
Explanation of Solution
f)
In the create menu click on the “Form Wizard” button, a Form wizard dialog box appears click on the required table and add all the fields into it by clicking on “>>” button.
- Now all the fields of the table are being added into the form wizard.
Form Wizard
- Click on the next button and choose “by Employee” option and click on the “Next” button.
Form Wizard
- Again click on the “Next” button and name the form as required.
Form Wizard
Explanation of Solution
h)
To add the new item using form choose the Employee ID of “Michael Murphy” and click in the “*” button available and start adding the required data that are specified ...
Explanation of Solution
i)
Right click on the record that needs to be deleted and click “Delete Record” of the “Stan Larsen”...
Explanation of Solution
j)
In the create menu choose the report wizard, a report wizard dialog box gets opened now choose the required table and corresponding fields into the report wizard.
Report Wizard
- Now click on the “Next” button and choose the view which needs to be viewed as shown below:
Report Wizard
- Click “Next” and choose whether any grouping is required or not and click “Next” to avail any sorting order in which data needs to be displayed.
Report Wizard
- Click “Next” and choose the layout of the report:
Report Wizard

Want to see the full answer?
Check out a sample textbook solution
Chapter AE Solutions
EBK USING MIS
- MGMT SS STATS, an umbrella body that facilitates and serves various Social Security Organizations/Departments within the Caribbean territories, stood poised to meet the needs of its stakeholders by launching an online database. The database will provide members and the public access to the complete set of services that can (also) be initiated face-to-face, and it will provide managed, private, secure access to a repository of public and/or personal information. Ideally, the database will have basic details of pension plans recorded in the registry, member plan statistics, and cash inflows and outflows from pension funds.For example, insured persons accumulate contributions. Records for these persons will include information on the insured persons able to acquire various benefits once work is interrupted due to sickness, death, retirement, and maternity or employment injury. They will also include information on pensions such as invalidity, disability, and survivors that stem from one…arrow_forwardWhy all appvif i want to sign in its required phone number why not using google or apple its make me frustratedarrow_forwardWhy is the accuracy of time important in data visualizations? Detail a scenario from your professional experience in which time was structured poorly in a data visualization. How did this affect the understanding of the data presented? How do you think this error or oversight occurred?arrow_forward
- Write the KeanStudent class. The UML diagram of the class is represented below: KeanStudent - fullName: String - keanID: int -keanEmailAddress: String cellPhoneNumber: String + numberOfStudent: int + KeanStudent() + KeanStudent(fullName: String, keanID: int, keanEmailAddress: String, cellPhoneNumber: String) +getFullName(): String +setFullName(newFullName: String): void +getKeanIDO): int +getKeanEmailAddress(): String +getCellPhoneNumber(): String + setCellPhoneNumber(newCellPhoneNumber: String): void +toString(): String 1. Implement the KeanStudent class strictly according to its UML one-to-one (do not include anything extra, do not miss any data fields or methods) 2. Implement a StudentTest class to test the class KeanStudent you just created. • Create two KeanStudent objects using a no-args constructor and one from the constructor with all fields. o Print the contents of both objects. 。 Print numberOfStudent. 3. Add comments to your program (mark where data fields, constructors,…arrow_forwardMGMT SS STATS, an umbrella body that facilitates and serves various Social SecurityOrganizations/Departments within the Caribbean territories, stoodpoised to meet the needs of its stakeholders by launching an onlinedatabase at www.SSDCI.gov. The database will provide membersand the public access to the complete set of services that can (also)be initiated face-to-face, and it will provide managed, private, secure access to a repository ofpublic and/or personal information. Ideally, the database will have basic details of pensionplans recorded in the registry, member plan statistics, and cash inflows and outflows frompension funds.For example, insured persons accumulate contributions. Records for these persons will includeinformation on the insured persons able to acquire various benefits once work is interrupteddue to sickness, death, retirement, and maternity or employment injury. They will also includeinformation on pensions such as invalidity, disability, and survivors that stem from…arrow_forward(c) Consider the following set of processes: Process ID Arrival Time Priority Burst Time A 2 3 100 B 6 C 10 1 (highest) 2 40 80 D 16 4 (lowest) 20arrow_forward
- (3c) In the following resource allocation graph, is the state a deadlocked one? If so which ones are deadlocked? (3 points) Resource allocation graph. R₁ = Resource, P = process. R1 R3 R3 7arrow_forwardWhat resources are used when a thread is created? How do these differ from those used when a process is created?arrow_forward(c) Consider the following set of processes: Process ID Arrival Time Priority Burst Time A 2 3 100 B 6 C 10 1 (highest) 2 40 80 D 16 4 (lowest) 20arrow_forward
- (3e) Test-and-Set. The Test-and-Set instruction is used in hardware to achieve synchronization. It can be defined in the following way: function Test-and-Set (var target: boolean): boolean; begin Test-and-Set:= target; target := true; end; Now show how the Test-and-Set instruction can be used to protect a critical region and hence achieve mutual exclusion (do not worry about satisfying the bounded waiting condition). (8 points) repeatarrow_forwardConsider a system with three smoker processes and one agent process. Each smoker continuously rolls a cigarette and then smokes it. But to roll and smoke a cigarette, the smoker needs three ingredients: tobacco, paper and matches. One of the smoker processes has paper, another has tobacco and the third has the matches. The agent has an infinite supply of all three materials. The agent places two of the ingredients on the table. The smoker who has the remaining ingredient then makes and smokes a cigarette, signaling the agent on completion. The agent then puts out another two of the three ingredients, and the cycle repeats. Given below is a solution to the Cigarette-Smokers Problem. Give initial conditions for the semaphores as well as plausible values for the variables i & j and r & s, such that the agent and smokers are synchronized. Write a couple of sentences on why these initial conditions are necessary and sufficient. Solution: var a: array [0..2] of semaphore (initial condition =…arrow_forwardLevel-0 Diagram for this: A customer sends in an order form containing details of their order and their membership number. A check is made to verify that they are a member. When their order is verified, a check is made to validate that the items ordered are produced by the company. Next, the valid order is used to update the daily order file, and then used to create a shipping list and invoice, which are sent on to the Order Fulfilment System.arrow_forward
- Fundamentals of Information SystemsComputer ScienceISBN:9781337097536Author:Ralph Stair, George ReynoldsPublisher:Cengage LearningNp Ms Office 365/Excel 2016 I NtermedComputer ScienceISBN:9781337508841Author:CareyPublisher:Cengage
- Database Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781305627482Author:Carlos Coronel, Steven MorrisPublisher:Cengage LearningDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781285196145Author:Steven, Steven Morris, Carlos Coronel, Carlos, Coronel, Carlos; Morris, Carlos Coronel and Steven Morris, Carlos Coronel; Steven Morris, Steven Morris; Carlos CoronelPublisher:Cengage LearningFundamentals of Information SystemsComputer ScienceISBN:9781305082168Author:Ralph Stair, George ReynoldsPublisher:Cengage Learning



