Complete the following table.

 

Complete the following table.

Theorists Main tenets of theory Unique contributions Limitations
Freud Stressed the importance of early childhood events, the influence of the unconscious and sexual instincts in the development and formation of personality.
Jung Focused on concepts such as the collective unconscious, archetypes and psychological types.
Adler Believed the core motive behind personality involves striving for superiority, or the desire to overcome challenges and move closer toward self-realization. This desire to achieve superiority stems from underlying feelings of inferiority that Adler believed were universal.
Horney Focused on the need to overcome basic anxiety, the sense of being isolated and alone in the world. She emphasized the societal and cultural factors that also play a role in personality, including the importance of the parent-child relationship.

Defense Mechanisms

Match the example with the appropriate defense mechanism.

Title

ABC/123 Version X

1
Week 4 Assignment Worksheet

PSY/203 Version 1

1

1.

Copyright © XXXX by University of Phoenix. All rights reserved.

Copyright © 2013 by University of Phoenix. All rights reserved.

2. __H___A woman is involved in a car accident that left her paralyzed from the waist down, but she cannot remember any details of the accident.

3. __G___Taking a test makes me nervous, so I bite my nails.

4. _A__My boss yelled at me at work today and it made me very upset. I went home and ended up yelling at my spouse that night.

5. __B_Even though I drink alcohol every day, I am not an alcoholic.

6. __E_I hate Alex, but I am overly nice and friendly when interacting with him at work.

7. __F_I broke up with my boyfriend, but I am fine with it because he was a loser anyway.

8. __C_I am convinced that my husband is cheating on me, even though I am the one who frequently thinks about cheating on him.

9. _D__I am very frustrated at work and just want to scream, but instead I go to the gym and work out my frustration on the treadmill.

A. Displacement

B. Rationalization

C. Repression

D. Sublimation

E. Projection

F. Denial

G. Regression

H. Reaction Formation

Psychosexual Stages of Development

Fill in the appropriate psychosexual stage for the following descriptions.

1. The ______ stage focuses on mature sexual relationships.

2. A 3rd grader still sucks their thumb. They may have a(n) ___Oral Stage__ fixation.

3. An adult who exhibits a lack of self-discipline and messiness may have struggled with toilet training. This person may have experienced difficulty in the ________ stage.

4. A child tends to prefer the parent of the opposite sex and views the same-sex parent as a threat. This conflict occurs in the _______ stage

5. Children tend to focus on peer relationships with same-sex friends and other nonsexual activities. This behavior occurs in the _______ stage.

Stress and Coping

Consider the following scenario:

You have unexpectedly lost your job due to layoffs at your company. You are the sole provider of income for your family. You are worried about how you will pay your bills and support your family during this time.

Write 150 to 200 words describing how stress can affect you physically and mentally, and which coping strategies you may use to work through this situation.

The post Complete the following table. appeared first on homeworkhandlers.com.

Write the definitions of the functions to implement the operations for the Class dayType as defined in Programming Exercise 2. Also, write a program to test various operations on this class.

Write a program that converts a number entered in Roman numerals to decimal form. Your program should consist of a class, say romanType. An object of romanType should do the following: a. Store the number as a Roman numeral. b. Convert and store the number into decimal form. c. Print the number as a Roman numeral or decimal number as requested by the user. (Write two separate functions—one to print the number as a Roman numeral and the other to print the number as a decimal number.) The decimal values of the Roman numerals are: M 1000 D 500 C 100 L 50 X 10 V 5 I 1 Remember, a larger numeral preceding a smaller numeral means addition, so LX is 60. A smaller numeral preceding a larger numeral means subtraction, so XL is 40. Any place in a decimal number, such as the is place, the 10s place, and so on, requires from zero to four Roman numerals. d. Test your program using the following Roman numerals: MCXIV, CCCLIX, and MDCLXVI.

 

