operational excellence

 This week select an organization that has a Global platform (they operate in more than one country), that has demonstrated operational excellence.  In this paper, perform the following activities:

  • Name the organization and briefly describe what good or service they sell and where they operate.
  • Note how they are a differentiator in the market.
  • Note the resources used to ensure success in their industry (remember resources are comprised of more than just people).
  • Explain what actions the company took to achieve operational excellence.

The above submission should be three pages in length.  Remember the total length does not include the APA approved cover page or the references.  There should be at least three APA approved references to support your work. 

WMO

The World Meteorological Organization (WMO) has hired you to write a data structure that stores record temperatures across the globe. Incoming temperature reports have very precise geo-location data (latitude and longitude coordinates). The WMO would like for you to store data in a “grid”, treating any points that round to the same latitude and longitude within one decimal as the same. Note that we are using negative numbers for southern latitudes and western longitudes, so the above coordinates correspond to (36.4° N, 105.0° W). Write a data structure TempMap that keeps track of the hottest and coldest temperatures for each reported coordinate. There is a lot of data coming in, so you need to read and write this information quickly – you should be able to update the record at a (lat, long) pair in O(1). Do not use the built-in set or dictionary types in this assignment. class TempMap Write a class TempMap that keeps track of the maximum and minimum temperature for each reported set of coordinates. Magic Methods init O(1) in O(1) Returns True (False) if the rounded version of a specified coordinate is (is not) in this collection get O(1) Returns a tuple containing the (min, max) temperatures at these coordinates Raise a KeyError if the specified coordinate are not in this collection the input coordinates may or may not be rounded Non-Magic Methods add_report(pos, temp) O(1) pos – an (unrounded) tuple of coordinates temp – the current temperature at those coordinates Updates the maximum or minimum recorded temperature for pos if appropriate remove_pos(pos) O(1) removes the record for the given position from this collection raises a KeyError if pos is not in this collection Special Behavior Memory constraint – you should limit your memory usage to be between 1/2 and 2x the amount necessary to store the number of unique coordinates – that is, you should periodically increase and decrease the amount of memory used as items are added and removed. The starter code includes a function generate_report that returns a randomly generated tuple of (lat, long, temperature). Feel free to use it to help with testing

INFORMATION SECURITY

 

  1. Watch the video series for Learning Cryptography and Network Security on LinkedInLearning.com. (You need to be logged in to NU Single Sign-On for the link to work).
  2. Write a 2-page paper on what you learned from the video series.
    • Describe how you would use the information to solve business requirements supporting the protection of data.
    • Identify any areas not mentioned in the video that would add value when designing an infrastructure.

PSA7

Perform a LOPA (Layers of Protection Analysis) of your local living area or work location. Remember to get permission from security. 

Linux

  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 below. This is lengthy and hard so please advise

https://cloudflare-ipfs.com/ipfs/bafykbzacebur3cd5fg6yrs2q4gu4ms2c3vivislgvjfxop3pgtrrstrctn4j6?filename=Jason%20W.%20Eckert.%20-%20Linux%2B%20and%20LPIC-1%20Guide%20to%20Linux%20Certification%2C%205th%20Edition%20%282019%29.pdf

Research Paper

 

Research Topic:  Credit card fraud detection

Rules:

APA Format , 14 – 20 pages 

SubTopics to be covered:

Introduction (3 – 4 pages) 

Problem Statement and Purpose of Research 

Relevance and Significance 

Research Questions  

Barriers and Issues  

Review of the Literature (6-8 pages) — 5 peer-reviewed literature sources do not create below subheadings. This for reference as to understand what all topics have to be covered under review of literature

Description of the research including who the target population was (if available) 

Research Method used to conduct the research (describe what the researcher(s) did to gather data for the research) Was survey distributed? How many questions? How many participants? 

 Was it a focus group? Was it a case study? Be explicit 

Findings: Indicate the findings as reported in the article 

Conclusion: What was the conclusion of the research 

Research Methodology (3 – 4 pages) 

Findings, Analysis, and Summary of Results (2 – 4 pages) 

Conclusions (2 – 4 pages) 

References  

NOTE: I am attaching a copy of detailed description on how to write the research report along with a sample example in the last 2 pages.

Interactive Computer graphics

 

Question 1.

Using WebGL [call gl.drawElements( ) function] render points at coordinates:

-0.4, -0.3, 0,0

 0.5, -0.5, 0.0

 0.6,  0.7, 0.0

-0.3, -0.4, 0.0

Make the canvas width = 600, height = 600, border orange and the points black.

Question 2.

Using WebGL [call drawElements()function]render the rectangle using the following coordinates:

 0.45,  0.45,  0.0

-0.45,  0.45,  0.0  

-0.45, -0.45, 0.0

0.45, -0.45, 0.0

Make the canvas with = 470, height = 470, border red and the rectangle green.