Answer:
Written in Python
age = int(input("How old are you? "))
for i in range(1,age+1):
      print("**HUG**")
Explanation:
The first line prompts the user for age
age = int(input("How old are you? "))
The next line is an iteration that starts from 1 till the user input
for i in range(1,age+1):
The last line prints "**HUG**" while the iteration is true
      print("**HUG**")
 
        
             
        
        
        
Answer:
Settings
Explanation:
If your asking for instructions, there are to many, but if your looking for the settings you should be able to find it, it's easy to find. The settings app that comes on hp Windows computers have most of the answers on how to modify and change and fix things on your computer.
 
        
             
        
        
        
You can call a Python function like so: function(parameters). 
Example: 
Define function add: 
def add(x,y):
 return x+y
Call function:
add(3,7) -> 10
        
             
        
        
        
Answer:
Display as
Explanation:
Need the same question, but that's my guess, because display, means to show.