2.       Write the definition of the class dayType that implements the day of the week in a program. The class dayType should store the day, such as Sunday for Sunday. The program should be able to perform the following operations on an object of type dayType: a. Set the day. h. Print the day. c. Return the day. d. Return the next day. e. Return the previous day. f. Calculate and return the day by adding certain days to the current day. For example, if the current day is Monday and we add 4 days, the day to be returned is Friday. Similarly, if today is Tuesday and we add 13 days, the day to be returned is Monday. g. Add the appropriate constructors. –

 

 

 

3.        Write the definitions of the functions to implement the operations for the Class dayType as defined in Programming Exercise 2. Also, write a program to test various operations on this class.

 

 

 

 

 

2.       In this chapter, the class dateType was designed to implement the date in a program, but the member function setDate and the constructor do not check whether the date is valid before storing the date in the data members. Rewrite the definitions of the function setDate and the constructor so that the values for the month, day, and year are checked before storing the date into the data members. Add a function member, isLeapYear, to check whether a year is a leap year. Moreover, write a test program to test your class.

 

6.       In Programming Exercise 2, the class dateType was designed and implemented to keep track of a date, but it has very limited operations. Redefine the class dateType so that it can perform the following operations on a date in addition to the operations already defined: a. Set the month. b. Set the day. c. Set the year. d. Return the month. e. Return the day. f. Return the year. g. Test whether the year is a leap year. h. Return the number of clays in the month. For example, if the date is 3-12-2011, the number of days to be returned is 31 because there are 31 days in March. I. Return the number of days passed in the year. For example, if the date is 3-18-2011, the number of days passed in the year is 77. Note that the number of days returned also includes the current day. 126 I Chapter 2: Object-Oriented Design (00D) and C++ I. Return the number of days remaining in the year. For example, if the date is 3-18-2011, the number of days remaining in the year is 288. k. Calculate the new date by adding a fixed number of days to the date. For example, if the date is 3-18-2011 and the days to be added ‘are 25, the new date is 4-12-2011.

 

 

20. a. In Programming Exercise 1 in Chapter 1, we defined a class romanType to implement Roman numerals in a program. In that exercise, we also implemented a function, romanToDecimal, to convert a Roman numeral into its equivalent decimal number. Modify the definition of the class romanType so that the data members are declared as protected. Use the class string to manipulate the strings. Furthermore, overload the stream insertion and stream extraction operators for easy input and output. The stream insertion operator outputs the Roman numeral in the Roman format. Also, include a member function, decimalToRom’en, that converts the decimal number (the decimal number must be a positive integer) to an equivalent Roman numeral format. Write the definition of the member function decimalToRoman. For simplicity, we assume that only the letter I can appear in front of another letter and that it appears only in front of the letters v and X. For example, 4 is represented as IV, 9 is represented as Ix, 39 is represented as xxxix, and 49 is represented as xxxxix. Also, 40 will be represented as XXXX, 190 will be represented as CLXXXX, and so on. b. Derive a class extRomanType from the class romanType to do the following. In the class extRomanType, overload the arithmetic operators +, *, and / so that arithmetic operations can be performed on Roman numerals. Also, overload the pre- and postincrement and decrement operators as member functions of the class extRomanType. To add (subtract, multiply, or divide) Roman numerals, add (subtract, multiply, or divide, respectively) their decimal representations and then convert the result to the Roman numeral format. For subtraction, if the first number is smaller than the second number, output a message saying that, “Because the first number is smaller than the second, the numbers cannot be subtracted”. Similarly, for division, the numerator must be larger than the denominator. Use similar conventions for the increment and decrement operators. c. Write the definitions of the functions to overload the operators described in part b. d. Write a program to test your class extRomanType.

Which of the following is/are considered a job that an operating system must perform? Select Yes or No for each option.

 

Question 1

Select one answer.

Which of the following would be a significant factor in choosing to buy individual applications from different vendors as opposed to a bundled suite of applications from a single vendors (some of the applications in the bundled suite you will not need to use)?

Question 2

Select one answer.

