computer business application

SIMnet for Word, Excel, Access, and PowerPoint 365/2019 Complete, Manning SIMbooks. Needs to be done with US ip address. Easy assignment but needs to be completed in 5 days.

DAT/305

Every developer is focused on transmitting data securely. Hashing and hash functions are essential for securing business information and data. While the term cryptographic hash function may sound intimidating, it’s much simpler than it sounds. For this assignment, expand on the information provided in the course and fully address the items below.

Write a 2- to 3-page paper in which you: 

  • Define cryptographic hash function (CHF).
  • Elaborate on the main properties and definitions of an ideal cryptographic hash function.
  • Propose 2 business applications or uses for a cryptographic hash function (e.g., password verification) and include a description of how it is used.

Format your paper according to APA guidelines.

Write a program that reads

  

Write a program that reads a person’s name, their birth year, birth month, birth day, current year, current month and current day and computes and prints

1. The age of the person in years

2. The day of the week on which the person was born (Using Zellers congruence)

3. The season in which the person was born

. C++ program

Final Report

 

 My Topic is Research Methods in Cyber Threat Intelligence

Define each area/domain and its significance. 

Define  how significant and relevant that problem to Cybersecurity, and what kind of threats are there which need to be addressed.

In the third section, you will be summarizing, each state of the art techniques focused towards addressing above discussed issues that have been published in the last 10 years.

In the last section you will try to answer the gap or the un-addressed issues, which has yet to be answered (of course in your perspective)

Present it

For sections 1 and 2 you can use any unpublished (but reliable source) information, which includes, Tech. reports, or tech magazines (avoid social media-based articles they are not viable sources of information).For section 3 and 4, you will only have to cite at least 15  peer-reviewed articles, from conferences, journals, and book chapters. No other citation will be accepted. I will check plagiarism using online software, so if you have copied and pasted from anywhere on the internet it will be visible in the report. This means, you are only allowed 20% of overlap with internet material, and you will have to write everything in your own words.  Plagiarism over 20% will simply entail zero marks.  

unit 3 submission link

 

In this literary response, you will find a famous work of art, write a researched history of the artist and the artwork, and create a Descriptive Poem that uses imagery to describe the artwork and your reaction to it.

This assignment focuses on your ability to: research academic and reliable sources; translate the information from those sources into a cohesive piece of writing; respond creatively to artwork.

The purpose of completing this assignment is: as a student and a career professional, and individual, you will often be required to research information that will further a school assignment, a work-related project, or a personal endeavor. Also, you might be asked to translate research into a written or oral presentation that you can share with coworkers and peers in a way that will describe, persuade, or evoke emotion. This assignment has all of these skills!

Please be sure to read the assignment page and rubric for complete criteria and requirements. 

Exp19_Excel_Ch08_CapAssessment_Employee_Satisfaction

 

Exp19_Excel_Ch08_CapAssessment_Employee_Satisfaction

 

Project Description:

You work as a data analyst for Camino Marketing, a U.S.-based web marketing company. You have been asked to conduct an employee satisfaction survey. As part of the survey, you will collect sample data to help provide insight into employee salaries, productivity within the three national offices, and to predict the growth of the New York office’s client base by 2025.

1

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

2

Ensure the Employee Satisfaction   worksheet is active, then use the FREQUENCY function to calculate the   frequency distribution of job satisfaction in column D. Place your results in   the range G5:G9.

3

Enter a function in cell G12 to   calculate the standard deviation of column c.

4

Enter a function in cell G13 to   calculate the variance between salaries. 

5

Enter a function in cell G14 to   calculate the Covariance of the salaries and job satisfaction in the data   set. Note this is a sample of data not a population.

6

Enter a function in cell F17 to   calculate the correlation coefficient between employee salary and job   satisfaction.

7

Ensure the Data Analysis ToolPak   add-in is active. Use the Data Analysis ToolPak to create a histogram based   on the salaries in column C. Use the range I4:I9 as the Bin Range. Ensure   that Cumulative percentage, column labels, and chart output are included in   the results. Place the results in cell K4. Edit the result text in cell K4 to   display   Salary, if   necessary.

8

Ensure the Office_Data worksheet   is active. Use the Data Analysis ToolPak to perform a single factor ANOVA on   the range C3:E35. Place the results starting in cell G3. Be sure to include   column labels. Resize columns G:M as needed.

9

Create a Forecast Sheet that   depicts year over year growth in customer growth. Set the Forecast end year   as 2025 and place the results on a new worksheet named 2025Forecast.

10

Ensure the Customers worksheet   is active then create a scatter plot chart that places the Years on the X   axis and the Clients on the Y axis. Add a linear trendline to the chart that   also shows the Equation and the R-square. Add the title Customer   Growth.

11

Enter a function in cell E4 to   calculate the intercept of the linear trendline created in the prior step.

12

Enter a function in cell F4 to   calculate the Slope of the linear trendline.

13

Enter a function in cell G4 to   calculate the R-square of the linear trendline.

14

Enter a function in cell H4 to   calculate the Standard Error. 

15

Use the FORECAST.LINEAR function   in cell E7 to the total number of customers by the end of 2021. 

16

Complete your analysis by added   formulas in the range F7:G7 to calculate the high and low thresholds of the   forecast.

17

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

Write a program that draws a simplified bar chart

In this homework, you’ll write a program that draws a simplified bar chart, that is, a diagram that visually includes bars of greater length for greater input numbers. It will first ask the user how many data points there will be, and then will read the data; and for each data point will print a row that contains that many @ signs, according to a specific format (see below).Includes header comment and prints something relevant
Prompts user for number of bars, and stores it in a variable
Loops the correct number of times
Reads a number each time through the loop and prints @s
Follows the format specified below for all input/output. The initial prompt for the user should be “How many lines?”, and then the program should print the instruction to “Type that many numbers.” and then for each number it prints a line with a vertical bar (shift-backslash) followed by the correct number of @s. For instance, the following is what it should look like if the user wants a 3-bar chart, with the bars representing the numbers 5, 2, and 11 respectively (except the parts that come from user input are shown here in bold, italic, and green, to make it clearer what’s going on—the bold/italic/green won’t show up in your codeboard screen):How many lines? 3Type that many numbers.5| @@@@@2| @@11| @@@@@@@@@@@In addition to receiving points for getting the format exactly right, if you follow the format exactly, codeboard will be able to test your code for correctness long before I have a chance to grade it. Note: in case it’s not clear, this assignment only requires Python stuff we’ve done in class. The “bar charts” here are purely text—no extra graphics needed.