Computer & IOS colaboration

create a Microsoft Word document titled “YourName_COMP150_W2_Assignment”. You will take screenshots and add information from the following steps into this Word document. Make sure to provide screenshots for each of these tasks. Pictures will not be accepted.

Computer tasks:

  1. Review the backup options for your operating system and provide evidence of it being enabled for your system with a screenshot.
  2. Open the firewall system and take a screenshot showing that it is enabled
  3. Setup the operating system’s mail app with your preferred e-mail account and provide evidence that is setup with a screenshot. For example, showing settings or a new email in draft mode.
  4. Show Skype (Windows 10) or Facetime (MacOS) opened and configured in your system with a screenshot. You can show this by showing your username or account option in Skype or Facetime.

Mobile device tasks:

  1. Setup your email and provide a screenshot of a draft email or the settings of your email.
  2. Create a bookmark for https://www.chamberlain.edu/Links to an external site. and provide evidence that has been setup in your internet browser (Chrome or Safari).
  3. Download this documentLinks to an external site. and show a screenshot of the file available in your device via file manager, Google Drive (Android) or AirDrop|iCloud (iOS). If you use other cloud file management apps such as Dropbox, this will be accepted as well.
  4. Download the Chamberlain mobile app and add it to your home screen. Provide a screenshot of the app on your device.
  5. Ask your virtual assistant to create a new appointment for tomorrow at 10 AM and provide a screenshot of your assistant’s response.
  6. Take a screenshot of information about your device which is located in the settings.

Once you have completed all of these steps, submit your Word document.

Hello World

 Hands on projects in chapters 9,10 and 12…….9-1 thru 9-6……10-1 thru 10-9……12-1 thru 12-6. Just answer the questions in this book Jason W. Eckert. – Linux+ and LPIC-1 Guide to Linux Certification, 5th Edition (2019)

Human Computer Interaction Discussion 3

which of the cognitive frameworks do you feel best help users determine how to complete a task and activity? 

After reading Chapter 4, which of the cognitive frameworks do you feel best help users determine how to complete a task and activity? You are required to write a statement that is LIMITED to 150 words. This is an opinion question; therefore, research is not required. Should you cite the work of others, please provide the source of your opinion in APA format.
 

Lab exercise

   

Payroll Lab

You will be taking in a file (payroll.txt) which details a number of departments (at least 1) and in each department are a set of employees (each department will have at least 1 employee or it would not appear on the payroll sheet). Your job is to read the file in separate out each employee and calculate the total values (hours, salary, number of employees) for each department and in each category (F1, F2, F3, F4). In your final submission please include the .cpp file which should work for any kind of payroll file I supply (which will naturally match the format of the examples below). Be sure to indicate in your submission text if you have attempted any of the bonus points .

   

An example file:

The IT Department
Bill 8 7 8 9 7 F1
Bob 205103 0.08 F3
Betty 8 8 7 8 8 F2
Brandon 10 10 9 6 9 F2
Brad 9 8 10 9 9 4 1 F4

The Sales Department
Kyle 88840 0.105 F3
Tyler 105203 0.085 F3
Konner 8 6 7 6 9 F2
Sam 309011 0.045 F3
Kent 9 8 9 9 9 0 0 F4
EOF

An additional example file:

The Sales Department
Mike 5 6 1 3 5 F1
Mark 98103 0.115 F3
Jill 8 8 8 8 8 F2

Frank 106101 0.095 F3

Mark 76881 0.091 F3

Department of Records
Konner 8 6 7 6 9 F2
Tammy 7 3 7 2 8 F1

Anika 8 8 8 8 8 F2

Marta 1 0 0 5 2 F1
Kent 9 8 9 9 9 0 0 F4
EOF

   

Last in the row after the hours comes the pay grade (F1, F2, F3, F4). The number of hours recorded is based on the pay grade of the employee. F1 and F2s will have 5 numbers for their hours. F3s are commission based where a sales amount and a commission percentage is given. F3s are also assumed to work 30 hours if their commission is 10% or below and 40 hours if their commission is above 10%. F4s will have 7 numbers (as they are on-call during the weekend). Each of the pay grades will also have different pay calculations which are as follows:

F1 = The total number of hours * 11.25
F2 = (The total number of hours – 35) * 18.95 + 400
F3 = The total sales amount * the commission rate
F4 = The first 5 hourly totals * 22.55 + Any weekend hourly totals (the last 2) * 48.75

Your output to the screen should start with the department name, followed by the total pay for all of the employees, then the total number of hours, and the total number of employees. After that you should have a breakdown of each category of employee: F1 total pay and total hours, F2 total pay and total hours…

Each department will have at least 1 employee and each department will contain the word “Department.”

The IT Department
Total Salary: $##.##
Total Hours: ###
Total Number of Employees: ##
Roster: Bill, Bob, Betty, Brandon, Brad 

   

F1:
Total Salary: $##.##
Total Hours: ###
Total Number of Employees: ##

F2:
Total Salary: $##.##
Total Hours: ###
Total Number of Employees: ##

