Answer:
The answer is "5 users and 1 block".
Explanation:
In Option a:
Bandwidth total 
Any User Requirement 
The method for calculating the number of approved users also is:
Now, calculate the price of each person for overall bandwidth and demands,


In Option b:



mean user 

max user 

Answer:
backup; recovery
Explanation:
Backup and recovery refers to the process of backing up data in case of a loss and setting up systems that allow that data recovery due to data loss. Backing up data requires copying and archiving computer data, so that it is accessible in case of data deletion or corruption. Data from an earlier time may only be recovered if it has been backed up.
Data backup is a form of disaster recovery and should be part of any disaster recovery plan.In some cases, backing up or restoring entire systems, or the enterprise, after an event or disaster can take days
Answer:
The answer is "Option b".
Explanation:
In the given-code variable "userEntry" is defined that prompt the user to input value and in the next step, the conditional statement is used, which checks the input value is not a number and greater than 500 with use of OR operator. if the condition is true it uses the alert box to print the message, that's why in this question except "choice b" all were wrong.
Answer:
x = int(input("What grade are you in? "))
if(x == 9):
print("Freshman")
elif(x == 10):
print("Sophomore")
elif(x == 11):
print("Junior")
elif(x == 12):
print("Senior")
else:
print("Not in High School")
Explanation: