Exp19_Excel_Ch09_CapAssessment_Tips

 Exp19_Excel_Ch09_CapAssessment_Tips 

 Exp19 Excel Ch09 CapAssessment Tips 

 Excel Chapter 9 Capstone Assessment – Tips 

  

Project Description:

Your friend Kimo is a server at a restaurant. He downloaded data for his customers’ food and beverage purchases for the week. You will complete the workbook by applying consistent formatting across the worksheets and finalizing the weekly summary. The restaurant requires tip sharing, so you will calculate how much he will share with the beverage worker and the assistant.

     

Start Excel. Download and open   the file named Exp19_Excel_Ch09_Cap_Assessment_Tips.xlsx.   Grader has automatically added your last name to the beginning of the   filename.
 

  The Excel workbook contains circular references. When you open the file, an   error message displays. This error will be resolved as part of the project

 

The Tip Left column in the   Friday worksheet contains a fill color and number formatting. You want to   fill these formats to the other daily worksheets.
 

  Group the Friday through Monday worksheets, staring with the Friday   worksheet. Fill the format only for the range E5:E24.

 

Now you want to insert column   totals for the five worksheets simultaneously.
 

  With the worksheets still grouped, insert SUM functions in the range B25:E25   and apply the Totals cell style. Ungroup the worksheets.

 

The Week worksheet is designed   to be a summary sheet. You want to insert a hyperlink to the Total heading in   the Monday worksheet.
 

  On the Week worksheet, in cell A5, insert a hyperlink to cell A25 in the   Monday worksheet with the ScreenTip text Monday’s Totals. Test the hyperlink to ensure   it works correctly.

 

In cell A6 on the Week   worksheet, insert a hyperlink to cell A25 in the Tuesday worksheet with the   ScreenTip text Tuesday’s Totals. Test the hyperlink to ensure it works correctly.

 

In cell A7, insert a hyperlink   to cell A25 in the Wednesday worksheet with the ScreenTip text Wednesday’s   Totals. Test   the hyperlink to ensure it works correctly.

 

In cell A8, insert a hyperlink   to cell A25 in the Thursday worksheet with the ScreenTip text Thursday’s   Totals. Test   the hyperlink to ensure it works correctly.

 

In cell A9, insert a hyperlink   to cell A25 in the Friday worksheet with the ScreenTip text Friday’s   Totals. Test   the hyperlink to ensure it works correctly.

 

Now, you are ready to insert   references to cells in the individual worksheets. First, you will insert a   reference to Monday’s Food Total.
 

  In cell B5 on the Week worksheet, insert a formula with a 3-D reference to   cell B25 in the Monday worksheet. Copy the formula to the range C5:E5.

 

The next formula will display   the totals for Tuesday.
 

  In cell B6, insert a formula with a 3-D reference to cell B25 in the Tuesday   worksheet. Copy the formula to the range C6:E6.

 

In cell B7, insert a formula   with a 3-D reference to cell B25 in the Wednesday worksheet. Copy the formula   to the range C7:E7.

 

In cell B8, insert a formula   with a 3-D reference to cell B25 in the Thursday worksheet. Copy the formula   to the range C8:E8.

 

In cell B9, insert a formula   with a 3-D reference to cell B25 in the Friday worksheet. Copy the formula to   the range C9:E9.

 

Now you want to use a function   with a 3-D reference to calculate the totals.
 

  In cell B10 on the Week worksheet, insert the SUM function with a 3-D   reference to calculate the total Food purchases (cell B25) for the five days.   Copy the function to the range C10:E10.

 

The servers are required to   share a portion of their tips with the Beverage Worker and Assistants. The   rates are stored in another file.
 

  Open the Exp_Excel_Ch09_Cap_Assessment_Rates.xlsx   workbook. Go back to the Exp_Excel_Ch09_Cap_Assessment_Tips.xlsx   workbook. In cell F5 of the Week worksheet, insert a link to the Beverage   Worker Tip Rate (cell C4 in the Rates workbook) and multiply the rate by the   Monday Drinks (cell C5). Copy the formula to the range F6:F9.

 

Next, you will calculate the   tips for the assistant.
 

  In cell G5 in the Tips workbook, insert a link to the Assistant Tip Rate   (cell C5 in the Rates workbook) and multiply the rate by the Monday Subtotal   (cell D5). Copy the formula to the range G6:G9. Close the Rates workbook.
 

  Note: The tip is a monetary value in the Week worksheet. It should be   formatted for Accounting Number Format.

 

You noticed a circular error   when you first opened the Tips workbook. Now you will find and correct it.
 

  On the Week worksheet, check for errors and correct the formula with the   circular reference. 

 

You want to create a validation   rule to prevent the user from accidentally entering a negative value. For   now, you will create a validation in the Friday worksheet.
 

  Select the range E5:E24 in the Friday worksheet, create a validation rule to   allow a decimal value greater than or equal to zero. Enter the input message   title Tip   and the input   message Enter the amount of tip. (including the period). Use the Stop alert with   the error alert title Invalid Number and the error alert message The tip must   be zero or more.   (including the period). Test the data validation by attempting to enter -20 in cell E5 and then cancel the   change.

 

Now you will copy the validation   settings to the other daily worksheets.
 

  Copy the range E5:E24 in the Friday worksheet. Group the Monday through   Thursday worksheets, select the range E5:E24, and use Paste Special   Validation to copy the validation settings.

 

You want to unlock data-entry   cells so that the user can change the tips in the daily worksheets.
 

  Group the Monday through Friday worksheets. Select the ranges E5:E24 and   unlock these cells.

 

Create footer with your name on   the left side, the sheet name code in the center, and the file name code on   the right side of all worksheets.

 

