Answer:
Henry, an administrative assistant, is taking an advanced Word computer program class through an adult school program.  
Explanation:
 
        
             
        
        
        
Solution :
function tickets(user_tickets){
var num_tickets;
if (user_tickets < 5) {
num_tickets = 1;
return ('num_tickets: '+ num_tickets);
}
else {
num_tickets = user_tickets;
  return('num_tickets: '+ num_tickets);
}
}
// Testing the tickets function
// With user_tickets = 3, 5, 8, and 1
console.log(tickets(3));
console.log(tickets(5));
console.log(tickets(8));
console.log(tickets(1));
 
        
             
        
        
        
Answer:
Desktop computer with 2 screens
Explanation:
All graphices designers need the most screen space possible
 
        
             
        
        
        
The answer & explanation for this question is given in the attachment below.
 
        
             
        
        
        
The code that carried out the functions indicated above is stated below. It is not be noted that the code is written in C#
<h3>
What is C#</h3>
C# is a type-safe, object-oriented programming language. It is pronounced "see sharp"
<h3>
What is the code for the above task?</h3>
Using System;            
public class HoursAndMinutes
{
    public static void Main()
    {
       // declaring minutes variable and assigning 197 as given in question
        int minutes = 197;
      // outputing the total minutes , hours
        Console.WriteLine("{0} minutes is {1} hours and {2} minutes.", minutes, minutes/60, minutes%60);
    }
}
// OUT
Learn more about C#:
brainly.com/question/20211782
#SPJ1