True or false? You have created a great new smartphone app while working for Apple. Apple can sell this app to a third party.

Question 3

Select one answer.

Claudia is allowed to work from home 3 days per week. She takes home sensitive personnel files on a flash drive for use while at home. The company does not allow remote access to the company servers, but Claudia is free to use either a cloud-based version of the application or have it installed on her home machine. Which type of application category would you recommend Claudia use at home?

Question 4

Fill in the blanks by selecting one option from each menu.
Some of the latest smartphones claim that a user can work with two apps simultaneously. This would be an example of a unit that uses a             OS.

Question 5

Fill in the blanks by selecting one option from each menu.
Alicense has a recurring monthly or yearly fee associated with keeping the license valid.

Question 6

Select one answer.

True or false? The cost of civil or criminal penalties to a business or person may be many times more expensive than the cost of acquiring the correct number of software licenses.

Question 7

Select one answer.

True or false? When downloading a game to your smartphone, it is important to check the vendor’s website to see if your model of phone and OS are listed as supporting this game.

Question 8

Fill in the blanks by selecting one option from each menu.

You just purchased the latest iPhone. What type of software would you expect to find already installed? Select Yes or No for each option.

Firmware

Operating System

Application

Question 9

Select one answer.

If you were looking for an app that enabled you to make modifications to photos you had taken and then transferred to your computer, which category of apps would be the best fit for your work?

Question 10

Select one answer.

When is a web app considered platform independent?

Question 11

Fill in the blanks by selecting one option from each menu.

Which of the following are factors that would impact a decision to use installed apps versus cloud-based apps? Select Yes or No for each option.

You have reliable and high-speed internet access

One-time cost is considerably less than subscription fees calculated over a year of use (disregarding maintenance and upgrade fees).

Full functionality is provided by only the installed version.

Question 12

Select one answer.

True or false? It is possible to add to a computer system utility that did not come bundled with the OS.

Question 13

Select one answer.

True or false? Many people do not read through an EULA because the language is confusing or the document is too long. By simply agreeing to the EULA, the user might also be agreeing to never criticize the product publicly.

Question 14

Select one answer.

Carolyn experienced a total hard drive failure on her Dell Inspiron laptop with Windows 7 Ultimate and finds that she must install everything from scratch, including the OS. She wants to keep the laptop but upgrade to the latest OS. What do you, as her tech advisor, suggest she install?

Question 15

Select one answer.

What is a phablet?

Question 16

Select one answer.

True or false? If specified in the EULA, you are allowed to make a backup copy of a software application without violating copyright protection.

Question 17

Fill in the blanks by selecting one option from each menu.

Which of the following is/are considered a job that an operating system must perform? Select Yes or No for each option.

Managing a library of functions and routines used by applications

Managing the memory and storage requirements for processing

Processing raw data and instructions into information

Starting the GUI

Describe the general Information Security steps and controls that you would recommend to the Board to secure the Hybrid Cloud. You will need to explain to the Board your reasons for recommending these particular security steps. (20 marks)

A chief strategic objective of the standardisation of DTGOV’s service portfolio is to achieve increased levels of cost-effectiveness and operational optimisation.

DTGOV is considering the following strategic proposal:

  • They plan to retain one (1) of their three (3) data centres solely for data storage. This would entail updating their Active Directory and data storage infrastructure, and moving all other infrastructure into the Cloud.
  • They plan to initially move all their Web Services into the Cloud in order to provide an increased level of HA (High Availability) as well as a better degree of flexibility in supplying data to their customers and employees. This would entail changing their current web software architecture to take advantage of the flexibility and scalability that can be gained by moving to a Microservices model (this would entail the use of such services as AWS Lambda or Azure Functions, Containers, Data Services, and Cloud Edge capability and monitoring).
  • They also plan to migrate their LoB (Line of Business) applications to Public Cloud infrastructure to increase their flexibility and availability.

