![EBK USING MIS](https://www.bartleby.com/isbn_cover_images/8220103633642/8220103633642_largeCoverImage.jpg)
Concept explainers
Explanation of Solution
a.
Steps to import the spreadsheet data into the access:
Double click on the file “Ch06Ex02 _U10e.xlsx” that is downloaded and it will appear as shown below:
Screenshot of After opening the file
The above file will contain single sheet.
Open the existing access
Double click on the file “Ch06Ex02 _U10e.accdb” that is downloaded and it will appear as shown below:
Screenshot of Ch06Ex02 _U10e access database
- Open the table “CloudCosts” contains cost for each cloud processing resources.
To 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.
Screenshot of Getting external data dialog box
- Now Import Spreadsheet wizard get opened...
Explanation of Solution
b.
Steps to compute the cost of each resource:
- Click the “CREATE” tab and select a “Query Design” option.
- Close the “Show Table” dialogue box.
- Click “SQL view” option. The query page will be open and enter the following SQL query:
SELECT CloudCosts.Resource_Name, (CloudCosts.Cost*Sheet1.Jan18) AS Jan, (CloudCosts.Cost*Sheet1.Feb18) AS Feb, (CloudCosts.Cost*Sheet1.Mar18) AS Mar, (CloudCosts...
Explanation of Solution
c.
Steps to be followed to perform report creation:
- Once the query result will appear on the screen as above figure, navigate to “CREATE” tab and click a “Report” button.
- Now right click the Report and select “Design View” option, the design view wizard for the corresponding report will be opened as follows:
Screenshot of Design view for Report
- Now, enter the report name on Report Header by entering the text...
Explanation of Solution
d.
Steps to export the query into Excel and create pie chart report for corresponding query data:
- Double click the report which user want to import and click on the “External Data” tab and click on “Excel” icon on Export Tool.
- The following “Excel-Spreadsheet” window will be opened.
Screenshot of Excel Spreadsheet wizard
- Click the “Browse” button and select the place to save the report.
- Click the drop-down button on “File format” label and select the excel version...
Explanation of Solution
e.
Steps to create pie chart for total cost by month:
- Now open the excel report on the corresponding folder.
- Navigate to “Insert” tab and select “Pie” type chart from Charts Tool.
- Right click the chart and select “Select Data” option.
- Select the month name and its total row range...
Explanation of Solution
f.
Repeat the sub parts b, c, d, e with new cost:
After increasing the cloud cost by 10%, the result will be as follows:
Screenshot of CloudCosts Table
Steps to compute the cost of each resource:
- Click the “CREATE” tab and select a “Query Design” option.
- Close the “Show Table” dialogue box.
- Click “SQL view” option. The query page will be open and enter the following SQL query:
SELECT CloudCosts.Resource_Name, (CloudCosts.Cost*Sheet1.Jan18) AS Jan, (CloudCosts.Cost*Sheet1.Feb18) AS Feb, (CloudCosts.Cost*Sheet1.Mar18) AS Mar, (CloudCosts.Cost*Sheet1.Apr18) AS Apr, (CloudCosts.Cost*Sheet1.May18) AS May, (CloudCosts.Cost*Sheet1.Jun18) AS Jun, (Jan+Feb+Mar+Apr+May+Jun) AS Total
FROM CloudCosts INNER JOIN Sheet1 ON CloudCosts.Resource_Name = Sheet1.Field1;
Click the “RUN” button. The following result will be appeared as follows:
Screenshot of Query result
Steps to be followed to perform report creation:
- Once the query result will appear on the screen as above figure, navigate to “CREATE” tab and click a “Report” button.
- Now right click the Report and select “Design View” option, the design view wizard for the corresponding report will be opened as follows:
Screenshot of Design view for Report
- Now, enter the report name on Report Header by entering the text.
- In order to calculate the total cost resources for each month by select the column name in Detail section and navigate to “Design” tab. Select the “Total” list button and click “Sum”.
- Repeat the above step for all months.
- Finally click the “View” button.
Screenshot of Report for cloud resource cost
![Check Mark](/static/check-mark.png)
Want to see the full answer?
Check out a sample textbook solution![Blurred answer](/static/blurred-answer.jpg)
Chapter AE Solutions
EBK USING MIS
- Draw the NFA for thisarrow_forwardWhat are three examples each of closed-ended, open-ended, and range-of-response questions? thank youarrow_forwardCreate 2 charts using this data. One without using wind speed and one including max speed in mph. Write a Report and a short report explaining your visualizations and design decisions. Include the following: Lead Story: Identify the key story or insight based on your visualizations. Shaffer’s 4C Framework: Describe how you applied Shaffer’s 4C principles in the design of your charts. External Data Integration: Explain the second data and how you integrated it with the Halloween dataset. Compare the two datasets. Attach screenshots of the two charts (Bar graph or Line graph) The Shaffer 4 C’s of Data Visualization Clear - easily seen; sharply defined• who's the audience? what's the message? clarity more important than aestheticsClean - thorough; complete; unadulterated, labels, axis, gridlines, formatting, right chart type, colorchoice, etc.Concise - brief but comprehensive. not minimalist but not verboseCaptivating - to attract and hold by beauty or excellence does it capture…arrow_forward
- How can I resolve the following issue?arrow_forwardI need help to resolve, thank you.arrow_forwardLet the user choose encryption or decryption. For encryption, let user input the key in Hexadecimal number, the plain text in Hexadecimal number, output the ciphertext (in hexadecimal numbers). For decryption, let user input the key in Hexadecimal number, the ciphertext (in hexadecimal numbers), output the decrypted message (Hexadecimal number). Both encryption and decryption should output the different operation results for each round like the following: For example: Round 1: E(R0) = ...... (Hex or Binary) K1 = …… E(Ro) xor K1 = S-box outputs = …… f(Ro1, K1) = ….. L2 =R1 =……. La = Ra Round 2: .....• No Encryption/Decryption libraries or functions provided by the third party are allowed. Submit your program codes to Moodle with the notes of how to compile and run your program.arrow_forward
- When the given integer variable numberOfPackages is: greater than 12, output "Needs more than one box". between 5 inclusive and 12 inclusive, output "Large box". between 0 exclusive and 4 inclusive, output "Small box". less than or equal to 0, output "Invalid input". End with a newline.arrow_forwardsummarize in a short paragraph how to Advance Incident Response and Automation in ML home based security systemsarrow_forward1.[30 pts] Computers generate color pictures on a video screen or liquid crystal display by mixing three different colors of light: red, green, and blue. Imagine a simple scheme, with three different lights, each of which can be turned on or off, projecting onto a glass screen: We can create eight different colors based on the absence (0) or presence (1) of light sources R,G and B: R G B Color 0 0 0 Black 0 0 1 Blue 0 1 0 Green 0 1 1 Cyan 1 0 0 Red 1 0 1 Magenta 1 1 1 0 Yellow 1 White 1 Each of these colors can be represented as a bit vector of length 3, and we can apply Boolean operations to them. a. The complement of a color is formed by turning off the lights that are on and turning on the lights that are off. What would be the complement of each of the eight colors listed above? b. Describe the effect of applying Boolean operations on the following colors: Λ 1. Red(100) ^ Magenta(101)= Blue(001) 2. Bue(001) | Green(010)= 3. Yellow(100) & Cyan(011)= 2.[30 pts] Perform the following…arrow_forward
- D. S. Malik, Data Structures Using C++, 2nd Edition, 2010arrow_forwardMethods (Ch6) - Review 1. (The MyRoot method) Below is a manual implementation of the Math.sqrt() method in Java. There are two methods, method #1 which calculates the square root for positive integers, and method #2, which calculates the square root of positive doubles (also works for integers). public class SquareRoot { public static void main(String[] args) { } // implement a loop of your choice here // Method that calculates the square root of integer variables public static double myRoot(int number) { double root; root=number/2; double root old; do { root old root; root (root_old+number/root_old)/2; } while (Math.abs(root_old-root)>1.8E-6); return root; } // Method that calculates the square root of double variables public static double myRoot(double number) { double root; root number/2; double root_old; do { root old root; root (root_old+number/root_old)/2; while (Math.abs (root_old-root)>1.0E-6); return root; } } Program-it-Yourself: In the main method, create a program that…arrow_forwardI would like to know the main features about the following 3 key concepts:1. Backup Domain Controller (BDC)2. Access Control List (ACL)3. Dynamic Memoryarrow_forward
- COMPREHENSIVE MICROSOFT OFFICE 365 EXCEComputer ScienceISBN:9780357392676Author:FREUND, StevenPublisher:CENGAGE LNp Ms Office 365/Excel 2016 I NtermedComputer ScienceISBN:9781337508841Author:CareyPublisher:CengageProgramming with Microsoft Visual Basic 2017Computer ScienceISBN:9781337102124Author:Diane ZakPublisher:Cengage Learning
- A Guide to SQLComputer ScienceISBN:9781111527273Author:Philip J. PrattPublisher:Course Technology PtrDatabase Systems: Design, Implementation, & Manag...Computer ScienceISBN:9781305627482Author:Carlos Coronel, Steven MorrisPublisher:Cengage Learning
![Text book image](https://www.bartleby.com/isbn_cover_images/9781337102124/9781337102124_smallCoverImage.gif)
![Text book image](https://www.bartleby.com/isbn_cover_images/9781111527273/9781111527273_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/9781305251038/9781305251038_smallCoverImage.gif)