# 1.Write a Python snippet that prompts the user to enter a…

# 1.Write a Python snippet that prompts the user to enter a greeting.# If the user enters “Hello”, output “Hi there!”.# if the user enters “Goodbye”, output “See you later!”.# For any other input, output “I don’t understand.”.# 2. Write a Python snippet that asks the user to choose between “Breakfast”, “Lunch”, or “Dinner”.#If the user enters an invalid choice, output “Invalid entry.” and do nothing else.#If the user enters a valid choice, ask them to enter a drink: “Coffee”, “Juice”, or “Water”.#If the drink is valid, output a response based on their meal and drink combination:#”Breakfast with Coffee is a great start!”#”Lunch with Juice is refreshing!”#”Dinner with Water is a healthy choice!”#If an invalid drink is entered, output “Invalid drink choice.”.#Sample Runs:# Valid Input:# Enter a meal: Lunch# Enter a drink: Juice# Lunch with Juice is refreshing!## Invalid Meal:# Enter a meal: Snack## Invalid entry.# Valid Meal but Invalid Drink:# Enter a meal: Dinner# Enter a drink: Soda# Invalid drink choice.# 3. Understanding Boolean Logic# For the following code, what is the correct output? Explain your reasoning.# condition = (50 < 40) or (75 == 75) and (200 > 300)# if condition == True:# print(“Success!”)# else:# print(“Failure!”)

In this photo, Ms. Wilson’s youngest son was “helping” with…

In this photo, Ms. Wilson’s youngest son was “helping” with the groceries. Let’s pretend Isaiah has super-strength and threw one of the eggs straight upward with a speed of 17.4 m/s. If air resistance is negligible and the egg is located at a height of 22.6 m after being in the air for 3.72 s, a. From what height did he throw the egg? b.What is the velocity of the egg 3.72 s after it was thrown?