Start with the greeting program, the first program with functions we used in Python Tutor. This time, the computer is very happy to meet you. Modify the function to return the users name in uppercase, with !!!! after it. So, if the users name is Miriam, the greeting function will return HELLO MIRIAM!!!! Write a function that takes two arguments a quiz question and the correct answer. In your function, you will print the question, and ask the user for the answer. If the user gets the answer correct, print a success message. Else, print a message with the correct answer. Your function does not need to return anything. Call your function with two example quiz questions. Heres some suggestions, When installing Windows 10, a user can either wipe everything from their computer and do a clean install. Or if their computer meets system requirements, the user can upgrade to Windows 10 without erasing their current operating system. To do the upgrade, according to Microsoft, a
computer needs to have at least 1GB of memory, and at least 1GHz processor, and either Windows 7 or Windows 8 currently installed. All three requirements must be met. Write a program that asks the user for Write a function that takes three arguments, the amount of memory, the processor speed, and current operating system. In se conditions to figure out if the users computer can be upgraded to Windows 10 or not. Your function should return one of the Boolean values True (if the computer can be upgraded) or False (if it cant be upgraded). Call your function from main(), and use the return value to print a message to the user telling them if they can, or cant, upgrade. Start with the College ID card program from . This has no functions but it would benefit from being re-organized into functions. Refactor this program. Suggestions functions for validation, functions to help print the college ID card, for example printing a line of -, printing centered text, printing text in color.