Cutting down trees for paper
Answer: Information security
Explanation:
The information security is one of the system that keeps the data confidential, assure the integrity and also availability of the information or data.
This system is basically refers as the CIA triad in the information security system and the data risk management.
The main aim of the information security is that keeps the data protected from the unauthorized accessing and also controlling the access in the system.
Therefore, Information security is the correct answer.
Resistance measured in Ohms = Voltage divided by current.
120/5=24
B) 24 Ohms
Answer:
hey mann
Explanation:
it is known as "roblovdeo"
hope it helps
Answer:
from random import seed, choices
from statistics import mean
number = int(input("Enter integer number: "))
if number > 0:
try:
data = range(number+1)
# to generate a pseudo-random number list.
seed(10)
# you can also use: num_list = [random.randint(0, number+1) for i in data]
num_list = choices(data, k=len(data))
print(num_list)
mean_val = round(mean(num_list), 2)
min_val = min(num_list)
max_val = max(num_list)
except ValueError:
print("Must be an integer value.")
print('Avg number: {}\nMax number: {}\nMin number: {}'.format(mean_val, max_val, min_val))
Explanation:
To generate random items in a list of integers, the random choices method is used and a sequence is passed as an argument. The average, maximum, and minimum number of the list is calculated and displayed.