application security Write 200 to 300 words defining security policy conformance why it is important
Professionalism assignment help
NEEDS SLIDES and SUPPORTING NARRATION
I WILL DO THE VOICE AFTERWARDS
Bulleted Points on each slide should include brief points that identify the areas that will be addressed in the narration.
Your PowerPoint presentation should include a total of six slides using the following format:
Slide 1: Cover page that includes assignment title, your name, course, section number, and date.
Slide 2: Introduction of Company (1–2 minutes of narration)
- Introduce the presentation by explaining information about the organization and the observation that took place such as the name of the organization, type of organization, day and time of observation and your role as an observer (are you an employee, customer, etc.).
- Share background information about the company to give the audience an understanding of what this organization does. Support the ideas shared with research about the company’s background.
Slide 3: Professional Appearance of Employees and Company (1–2 minutes of narration)
- Use these questions to guide your response (do not use these questions verbatim in your presentation):
- How do the employees dress?
- Is there anything about the appearance of the employees that distracts from their professionalism?
- Do the employees’ appearance fit the nature of the business? Why or why not?
- What does the working environment look like? (furnishings, artwork, lighting, sounds, etc.)
- Do the physical surroundings fit the nature of the business? Why or why not?
- How do the employees interact with each other and outside people within the workplace? (greetings, tone of conversation, non-verbal communication, etc.)
- How do employees interact with each other?
- Do the interactions of employees fit the nature of the business? Why or why not?
Slide 4: Analysis of Company (1–2 minutes of narration)
- What inferences can you make from your observation? You should cover the following ideas in your explanation:
- Analyze the company based on information you have learned about organizational culture in the class. Areas to include:
- Determine the dominant organizational culture the company follows by choosing one of the 4 organizational cultures you learned during this unit of the course. Support this information with what you have learned about organizational culture based on both observations and research.
- Compare the work done at the company and the organizational culture and explain how this relates.
- Research the mission of the company and explain if it aligns with what you have observed. Explain why or why not.
- Analyze the company based on information you have learned about organizational culture in the class. Areas to include:
Slide 5: Evaluation of Your Fit (1–2 minutes of narration)
- Based solely on what you have observed and researched about the company (not based on the field of the company), do you feel you would be a good fit for this company? Why or why not?
- Support this information with what you have learned through your observation as well as what you have researched about the company.
- Identify at least 2–3 social and behavioral attributes you have that would be an asset to this company. Explain why. How do these attributes specifically connect with the nature and needs of the company?
Slide 6: Reference Slide – follows APA guidelines. (Reminder: for each source on the reference slide, there must be a corresponding in-text citation in the body of the presentation.)
Narration Guidelines: Your narration for the slides should demonstrate the following:
- Maintain a persuasive tone by summarizing observations and evaluations for each slide.
- Words should be clearly enunciated, and professional tone should be sustained throughout the presentation narration.
- Audio recording should be free of background noise and interruptions.
Assignment Format
- Two attachments will be needed to hand in for this assignment:
- PowerPoint Presentation including narration with six slides that is professionally organized
- Transcript shared in a Microsoft Word document should be included (be sure to separate each slide on a separate page).
- Replace all template wording with brief bulleted points in your own words that guides the audience.
- Slides 2–5 should include narration. See information on Slide 2 in the template which explains how to add narration to a PowerPoint slide – (be sure to remove this slide before posting to the Dropbox)
- Ideas throughout the assignment should be supported by specific areas observed while conducting the observation during this course.
- Bulleted points on each slide should include brief points that identify the areas that will be addressed in the narration.
- Researched information should be included on Slides 4 and 5 (In-text citations should be included with any brief points that were researched from outside sources and the narration should fully explain the points).
- With the presentation, there must be a transcript included in a Microsoft Word document that includes the narration word for word for each slide. Be sure to use headings for each slide narration, e.g., Slide 2, Slide 3, etc.
- Identify the source of any pictures you use. NOTE: Pictures are not required for this presentation.
Use the PowerPoint template provided and submit your two files (both the PowerPoint with audio narration and the MS Word document with the transcript) to the Unit 6 Assignment Dropbox.
write a python program
TASK 1: Animated Sine Curve
Write a Python program one.py with PyOpenGL to display an animation of sine function y=Asin(x+B), satifying the following requirements:
- The window application’s size is (600, 600), and its upper-left corner is at (250, 250) on the screen;
- The window application’s title is Animated Sine Curve.
- The ranges of x and y are [-4, 4] (x is in radians);
- The amplitude A is a random float in [1, 2], and it is updated each time the window application restarts;
- The phase shift B is a float; it is initialized as 0, and incremented by 0.01 each time the screen refreshes;
- The two axes are drawn in white, with an arrow towards the positive direction at the end of each axis;
- The sine curve is drawn in yellow.
- Orthogonal projection is used in this task.
The following figure illustrates the expected window application.
TASK 2: Clamped B-Spline
Write a Python program two.py with PyOpenGL to display a clamped B-spline, satifying the following requirements:
- The window application’s size is (550, 550), and its upper-left corner is at (150, 150) on the screen;
- The window application’s title is Special B-Splines.
- The program reads a text file named control-points.txt, including an x,y coordinate pair in each line as a control point, in the same folder;
- Control points are drawn with size 4 in green.
- Based on the control points, a clamped B-spline is drawn.
- P(t)’s color, mixed by red and blue, depends on its curvature (R = curvature / 5, G = 0.0, B = 1 – curvature / 5);
- Curvature is clipped by [0, 5].
- Orthogonal projection is used in this task.
The following figure illustrates the expected window application, reading the sample control-points.txt provided.
TASK 3: Hexagonal Pyramid
Write a Python program three.py with PyOpenGL to display a 3D hexagonal pyramid, satifying the following requirements:
- The window application’s size is (400, 400), and its upper-left corner is at (100, 100) on the screen;
- The window application’s title is Hexagonal Pyramid.
- The program reads a text file named pyramid-params.txt, including one line as x,y,z,H,R, in the same folder, where x, y and z are the coordinates of the top vertex v, H is the height, and R is the radius; we assume the top vertex v and the base centroid c are on the same vertical axis, and c is always under v; the distance between c and any base vertex vi is always R.
- Based on the above information, a hexagonal pyramid is drawn.
- All faces are randomly and differently colored, except for the base in white.
- When the key R is pressed, the radis increases by 0.01 and the hexagonal pyramid is redrawn.
- When the key H is pressed, the height decreases by 0.01 and the hexagonal pyramid is redrawn.
- The hexagonal pyramid is static by default; When the key X, Y or Z is pressed, the hexagonal pyramid toggles between being static and rotating 1 degree/refresh along the corresponding axis (i.e., the key X corresponds to the x axis), taking c as the origin.
- Perspective projection is used in this task (FoV is 90 degrees towards the y-axis; Camera looks at the origin and uses the y-axis direction as the up-vector).
The following figure illustrates the expected window application, reading the sample pyramid-params.txt provided.
final papers
1) Discuss in 300 words your opinion on what lessons should be learned from the 737 Max 8 crashes.
2) the surveillance state
750 word research paper with at least 3 sources. There should be no lists. Write in essay format not outline format. Include a meaningful title.
You must include at least 3 quotes from your sources enclosing the copied words in quotation marks and cited in-line.
Common research practises
- Identify the most used research design in your field of study with design mostly used.
Assignment
Please work through the following tutorials located at the following locations:
Python is a great language for doing data analysis, primarily because of the fantastic ecosystem of data-centric Python packages. Pandas is one of those packages, and makes importing and analyzing data much easier. Pandas builds on packages like NumPy and matplotlib to give you a single, convenient, place to do most of your data analysis and visualization work. In this python data science tutorial, you’ll use Pandas to analyze data on video game reviews from IGN, a popular video game review site. The data was scraped by Eric Grinstein, and can be found here. As you analyze the video game reviews, you’ll learn key Pandas concepts like indexing.
Exercise 1 Link: https://www.dataquest.io/blog/pandas-python-tutorial/
You need basic Python knowledge for this tutorial. If you understand if-else statements, while and for loops, lists, and dictionaries, you’re set to make the most out of this tutorial. You also need a code editor like Visual Code Studio, PyCharm, or Atom. In addition, while we walk through every line of code so you never feel lost, knowing basic pandas would help. Check out our pandas tutorial if you need a refresher.
Exercise 2 Link: https://www.dataquest.io/blog/regular-expressions-data-scientists/
Please screenshot your results and upload them to this Assignment Link.
Clash of titan methodologies
- Select one of the three scenarios studied for assignment 7.1.
- How would the situation and conclusions change if that scenario were approach from one of the two other methodological approaches than it was.
450 words with intext references and 3 main references
Situation: participating honestly in a conversation in a difficult art succeeding is the sign of a skilful creator of actors knowledge
Methodology approach: Actor’s or System’s approach
3-5 Page in APA 6th standard Organ Leadership and Decision Making
3-5 Page in APA 6th standard, NO PLAGIARISM, a minimum of five peer-reviewed journal articles.
This week’s journal article was focused on how information and communication innovation drives change in educational settings. The key focus of the article was how technology-based leadership has driven the digital age. Also, that the role of technology leadership incorporates with the Technology Acceptance Model (TAM).
In this paper, address the following key concepts:
- Define TAM and the components.
- Note how TAM is impacting educational settings.
- Give an overview of the case study presented and the findings.
The paper should meet the following requirements:
- 3-5 pages in length (not including title page or references)
- APA guidelines must be followed. The paper must include a cover page, an introduction, a body with fully developed content, and a conclusion.
- A minimum of five peer-reviewed journal articles.
Research Paper – Organization leader and Decision making
Please write research paper APA 7 format:
This week’s journal article was focused on the Complexity of Information Systems Research in the Digital World. Complexity is increasing as new technologies are emerging every day. This complexity impacts human experiences. Organizations are turning to digitally enabled solutions to assist with the emergence of digitalization.
Please review the article and define the various technologies that are emerging as noted in the article. Note how these emerging technologies are impacting organizations and what organizations can to do to reduce the burden of digitalization.
Be sure to use the UC Library for scholarly research. Google Scholar is also a great source for research. Please be sure that journal articles are peer-reviewed and are published within the last five years.
The paper should meet the following requirements:
- 3-5 pages in length (not including title page or references)
- APA guidelines must be followed. The paper must include a cover page, an introduction, a body with fully developed content, and a conclusion.
- A minimum of five peer-reviewed journal articles.
The writing should be clear and concise. Headings should be used to transition thoughts. Don’t forget that the grade also includes the quality of writing.
Articles for references :
- Benbya, H., Ning Nan, Tanriverdi, H., & Youngjin Yoo. (2020). Complexity and Information Systems Research in the Emerging Digital World. MIS Quarterly, 44(1), 1–17. https://doi.org/10.25300/MISQ/2020/13304 http://search.ebscohost.com/login.aspx?direct=true&AuthType=shib&db=buh&AN=141995164&site=eds-live&custid=s8501869&groupid=main&profile=eds_new
Chapter 1 Journal articles
- Journal Article 1.1: Trumpy, A.J. and Elliott, M. (2019) ‘You lead like a girl: Gender and children’s leadership development’, Sociological Perspectives, 62(3): 346–365.
- Journal Article 1.2: Sudha, K.S., Shahnawaz, M. G. and Farhat, A. (2016) ‘Leadership styles, leader’s effectiveness and well-being: Exploring Collective Efficacy as a Mediator’, Vision, 20(2): 111–120.
main discussion
Discuss the differences as well as the advantages and disadvantages of IaaS, SaaS, and PaaS. Otherwise, you may include an implementation of each such as Salesforce or AWS with details on their services.
You must post at least twice during the week on at least two different days to get full credit. Your posts should add to the conversation with relevant information. Just agreeing with you classmates or similar responses will not receive any credit.
I am not looking for long posts. Eight or so sentences for each post of ORIGNAL writing will suffice. I do not want see paragraph after paragraph of copied material. Your post will be checked by SafAssign for similarity.
If you use references they MUST include in text citations where the information is used. If the information is a direct quote from a source it MUST be in parentheses. Otherwise you are at risk of plagiarism. However, you do not have to use the APA Edition 6 format (template with fonts, heading, etc.) in the discussions.
Ignorance of APA Edition 6 citing and referencing is not acceptable in graduate level work. If you do not use it you may be accused of plagiarism. If you have not done so please familiarize yourself with it now. There are numerous sources under the “Start Here” tab.
Please DO NOT submit your posts as attachments in the discussion area. All writing need to be in the discussion area.