Five year old Sam begins to cry when he discovers that his p…

Five year old Sam begins to cry when he discovers that his pet turtle has died. His father scolds Sam for crying and says, ” Big boys don’t cry.” According to Carl Rogers, because Sam’s father is using _____________________, Sam is likely to _______________ his feelings of sadness in the future.

Gordon’s 5-year-old son has recently become very possessive…

Gordon’s 5-year-old son has recently become very possessive of his mother, pushing Gordon away whenever he tries to hug his wife. Freud would suggest that the little boy’s behavior reflects the  _______________________________ stage of psychosexual development. [BLANK-1]

Complete the missing code – (the selection structure) based…

Complete the missing code – (the selection structure) based on the algorithm def main():    #Decalre and initialize  whole variable for number of credits left to do    creditsLeft = 0     #Prompt user for how many credits they have left to complete    creditsLeft = int(input(“How many credits do you have left to complete?  “))     #If the user has 15 or less credits left to complete display “You have only 1 semester left!”    #Else If the user has between 16 and 30 credits left to complete, display “You should have only 2 semesters left!”    #Else If the user has between 31 and 45 credits left to complete, display “You have about 3 semesters left – Keep working!”    #Else If the user has 46 credits or more left to complete display “I guess this is your first semester.”

Write the code to create the GetCredits function below. Use…

Write the code to create the GetCredits function below. Use the comments as your guide. Hint, you will need a while loop, an if, and exception handling: #Function GetCredits#Return: 1 int for total credits completed#Parameters: 1 string for name#Purpose: Ask the user how many credits they have completed, and validate the user input to ensure the entry is a number not text, and the number is between 1 and 120 def GetCredits():    #something might go inside these ()    #Declare and initialize any variables needed        #Prompt user for number of credits completed (calling the user by name in the prompt), and validate the user entry is a number using exception handling or show an error message and ask again    #Also validate that the number entered is between 1 and 120, or show an error message and ask again    #return credits completed