Answer:
The output of the code,
phrase = "hello mom"
phrase.upper()
Would be nothing since you didnt print out anything. How ever, the output of,
phrase = "hello mom"
print(phrase.upper())
Would be, "HELLO MOM". You can get the same output by writing this,
phrase = "hello mom"
phrase = phrase.upper()
print(phrase)
 
        
                    
             
        
        
        
Answer:
from random import randint
num = randint(1,10)
count =0
while count<3:
  userNum = int(input("Guess a Number "))
  if num ==userNum:
    print("You won")
    break
  else:
    print("Wrong try again")
  count = count+1
Explanation:
Import randint from random
generate a random number between (1,10) and assign to num
create a loop control variable count set to 0
In a While statement with the condition count<3 prompt user to make a guess
if guess is correct print you won and break
else print wrong try again and increase count by 1
 
        
             
        
        
        
Answer:
Create a group and make all user accounts members of the group. 
Explanation:
 
        
             
        
        
        
It manages the soft and hardware resources of the system. It also provides a stable, consistent way for applications to deal with the hardware without knowing all of the details of the hardware
 
        
                    
             
        
        
        
An input device would be anything you would use to change certain functionality, for instance a Mouse or Keyboard is an input device because it helps you input letters or clicks into the computer.