Category: Computer science

An ESP Program for Business English in Speaking and Writing – Essay Example

Paper#1-An ESP Program for Business English in Speaking and Writing – Essay Example
Category Book Review Academic Level PhD
Subject Computer Science Format APA
Sources 3 Pages 4
Paper Instructions/Description

Summary

This essay talks about the ability to create a specific relationship to the business and English speaking field as one which is dependent on creating an overall understanding of how individuals need to communicate within a specific environment…

ISM coding

The following restrictions on the data were discussed in the initial meeting:
– Customer Height will be measured in inches
– Sport Type is either basketball, hockey, football, or soccer
– Food Type is either drink, snack, or main dish
– Restaurant Type is either concession stand or sit down restaurant
– The Departments are Ticketing, Food Service, Gift Shop, Maintenance, and Security
– Multiple food orders occurred on March 17th, 2020.
– All events and orders occurred in 2020.

Implement the database in MySQL. Specifically, write a SQL script to do the following:
a. Create the Tables. Each Table must have a Primary Key constraint, Foreign Key
constraints where applicable, and other constraints as written in the table
instance charts.

Assembly language

Given an array [3, -1, 0, 4]
1) Initialize the array.
2) Print out these elements. Do not forget commas and brackets.
3) Print these elements in ascending order.
Example output:
[3, -1, 0, 4]
or [-1, 0, 3, 4]

Database system SQL

Project Description:
After receiving 21 different setups, the management of Oak Creek Stadium has decided on the
attached ER diagram and instance tables for the development of a database to keep track of its
operations. Your team has been contracted to implement the database in the MySQL relational
database management system (RDBMS).
The following restrictions on the data were discussed in the initial meeting:
– Customer Height will be measured in inches
– Sport Type is either basketball, hockey, football, or soccer
– Food Type is either drink, snack, or main dish
– Restaurant Type is either concession stand or sit down restaurant
– The Departments are Ticketing, Food Service, Gift Shop, Maintenance, and Security
– Multiple food orders occurred on March 17th, 2020.
– All events and orders occurred in 2020.
**NOTE: Use the standard solution at the end of this description
to complete the rest of the assignment.**

Querying in MySQL
A new management team has taken over Oak Creek Stadium due to its poor financial state.
The CEO believes that the slowing economy may have caused attendance at sporting events
to decrease. The CEO also believes that workforce reduction efforts need to be put in place
in order to improve Oak Creek Stadium’s financial standing. As a part of the reorganization
efforts, the CEO has requested that your team provide reports that will be used in the
organizational review.

Develop the following SQL queries:
a. The CEO is considering increasing ticket sales to improve the financial standing
of Oak Creek Stadium. The CEO requested a report that lists the average event
ticket price paid per customer. The list should only include the customer ID
and the average ticket price.

Select customerid,avg(ticket_price) from attendance group by customerid;

b. As a part of the workforce reduction effort, the Oak Creek Stadium CEO is
looking to layoff some employees in order to reduce overhead. Your team
received a request to provide a list of the full names of all employees, their
department, and their hire dates, listed in chronological order (by hire date).

Select concat(E_FName,concat(‘ ‘,E_LName)) as FullName, departmentId,E_HireDate from employee order by E_HireDate asc;

c. The CEO also wants a report of the total number of employees in each
department, listed in alphabetical order by department name.

d. In order to support the claim that attendance at sporting events is low, the CEO
requested a list of all sporting events in chronological order. The CEO would
like to see the sport type, home team ID, and visitor team ID in the report, as
well as the total number of customers that attended each event as “Number of
Customers in Attendance”.

e. Another approach to reducing overhead is to look at the top earners at Oak
Creek Stadium. Your team received a request to provide a list of all the
managers (displaying their full name as one field called “Manager Name”), the name of their department, and their salary (formatted as a $xx.xx). This list
should be in decreasing order based on salary.

f. The CEO wonders if there should be more holiday-themed promotions to
encourage food purchases at events. Your team received a request to provide a
list of all foods that have been ordered on March 17th, 2020, specifically the
food name, the total quantity sold, and the total sales (qty * price). The price
should be formatted as a $xx.xx.

g. The CEO is also considering offering p
romotions to encourage fans to attend
more than one sporting event. The report requested should include the customer
ID, full customer name of customers who have only attended one sporting
event. The report should also include the sport type of the event that was
attended.

h. It is discover
ed that season pass sales have also been decreasing. The CEO
wants to send a promotion to all current and past season pass holders. Your
team received a request to provide a list of the season pass holder ID, the full
name of the season pass holder, the expiration date of the season pass, and the
number of events that they have attended.

Select temp. FullName, SeasonPass. SeasonPassID, SeasonPass. ExpirationDate,temp. numberOfevents from SeasonPass inner join (Select concat(C_FName, concat(‘ ‘,C_LName)) as FullName, Customer. SeasonPass_ID ,d.number as numberOfevents from Customer inner join (Select CustomerID,count(EventID) as number from Attendance group by CustomerID) as d on d. CustomerID= Customer. CustomerID) as temp on temp. SeasonPass_ID= SeasonPass. SeasonPassID;

i. The CEO wants to thank all of the teams that have played at the stadium by
sending a letter to their coaches. The report requested should include all the
details of the teams that have played at the stadium.