F3:
Total Salary: $##.##
Total Hours: ###
Total Number of Employees: ##

F4:
Total Salary: $##.##
Total Hours: ###
Total Number of Employees: ##

   

The Sales Department
Total Salary: $##.##
Total Hours: ###
Total Number of Employees: ##
Roster: Kyle, Tyler, Konner, Sam, Kent

   

F1:
Total Salary: $##.##
Total Hours: ###
Total Number of Employees: ##

F2:
Total Salary: $##.##
Total Hours: ###
Total Number of Employees: ##

F3:
Total Salary: $##.##
Total Hours: ###
Total Number of Employees: ##

F4:
Total Salary: $##.##
Total Hours: ###
Total Number of Employees: ##

   

Before coding your solution, take the time to design the program. What are the possible things that the file can have that you need to anticipate? What are the actions that you need to take (read the file, add up hours…)? Are those actions things that could be placed in separate functions? What about the function – can you guess some of the things that will happen? Such as, using substring to pull out part of a line in the file maybe using stoi to convert a string to an integer to add it to the total or creating variables to hold the employee type you find before passing it to another function. Finally, how are these functions called, what is the order and what information is passed to and from? 

Scoring Breakdown

25% program compiles and runs
30% program reads in and calculates the figures for output
10% the program is appropriately commented
35% outputs the correct information in a clear format 

5% bonus to those who can output the F# responses in a columned output like that shown above.

5% order the employees in the roster according to their F status, F1’s first, then F2’s and so on.
5% bonus to those who do a chart comparing the data at the end to show the relation between the pay grades and the amount of salary spent in each (they style of chart is up to you and more points may be given for more difficult charts (like a line chart):

   

B Department
F1 – 00000000
F2 – 000000
F3 – 00000
F4 – 000000000000 

K Department
F1 – 0
F2 – 0000
F3 – 0000000000
F4 – 0000000 

  

Or event something like this instead:

0
0 0
0 0 0
0 0 0 0
0 0 0 0
F1 F2 F3 F4

Business Intelligence, Prescriptive Analytics and Big Data

Answer below four questions with in-text citations, latest at least 3 References, APA Format, Plagiarism Free. You may use the attached textbook for reference. Words 500+ excluding, title and references.

1. How does prescriptive analytics relate to descriptive and predictive analytics?

2. Explain the differences between static and dynamic models. How can one evolve into the other?

3. What is the difference between an optimistic approach and a pessimistic approach to decision-making under assumed uncertainty?

4. Explain why solving problems under uncertainty sometimes involves assuming that the problem is to be solved under conditions of risk?

Python Programming

 

Instructions:

1. Download Python. Here is the link:  https://www.python.org/downloads/ 

2. Select either Windows (you can install any version from 3.8.2)  or Mac (the latest version)

3. Follow the instructions for downloading. We will be using IDLE as the shell and then saving it as a .py program. The .py programs are what you will be submitting with this assignment.

Part 1

Problem to Solve:

BCC is a company situated in Paramus and has determined that its Annual Profits are typically 32.5% of the Total Sales. 

a. Write a program that asks the user to enter the projected amount of total sales, then display s the profit that will be made from that amount. (Hint: Use the value 0.325 to represent 32.5 percent).

b. Comment on your code with your name(Matthew Ramirez), Your class(INF-102-607LS) date(12/14/21), and the purpose of the program.

Uploads have to have the extension .py

Due on December 14, 2021, at 11:59 pm.

DO NOT COPY PROGRAMS FROM THE INTERNET. 

THE STUDENT WILL GET A ZERO.

Late assignment or Email attachment WILL NOT be accepted the student will get a zero.

Week 11 DQs

Q1. What are the Legal Consequences of a Data Breach?

Note: 250 words with intext citations and 2 references needed.

Q2. Solution providers sell their products as the answer to all business needs; however, this is really not always correct. Why? For this discussion, compare options within both ERP and CRM solutions. Does a company need both? Or can one solution meet every need? 

Note: Support your reasoning250 words with intext citations and 2 references needed.

CMGTCB/554: It Infrastructure Assessment

  

After the CEO reviewed your recommendation, he asked you to review the business application, the ERP system, and provide a system management plan. This plan provides the executive team with the details of a new or upgraded system implementation and helps to decide if it’s a viable solution for the business. A plan of this nature is typically 4 to 5 pages in length with charts when appropriate.

Develop a system management plan for a new enterprise system for International Plastics, Inc. 

Ensure you:

• Incorporate an ERP, CRM, Supply Chain Management (SCM), and data management into the International Plastics’ IT infrastructure. (Incorporate an ERP, CRM, Supply Chain Management (SCM), and data management into the International Plastics’ IT infrastructure)

cyper security

 

The Database system have diagrams, mention the Types of diagrams? with photos

2 pages not including title and ref

 

31/p2

  • What is a security policy and why does an organization need a security policy?
  • What are criticisms of security policies?
  • What could be implemented to improve on the criticisms?