Answer:
try powering it off the turn it back on
Explanation:
Answer:
Change the theme colors in Word
1. Select Design > Colors.
2. Point to a color to preview how it will look in your document.
3. Select a color scheme.
Explanation:
The answer is multitasking. This is when the OS always programs to share resources to run at the same time.
If the applications were running on separate CPUs, then it would be multiprocessing.
Answer:
name = input("Enter name: ")
droids = int(input("How many droids you want to meet? "))
wookies = int(input("How many Wookies you want to meet? "))
print(name + " wants to meet " + str(droids) + " droids, and " + str(wookies) + " Wookies")
Explanation:
*The code is in Python.
Ask the user to enter the name, number of the droids and number of the Wookies
Print the name, number of the droids, and number of the Wookies
Note that while getting the input for the droids and wookies, you need to typecast the input the int (Since the values are int). Also, to print these variables, you need to typecast them as string in that format.