pseu code

Attached document on how to do homework please follow instructions

 

Complete the Lab 9-5, “Programming Challenge 1 — Going Green,” of Starting Out with Programming Logic and Design.

Note: You are only required to create the flowchart for this activity; however, notice how the pseudocode compares to the given Python code for this assignment.

Submit your assignment using the Assignment Files tab.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Exp19_Access_Ch03_Cap – Brilton Madley Games 1.0

Project Description:

Brilton Madley, a board game manufacturer, hired a new CEO. She asked for your assistance in providing summaries of data that took place before she started with the company. To help her with her strategic planning, you will create queries to perform data analysis. Based on your meeting, you plan on creating four queries. One query will find orders with minor delays. Another query will summarize company revenue and cost by country. A third query will be used to help evaluate payments made by customers on their orders. The final query will calculate the total sales by sales representative title.

Steps to Perform:

Step Instructions Points Possible

1 Start Access. Open the downloaded Access file named Exp19_Access_Ch03_Cap_Brilton_Madley_Games.accdb. Grader has automatically added your last name to the beginning of the filename. 0

2 Create a query using Query Design. From the Customers table, include the fields FirstName, LastName, and Phone (in that order). From the Orders table, include the fields OrderID, OrderDate, and ShippedDate (in that order). Run the query and then examine the records. Save the query as Shipping Efficiency. 5

3 Add a calculated field named DaysToShip to calculate the number of days taken to fill each order. (Hint: the expression will include the OrderDate and ShippedDate fields; the results will not contain negative numbers.) Run the query and then examine the results. Save the query. 10

4 Add criteria to limit the query results to include any order that took more than 30 days to ship. 5

5 Add the Quantity field from the Orders table and the ProductName field from the Products table to the query (in that order). Sort the query by ascending LastName. 5

6 Add the caption Days to Ship to the DaysToShip field. Switch to Datasheet view to view the final results. Save and close the query. 5

7 Create a query using Query Design and add the Customers, Orders, and Products tables. Add the Country field from the Customers table. Set the field’s Total row to Group By. Save the query as Revenue and Cost by Country. 4

8 Add a calculated field in the second column. Name the field TotalRevenue. This field should multiply the quantity ordered (from the Orders table) by the unit price for that item (from the Products table). Format the calculated field as Currency and change the caption to Total Revenue. Change the Total row for the TotalRevenue field to Sum. 10

9 Add a calculated field in the third column. Name the field TotalCost. The field should multiple the quantity ordered (from the Orders table) by the unit cost for that item (from the Products table). Format the calculated field as Currency and add a caption of Total Cost. Change the Total row to Sum. Run the query. Save the query. Return to Design view. 11

10 Add the OrderDate field and criteria to that field so that only orders made between 7/1/2018 and 12/31/2018 are displayed. Change the Total row to Where. This expression will display only orders that were completed during the second half of 2018. Run the query and view the results. Save and close the query. 10

11 Create a copy of the Revenue and Cost by Country query named Customer Payments. Switch to Design view of the new query and remove the Country, TotalCost, and OrderDate fields. Add the FirstName and LastName fields. Move the TotalRevenue field to the end. Rename the TotalRevenue field to OrderTotal. Change the caption to Order Total. 5

12 Add a new field using the Expression Builder named SamplePayment. Insert the Pmt function with the following parameters:

• Use .05/12 for the rate argument (5% interest, paid monthly)

• Use the number 12 for the num_periods argument (12 months)

• Use the calculated field OrderTotal for the present_value

• Use 0 for both future_value and type 10

13 Change the Total row to Expression for the SamplePayment field. Change the Format for the SamplePayment field to Currency. Run the query and verify the second order(with LastName Sparks) has a sample payment of $26.80. Note: it will display as a negative number. Save and close the query. 10

14 Create a copy of the Revenue and Cost by Country query named Revenue by Sales Rep. Switch to Design view of the new query and remove the entire Customers table, the TotalCost, and OrderDate fields. Add the Sales Reps table. Add the Title field from the Sales Reps table and move it to the front of the TotalRevenue field.

5

15 Run the query and then examine the summary records; there should be 4 Titles listed. Switch to Design view and change the sort order so that the title with the highest TotalRevenue is first and the title with the lowest TotalRevenue is last. Run the query and verify the results. Save and close the query. 5

