107k views
2 votes
User_tickets is read from input. If user_tickets is less than 5, then assign a variable named num_tickets with 1. Otherwise, assign num_tickets with user_tickets. For example, if the input is 3, what will be the value of num_tickets?

1) 1
2) 3
3) 5
4) Cannot be determined

User Slashroot
by
8.6k points

1 Answer

5 votes

Final answer:

If the input is 3, the value of num_tickets will be 1.

Step-by-step explanation:

If the input is 3, the value of num_tickets will be 1.

The condition states that if user_tickets is less than 5, then num_tickets should be assigned a value of 1. Since 3 is less than 5, the value of num_tickets will be 1 in this case.

User Manwal
by
8.7k points