The DTGOV Board is contemplating this strategy as a way to increase the company’s flexibility and responsiveness. The Board also expects to achieve significant savings on the cost of maintaining their ICT infrastructure by eventually closing the other two (2) existing data centres. They appreciate that this would entail retraining for their existing ICT staff so that they can manage the new Cloud based infrastructure.

DTGOV has again approached you to advise them on this strategy. You have previously advised DTGOV that this strategic approach will mean that they will need to ultimately design and operate a “Hybrid Cloud” methodology, where part of their data centre is “on premise” and another part in a Cloud.

DTGOV also plan to run a Risk and Security Workshop to assess the risks, security issues and possible methods of control that will be required with this “Hybrid Cloud” approach. You will be required to organise, run and facilitate this workshop.

The Board is also concerned about how this strategy will affect their BCP (Business Continuity Plan) and their backup and disaster recovery strategies.

Tasks
Your team has been engaged to provide a report for DTGOV in their planned move to a Hybrid Cloud strategy.

 

Team Setup
This assignment is a team assignment. The rationale for using a team approach is that most IT risk management assessments are normally done by teams of between 2-5 Architects, Information Security experts, Operations and Business leaders for each problem. You will be assigned to a team and the team, as a whole, will be responsible for the development of the risk assessment.

Team Member Responsibilities
Each team member will be assessed on:

  • The final risk assessment presented by the team;
  • The individual contributions that they have made to the risk assessment. This will be shown by the entries that they have made in the Team forum;
  • Team members should note that:
    • A total of 20% of the total marks for this assignment are for individual contributions to the team task;
    • A team member without any individual contributions in the Team Forum will be regarded as having not contributed to the risk assessment. This will result in either reduced marks or no marks being awarded to that team member for this assignment.

The tasks:
The team’s task is to prepare a report for DTGOV that discusses the following:

  1. Describe which Cloud architectures you would employ to assist DTGOV to meet the Board’s strategy?
    1. Describe each of the architectures that you would use, along with your reasons for deploying it. (10 marks)
    2. Describe the benefits and issues that would be the result of your deployment of these architectures. (10 marks)
  2. Describe the risks that you see associated with this new Hybrid Cloud and Microservices strategy. You should name and describe each risk that you identify, and then describe a possible control for the risk. This should be presented in a tabular form. (20 marks)
  3. Describe the general Information Security steps and controls that you would recommend to the Board to secure the Hybrid Cloud. You will need to explain to the Board your reasons for recommending these particular security steps. (20 marks)
  4. Discuss briefly what you would recommend should be included in DTGOV’s BCP as a result of their adoption of a Hybrid Cloud and Microservices approach. You will need to consider, as a minimum, the issues of application resilience, backup and disaster recovery in a Hybrid Cloud environment. This section should be no more than 2 pages. (10 marks)
  5. Discuss the requirements that DTGOV will need to consider in order to conduct remote server administration, resource management and SLA management for its proposed IaaS and PaaS instances (it may be useful to consider Morad and Dalbhanjan’s operational checklists for this section). This section should be no more than two to three pages in length. (10 marks)

 

The team is to provide a written report with the following headings:

  • Proposed Architectures for a Hybrid Cloud
  • Risk report for Hybrid Cloud and Microservices
  • Proposed Information Security controls
  • BCP Changes
  • Hybrid Cloud Administration and SLA Management

As a rough guide, the report should not be longer than about 6,000 words. The report is to be loaded into the Team Resource area in Interact.

All risk assessment discussions in the team forum should be exported into a single document and loaded into the Team Resource area in Interact.

It is suggested that the report should be written using Google Docs using MS Word format. Google Docs allows multiple authors to contribute to a single document, and their individual contributions can be more easily assessed.
Your team report MUST be presented in MS Word format. Your report should:

  • Use Calibri, or a similar font, in 11 or 12 point type.
  • All diagrams and images are to be embedded in the document. Diagrams and images that are suppliued separately will not be marked.
  • All text should be left-justified.
  • Each page must have a header or footer with your name and student number. Page numbers must be shown in the footer of each page, except on the title page.