16 Close all database objects. Close the database and then exit Access. Submit the database as directed. 0

Total Points 100

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

ITS836 Assignment 1: Data Analysis in R

  

ITS836 Assignment 1: Data Analysis in R

1) Read the income dataset, “zipIncomeAssignment.csv”, into R. (You can find the csv file in iLearn under the Content -> Week 2 folder.)

2) Change the column names of your data frame so that zcta becomes zipCode and meanhouseholdincome becomes income.

3) Analyze the summary of your data. What are the mean and median average incomes?

4) Plot a scatter plot of the data. Although this graph is not too informative, do you see any outlier values? If so, what are they?

5) In order to omit outliers, create a subset of the data so that:

 $7,000 < income < $200,000  (or in R syntax , income > 7000 & income < 200000)

6) What’s your new mean?

7) Create a simple box plot of your data. Be sure to add a title and label the axes.

HINT: Take a look at: https://www.tutorialspoint.com/r/r_boxplots.htm (specifically, Creating the Boxplot.) Instead of “mpg ~ cyl”, you want to use “income ~ zipCode”.

In the box plot you created, notice that all of the income data is pushed towards the bottom of the graph because most average incomes tend to be low. Create a new box plot where the y-axis uses a log scale. Be sure to add a title and label the axes. For the next 2 questions, use the ggplot library in R, which enables you to create graphs with several different types of plots layered over each other.

8) Make a ggplot that consists of just a scatter plot using the function geom_point() with position = “jitter”  so that the data points are grouped by zip code. Be sure to use ggplot’s function for taking the log10 of the y-axis data. (Hint: for geom_point, have alpha=0.2).

9) Create a new ggplot by adding a box plot layer to your previous graph. To do this, add the ggplot function geom_boxplot(). Also, add color to the scatter plot so that data points between different zip codes are different colors. Be sure to label the axes and add a title to the graph. (Hint: for geom_boxplot, have alpha=0.1 and outlier.size=0).

10) What can you conclude from this data analysis/visualization?

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Corporate Infrastructure Final Proposal

this is not an essay but a power point I have attached my company profile and a example of what it should look like it dosnt need to be as in great detail but more the better: http://normcoleman.norkris.com/Samples/HappyHavenDayCareCenter-NetworkDesignProposal2.pdf

it must include the following:

create a comprehensive proposal and training document for your   company. You will need to include the following items within your proposal.

  1. Recommended infrastructure and technology requirements, with     justifications for your decisions
  2. Your final network   diagram
  3. Final configurations for each switch and router
  4. Cost analysis (include rough numbers for all networking devices,     along with installation/labor hours at $50 per hour)
  5. Work     breakdown structure
  6. Risk analysis that details risk levels     and impact information.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Exploring Microsoft Excel 2016, Application

  

Prepared Exam
Exploring Microsoft Excel 2016, Application

  

Mark’s Construction and Realty

Mark’s Construction and Realty buys and flips houses. They have hired you to look at their sales numbers from last year to analyze the data. They have instructed you to see if there are any trends in the types of houses they typically purchase, if there is a correlation between the number of houses sold and sale date, and which sales should be included in the project managers’ year-end bonus. 

Perform Preliminary Work

You need to open the existing workbook they provided, save it with a new name, and make a few preliminary modifications.

a. Open the e00_cumexam_data workbook and save the workbook as e00_cumexam_LastFirst.

b. Change the width of column E to 15.00.

c. Insert a new row above row 1.

d. Enter the text 2017 Sales Data in cell A1, change the font size to 14 and apply bold.

e. Add a fill color of Blue, Accent 1 for cell A1.

f. Merge and center the range A1:I1.

g. Freeze the headers so when you scroll down the headers are always visible.

Calculate Profit and Determine if Project is Eligible for Bonus

You are ready to calculate the total costs. 

h. Insert two columns after Sale Price named Total Cost and Profit respectively.

i. Insert a function in cell H3 to calculated the total cost of each project. 

j. Insert a function in cell I3 to calculated the profit of each project. 

k. Create an IF statement in cell K3 where if the profit is greater than $50,000 it will display the text Yes, otherwise it will display the text No.

