![EBK USING MIS](https://www.bartleby.com/isbn_cover_images/8220103633635/8220103633635_largeCoverImage.jpg)
Explanation of Solution
a.
Results for the above query:
1) List the names, department and salary of all employees earning more than 100000:
Open the given an Access
Screenshot of MS Access
- Select “CREATE” option from the menu bar and then choose “Query Design” from it.
- Close the “Show Table” dialog box and click “SQL View” from the top left corner.
- A query form gets displayed as shown below:
SELECT Name, Department, Salary
FROM EMPLOYEE
WHERE Salary > 100000;
- After writing the query save it by pressing “Ctrl+S” and name it as “Query 1”.
- Right click “Query 1” and then choose “Datasheet View” to view the result.
Screenshot of MS Access
2)
List the name and specialty of all employees in the Marketing department:
- Create another “Query design” and write the below “Query 2” query.
SELECT Name, Specialty
FROM Employee
WHERE Department = "Marketing";
- After writing the query save it by pressing “Ctrl+S” and name it as “Query 2”.
- Right click “Query 2” and then choose “Datasheet View” to view the result.
Screenshot of MS Access
3)
Computation of average, maximum, minimum salary of employees in the company:
- Create another “Query design” and write the below “Query 3” query.
SELECT AVG(Salary) AS Average, MAX(Salary) AS Maximum, MIN(Salary) AS Minimum
FROM Employee;
- After writing the query save it by pressing “Ctrl+S” and name it as “Query 3”.
- Right click “Query 3” and then choose “Datasheet View” to view the result.
Screenshot of MS Access
Explanation of Solution
b. Use of data for salary increase decision:
Manager will coming to know the average salary for employees in every d...
Explanation of Solution
c. Three ways the user can share the Access application with another:
- Share data by using network folders:
This is the simplest option and has the least requirement. In this method, the database file is stored on a shared network drive and all the user can use that file at a time.
Advantage – all the users can use that file simultaneously.
Disadvantage – the original data can be modified because of multiple users use that file simultaneously.
- Share a database by using a server:
This method is store the tables on the network and each user has local copy of a database file which contains links to the tables, along with forms, quires, objects and reports...
![Check Mark](/static/check-mark.png)
Trending nowThis is a popular solution!
![Blurred answer](/static/blurred-answer.jpg)
Chapter AE Solutions
EBK USING MIS
- EX:[AE00]=fa50h number of ones =1111 1010 0101 0000 Physical address=4AE00h=4000h*10h+AE00h Mov ax,4000 Mov ds,ax; DS=4000h mov ds,4000 X Mov ax,[AE00] ; ax=[ae00]=FA50h Mov cx,10; 16 bit in decimal Mov bl,0 *: Ror ax,1 Jnc ** Inc bl **:Dec cx Jnz * ;LSB⇒CF Cf=1 ; it jump when CF=0, will not jump when CF=1 HW1: rewrite the above example use another wayarrow_forwardEX2: Write a piece of assembly code that can count the number of ones in word stored at 4AE00harrow_forwardWrite a program that simulates a Magic 8 Ball, which is a fortune-telling toy that displays a random response to a yes or no question. In the student sample programs for this book, you will find a text file named 8_ball_responses.txt. The file contains 12 responses, such as “I don’t think so”, “Yes, of course!”, “I’m not sure”, and so forth. The program should read the responses from the file into a list. It should prompt the user to ask a question, then display one of the responses, randomly selected from the list. The program should repeat until the user is ready to quit. Contents of 8_ball_responses.txt: Yes, of course! Without a doubt, yes. You can count on it. For sure! Ask me later. I'm not sure. I can't tell you right now. I'll tell you after my nap. No way! I don't think so. Without a doubt, no. The answer is clearly NO. (You can access the Computer Science Portal at www.pearsonhighered.com/gaddis.)arrow_forward
- A Guide to SQLComputer ScienceISBN:9781111527273Author:Philip J. PrattPublisher:Course Technology PtrPrinciples of Information Systems (MindTap Course...Computer ScienceISBN:9781285867168Author:Ralph Stair, George ReynoldsPublisher:Cengage Learning
- Programming Logic & Design ComprehensiveComputer ScienceISBN:9781337669405Author:FARRELLPublisher:CengageDatabase 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 Learning
![Text book image](https://www.bartleby.com/isbn_cover_images/9781111527273/9781111527273_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9781305251038/9781305251038_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9781285867168/9781285867168_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9781305627482/9781305627482_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9781285196145/9781285196145_smallCoverImage.gif)