Select distinct Team. TeamID, Team_Name,Coach_FName,Coach_LName ,City, State from Team inner join Event on Event. HomeTeamID = Team. TeamID UNION Select distinct Team. TeamID, Team_Name,Coach_FName,Coach_LName ,City, State from Team inner join Event on Event. VisitorTeamID = Team. TeamID;

j. In order to boost employee morale during the workforce reduction, the CEO
wants to give an award to the top employees who had the highest food sales in
2020. The report requested should list the employee ID, the employee’s full
name, and their grand total of food item sales (qty * price). List the employees
from the greatest sales to the least. Exclude total sales that are less than $200.
Select temp. EmployeeID,temp. totalsales,CONCAT(E_FName,CONCAT(‘ ‘,E_LName)) as FullName from (Select (FoodOrders.Quantity * Food.Food_Price) as totalsales,EmployeeID from FoodOrders inner join Food on FoodOrders. FoodItemID = Food. FoodItemID group by EmployeeID) as temp inner join Employee on Employee.EmployeeID = temp. EmployeeID and temp.totalsales > 200;

5. Views in MySQL (15 points)
To protect the data in the database, your team should develop a View and write the SQL
script for it. This view is specifically for employees so that they can see their employment
data. Include their employee ID, their full name, the date and time of the task they
completed, and the task name.

CIS 111 Assignment 2: Normalization

Please view the attached sample for the introduction part and citation. This is serious. I do not want any solution copied from other cites, Course hero or any similar cites I already have some of the copies which are posted on those related sites. So, I am not tolerating any plagiarism. Need neat work, clear and which is not copied from other sites.
Assignment 2: Normalization
Due Week 6 and worth 100 points
Suppose that you are the database developer for a local college. The Chief Information Officer (CIO) has asked you to provide a summary of normalizing database tables that the IT staff will use in the upcoming training session.
Write a two to three (2-3) page paper in which you:
Describe the steps that you would use in order to convert database tables to the First Normal Form, the Second Normal Form, and the Third Normal Form.
Provide one (1) example that is relevant to a college environment that illustrates reasons for converting database tables to the First, Second, and Third Normal Forms.
Explain typical situations when denormalizing a table is acceptable. Provide one (1) example of denormalizing a database table to justify your response.
Explain the significant manner in which business rules impact both database normalization and the decision to denormalize database tables.
Use at least three (3) quality resources in this assignment. Note: Wikipedia and similar Websites do not qualify as quality resources.
Your assignment must follow these formatting requirements:
Be typed, double spaced, using Times New Roman font (size 12), with one-inch margins on all sides; citations and references must follow APA or school-specific format. Check with your professor for any additional instructions.
Include a cover page containing the title of the assignment, the student’s name, the professor’s name, the course title, and the date. The cover page and the reference page are not included in the required assignment page length.
The specific course learning outcomes associated with this assignment are:
Recognize the purpose and principles of normalizing a relational database structure.
Design a relational database so that it is at least in 3NF.
Use technology and information resources to research issues in database systems.
Write clearly and concisely about relational database management systems using proper writing mechanics and technical style conventions.

Network Bridges And Routers

Lab 3 Option A
Please use the Internet to find more information about network bridges and routers. Write a report using APA format discussing bridging versus routing. Your report must be between 4-5 pages, not including the title page, and reference page.
Please do not plagarize a tool called chalk and wire will be used to detect any plagirism. Please make sure all resources are in APA formatting.

English Paper Web Vulnibilities

Please write a paper on the topic listed below.

Topic: Vulnerable Web Applications

The paper should be doubled spaced, should be approximately 7 pages long, there should be no plagiarism, all sources used for this paper should be cited in an APA format. Also in this paper please state what is wrong with vulnerable web applications today also please state the solution to this problem as well.

This paper should include a title page, project purpose, hypothesis, tasks or actions, audience, proposed research and discussion, conclusion, reference. Please put quotes in quotation and refer them to the source. All you have to do is arrange this paper in the order listed above.
Please write a paper on the topic listed below.

Topic: Vulnerable Web Applications

The paper should be doubled spaced, should be approximately 7 pages long, there should be no plagiarism, all sources used for this paper should be cited in an APA format. Also in this paper please state what is wrong with vulnerable web applications today also please state the solution to this problem as well.

This paper should include a title page, project purpose, hypothesis, tasks or actions, audience, proposed research and discussion, conclusion, reference. Please put quotes in quotation and refer them to the source. All you have to do is arrange this paper in the order listed above. This paper should include 15 powerpoint slides.

Note: The instructor will be running this paper through chalk and wire to check for any plagiarism please make sure all your information that is used for this paper should be in APA format. Please tend to use less resources someone writing this paper should have computer science experience or someone should be experienced and familiar with the topic above. Please write this paper as accurately as possible.

Note: The instructor will be running this paper through chalk and wire to check for any plagiarism please make sure all your information that is used for this paper should be in APA format. Please tend to use less resources someone writing this paper should have computer science experience or someone should be experienced and familiar with the topic above. Please write this paper as accurately as possible.

Security in System Design

What are some of the advantages of incorporating security measures into the design and implementation of information systems? What obstacles might be encountered?

Supporting Activity

Sustainability in IT is a common topic that has its root in efficiency in systems operation. Discuss some technical and nontechnical ways to reduce the cost and environment impact of system operations

Supporting Activity: Model-Driven Software Development

In your own words, describe model-driven software and test-driven development.

Compare these to other software and development approaches.

error: Content is protected !!