l. Copy the three formulas down their respective columns.

Organize Monthly Data

The company has already collected data about how many of each type of house they sold each month. You will convert the data into a table, apply a table style to make the data more visually appealing, and add total rows for use in the analysis grids later.

m. Click the Sheet2 worksheet and rename it Analysis.

n. Convert the entire dataset into a new table named Date with a table style of Table Style Medium 6.

o. Calculate a total for each house type in column N.

House Type Analysis

You will analyze each house type to determine if the company has a tendency to purchase a certain type of a house.

p. Create a 2D-Pie chart that displays the total number of houses by house type and apply chart type Style 7.

q. Move the chart to the left side of the screen directly under the table data.

r. Change the chart title to House Type.

s. Move the legend to the top-left corner.

t. Explode the largest piece of the pie to a Point Explosion of 20%

u. Add Data Callout data labels to the chart.

Sales Analysis

You will analyze the sales numbers across each month to determine in which months buyers tend to purchase houses.

v. Calculate a new total row for each month.

w. Create a 2D-Line chart that displays total house sales by Month and apply chart style Style 6 and move it to the right of the pie chart.

x. Change the chart title to Total Sales

y. Change the plotted line color to White, Background 1.

z. Add a column to the Date table after House Type called Sparkline.

aa. Add a sparkline for each house type over the 12-month period in the new Sparkline column.

Finalize the Workbook

You will make some small formatting changes.

bb. Set the page orientation to Landscape.

cc. Insert a footer with your instructor’s name on the left side, the date in the center, and your Last,First name on the right side.

dd. Save and close the workbook. Based on your instructor’s directions, submit e00_cumexam_LastFirst. 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Software Paper

 Describe five separate software and submit the following information:

Submission Instructions:

Software Name:
Category (System, Utility, or Application)
Purpose: Describe what features the software provides, and why you would use or currently use the software. (Not all users take advantages of all software features.)
Opinion: Your opinion of the software.
You may use any word format to document your assignment, i.e., text or tables.

Resource:

The Best Free Software

Please note: An application software improves users’ productivity and supports the tasks. Utility software (also known as service program, service routine, tool, or utility routine) is a type of computer software; it is specifically designed to help manage and tune the computer hardware. The operating system, also known as system software, manages the computer—I like to call it the “BOSS” of the computer system. I hope this explanation offers further level of distinctions among software programs.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

Computer Science ISSC452 Assignment 4

 

Instructions

In order to complete assignment #4 you will need to answer the below questions. Please complete the questions in a Word document and then upload the assignment for grading. When assigning a name to your document please use the following format (last name_Assignment #4). Use examples from the readings, lecture notes and outside research to support your answers. The assignment must be a minimum of 1-full page in length with a minimum of 2 – outside sources. Please be sure to follow APA guidelines for citing and referencing source. Assignments are due by 11:59 pm Eastern time on Sunday.

RESEARCHING INTRUSION DETECTION SYSTEMS Using the Internet and other print material, gather data about intrusion-detection systems (IDSs). Research 3-5 different vendor systems. Compare their list of features (active IDS, passive IDS, network-based, host-based, anomaly systems, etc.). Create a table that compares the features. Based on your research, which system would you recommend and why? 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

proposition 8

 

In order to complete assignment #1 you will need to answer the below questions. Please complete the questions in a Word document and then upload the assignment for grading. When assigning a name to your document please use the following format (last name_Assignment #1). Use examples from the readings, lecture notes and outside research to support your answers. The assignment must be a minimum of 1-full page in length with a minimum of 2 – outside sources. Please be sure to follow APA guidelines for citing and referencing source. Assignments are due by 11:59 pm Eastern time on Sunday.

Privacy is a concept that is rapidly evolving in relation to the most public of mediums, the Internet, which became even more super-charged with social networking websites. In a recent California election, one ballot measure, Proposition 8, asked voters a question on marriage. Donors to the Prop 8 campaign found that their names, addresses, and amount of contribution were masked up with Google Maps and thus rendered into a format showing the world a map image of donors’ names, street addresses, and dollar contributions. All this data is public record information already, but still quite inconvenient to access. What are the side effects of this action?Assignment Rubric ( 100 Points)Synthesis of Concepts60Writing Standards – APA format20Timeliness20 

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

