Answer:
52.64
Explanation:
Multiple Regression:
Multiple regression generally explains the relationship between multiple independent or predictor variables and one dependent or criterion variable.
Please kindly check attachment for the step by step solution of the given problem.
Answer:
c) SaaS
Explanation:
Identity as a Service is a company that provides authentication to access the data or resources to the ensured user. They provide access to the ensured users and helps in securing the data from any unauthorized involvement. The process of authentication is cloud-based and is available only for the subscribed users.
Apply encryption to VM files the following steps should be taken to secure the VMs so no user can copy or delete another user's VM files
f. Apply encryption to VM files.
b. secure the VM files with permissions
<u>Explanation:</u>
Installing anti-malware is a must on each VM OS OR Host OS to protect both servers and hosted workstations.
Scheduling update OS patches and anti-malware and scanning server or host operation are also must.
Securing VM files as best practices better to encrypt and decrypt is the best method or best practices.
Even protected VM files sometimes can be hacked and damaged the VM files.
VM is a virtual machine technology is used in windows 10. Before login decrypts the VM and connects to virtual machines. On disconnected encrypted is safer.
Whats ur choices if there web or world try them
Answer:
weights = []
total = 0
max = 0
for i in range(5):
weight = float(input("Enter weight " + str(i+1) + ": "))
weights.append(weight)
total += weights[i]
if weights[i] > max:
max = weights[i]
average = total / 5
print("Your entered: " + str(weights))
print("Total weight: " + str(total))
print("Average weight: " + str(average))
print("Max weight: " + str(max))
Explanation:
Initialize the variables
Create a for loop that iterates 5 times
Get the values from the user
Put them inside the array
Calculate the total by adding each value to the total
Calculate the max value by comparing each value
When the loop is done, find the average - divide the total by 5
Print the results