Answer:
D. an Internet connection allowing outsiders limited access to a firm's internal information system
Explanation:
An extranet is a private network that allows partial access to a company's network to partners, services providers, and selected customers. It provides a secure way of information exchange between the business and its stakeholders. An extranet is comparable to a Demilitarized Zone (DMZ) in that it gives authorized parties access to needed services but not the whole network.
Answer:
total = 0
for i in range(4):
bill = float(input("Enter bill for quarter " + str(i+1) + ": "))
total += bill
average = total / (4 * 3)
if average > 75:
print("Average monthly bill is $" + str(average) + ". Too much water is being used")
if 25 <= average < 75:
print("Average monthly bill is $" + str(average) + ". A typical amount of water is being used")
if average < 25:
print("Average monthly bill is $" + str(average) + ". Thank you for conserving water")
Explanation:
*The code is in Python.
Create a for loop that asks the user to enter the bill for 4 quarters and calculate the total of the bills
Calculate the average monthly bill, divide the total by 12
Check the average for the given conditions. Depending on its value print the required message along with the average monthly bill
Answer:
The purpose of the domain name is for credibility and location purposes.
Explanation:
For example.
nz.gov means that the domain owner is the government on New Zealend