CYBER SECURITY

Part one Discussion 

In this discussion, you are going to research Vigenere Cipher. Use the Vigenere Table to encrypt the message using the key ORANGE:
  Hard work always pays. 
Now use the same key, to decrypt this message:
Oktnio ok dncr
Instructions:

  1. Ignore all cases and punctuations
  2. Do not encrypt or decrypt spaces
  3. Post your answers and explain your experience and why Vigenere is not acceptable as an algorithm in today’s computing environment

PART TWO

 

Instructions

  1. Data compression is used mostly in data storage. Examples of compression tools are WINZIP and 7Zip. Explain which of the following is better for security purposes – Encrypt and Zip or Zip and Encrypt

Analysis

0 – 40 points

41 – 90

Demonstrates a lack of understanding and inadequate analysis of encryption and compression

Demonstrates a general understanding of encryption and compression

Writing Quality & Adherence to Format Guidelines

0-6 points

9-10 points

Paper shows a below average/poor writing style lacking in elements of appropriate standard English and following proper APA guidelines.

Paper is well written and clear using APA guidelines and standard English characterized by elements of a strong writing style.

Please complete this assignment in a Word document and then upload the assignment for grading. When assigning a name to your document please use the following format (last name_Assignment #1). Use examples from the readings, lecture notes and outside research to support your answers. Please be sure to follow APA guidelines for citing and referencing source.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now

IT540 Create a Security Policy

 

Create a Security Policy

Purpose

To help solidify and reinforce the concepts you studied in the unit involving the development of a computer network security policy.

Instructions

Part 1: Devise a Security Policy

Think about a business you are familiar with that uses networks and computers to support business functions. Create a list of 10 important, specific IT/information assets. The list might contain items such as the following:

  • Components — Servers, computers, mobile devices, IoT devices, other equipment, etc.
  • Information — Sales data, client data, financial data, etc.
  • Network configuration

Identify the threats these important items are subject to. Devise a security policy to mitigate that threat. Document your analysis process used to develop this policy. Note that this information will be useful moving forward in the course, so develop it fully at this time.

Example: A company laptop is a portable device which is a trackable asset. A possible threat against this asset is theft or loss. A mitigation for this threat is to require encryption on the device to secure data in the event the device leaves control of an authorized party.

Part 2: Security Policy Assessment

Read the following mini-security policy. Assess this security policy in the following four major areas. What is missing, incomplete, inaccurate, or ill-advised? Provide a rationale for your concerns.

R&D Financial Services, LLC Security Policy

Each document should have a footer or header identifying the level of sensitivity. Suggested sensitivity levels are unrestricted and client sensitive.

Email clients should enable SSL encryption for ActiveSync, POP3 and SMTP. SSL should also be used for web-based email. That way, regardless of where people work, their email traffic will not expose any data to network eavesdropping techniques. If client confidential data must be emailed amongst any third-party firms and/or consultants, the file should be encrypted, perhaps using a cross-platform product such as PGP or S/MIME, so that data cannot be read from email servers along the way.

File servers with shared folders should have access controls enabled to only members of the authorized group. Shared folders should also be encrypted so that physical theft of the server, its hard drives, or the backups will not compromise data confidentiality.

Periodic backups will be made of server hard drives and stored offsite in a secure location such as a safety deposit box. Access to the backups will be shared.

Only a select few consultants under contract with R&D Financial Services, LLC will be given the file server Administrator account password. Laptop computers will not automatically login the administrator and each account will be password protected. Local folders containing client sensitive data should be encrypted so that theft of the laptop or its hard drive will not compromise data confidentiality.

Portable storage devices, such as USB and thumb drives, may be used to store client sensitive documents if they are stored in encrypted folders or drive images.

Laptop computers will have screen savers enabled with password protection. Users will switch on their screen saver to lock the computer when they walk away from it.

Passwords should be chosen wisely, i.e., common dictionary words would not be used.

Needs help with similar assignment?

We are available 24x7 to deliver the best services and assignment ready within 3-4 hours? Order a custom-written, plagiarism-free paper

Get Answer Over WhatsApp Order Paper Now