Now that you unlocked data-entry   cells, you are ready to protect the worksheets to prevent users from changing   data in other cells. Individually, protect each sheet using the default   allowances without a password.

 

Mark the workbook as final.
 

  Note: Mark as Final is not available in Excel for Mac. Instead, use Always   Open Read-Only on the Review tab.

 

Save and close Exp19_Excel_Ch09_Cap_Assessment_Tips.xlsx.   Exit Excel. Submit the file as directed.

For count=1 to 2 do

  

For count=1 to 2 do
Prompt for cust_email
Read cust_email
Prompt for movie_title
Read movie_title
IF movie_rating = ‘R’ THEN
Read cust_age
IF cust_age < 17 THEN
Display ‘Customer does not meet minimum age’
ENDIF
ENDIF
Read rental_quant
Sales_tax = 5%
Total_bill = (rental_quant * $1.50) + sales_tax
Display cust_email, total_bill
END
END FOR
 

Modify the pseudocode above to contain the following modules:
– Enter Customer Email
– Calculate the Bill
– Print the Bill
 

After the customer has finished entering the movie titles, the system will calculate and print the bill.
Create a hierarchy chart for the modules.
 

Then modify the pseudocode for the problem above to:
• Enter the MovieName into an array named movies and QuantityonHand into an array named MovieQuantity The information for the movies is below. (QuantityonHand = -999 when end the file is reached)
• Update Movie inventory (add to inventory/deduct from inventory)
• Calculate and print the customer bill.
• Calculate and print the total daily sales.
• Calculate and print the average number of movies rented.
The customer will be prompted to enter their email address and whether they want to rent or return a movie.
Rent a movie -after the customer has finished entering the movie title(s), the system will calculate and print the bill.
Return a movie – a message is printed on the screen after returning the movie(s).
Modify the hierarchy chart to include the new modules
 

MovieTitle Movie Rating Movie Genre Movie Release Date Quantity in Stock
 

Braveheart PG13 War 1995 5
Super Troopers R Comedy 2001 3
Little Mermaid G Children 1989 2
Crank R Action 2006 4
Blow R Drama 2001 1

COMPUTER SCIENCE

 

As a Web Design Consultant, your Client is interested in a simple inexpensive website to promote a new business. The client has asked you for your advice on what information should be listed on the website. Using the Learning Resource article, describe 5 important things that a web site should have in order to successfully promote a small business. 

  • Use the article, “Make Sure Your Small Business Website Does These 5 Things” to help you.

Need it by Friday 5pm eastern time.

Final Submission

This will be the complete submission of your project and implementation plan. You will need to defend and support your final work to the CEO and board.

Improve all previous project submissions based on graded feedback. Then assemble them into a final plan with a summary that advocates for your position. Think of this as making the final sale to a customer. Why should the CEO and board accept this as the best solution? What will the company gain by implementing this solution? How will we ensure that the solution is sustainable?

Along with your final deliverable, create a PowerPoint presentation containing 7-10 slides that you would use to present your findings at a board meeting.

Save the program as RunningTheRace.java

  

Instructons
Save the program as RunningTheRace.java
 

Please run the program from the command prompt

You will need to go to the folder where you’ve saved this file then type: 

javac RunningTheRace.java

This will compile the file then type:

java RunningTheRace

This will run the program

 
Write a program that asks for the names of three runners and the time, in minutes, it took each of them to finish the race. The program should display the names of the runners in the order that they finished. 

Data and System Security & Computer and Information Networking

Question #1

 Write a summary of Week 3’s PowerPoint slides (Chapter 3)  

Question #2 

Please read chapters  4,  5 and 6 of your textbook and answer the following questions:

1) ) What are the seven steps of a computer security defense plan. review chapter 4. (50 points)

2) What are the Three Categories of Security Policies. List and briefly discuss each category. Review Chapter 5. (30  points)  

3) What are the Responsibilities of Security Director? Review chapter 6. (20 points)

Paper – DSTR

Topic: 

  • Enhancing Cyber Security In Healthcare -With The Help Of Machine Learning

In this course you have effectively written a mock chapter 1 and 3 as well as a theoretical framework and literature review funnel. It is time to show off your hard work in the form of a paper.

Use the attached dissertation template to copy over your chapters 1 and 3 and your chapter two theoretical framework and funnel into the template 

1000 words and APA format needed.

Case Study Luxor Technologies

 Read the Case Study Luxor Technologies, Inc. beginning on page 462 of Case Studies.pdf download.  Answer the questions on page 465.  Use a Word or PDF document as submission.  Format should be 12 pt font, double spaced.  There is no word length requirement, but thorough responses are expected. 

Access Control Course Work Practical Assignment

Course Name: Access Control

At UC, it is a priority that students are provided with strong educational programs and courses that allow them to be servant-leaders in their disciplines and communities, linking research with practice and knowledge with ethical decision-making. This assignment is a written assignment where students will demonstrate how this course research has connected and put into practice within their own career.

Assignment:

Provide a reflection of at least 500 words (or 2 pages double spaced) of how the knowledge, skills, or theories of this course have been applied, or could be applied, in a practical manner to your current work environment. If you are not currently working, share times when you have or could observe these theories and knowledge could be applied to an employment opportunity in your field of study. 

Requirements:

Provide a 500 word (or 2 pages double spaced) minimum reflection.

Use of proper APA formatting and citations. If supporting evidence from outside resources is used those must be properly cited.

Share a personal connection that identifies specific knowledge and theories from this course.

Demonstrate a connection to your current work environment. If you are not employed, demonstrate a connection to your desired work environment.

You should not provide an overview of the assignments assigned in the course. The assignment asks that you reflect how the knowledge and skills obtained through meeting course objectives were applied or could be applied in the workplace.