Answer:
Wow, that’s pretty good question.
I would probably get a vpn because it gives free secure WiFi. And it’s most reliable.
Hope I helped!
Answer:
The answer is "assessment"
Explanation:
In the given question some information is missing, that is options that can be described as follows:
a) containment strategy.
b) assessment.
c) incident response.
d) disaster assessment.
Assessment also known as community risk, which is used for evaluations. It played a crucial role in the reaction and recovery after a dangerous incident in any organization.
- In this process, the Information of the degree and the position, which is lost are included in the collected information by the Accident investigation Taskforce.
- This data is analyzed to evaluate the needs of members and the entire community, and other choices are wrong that can be described as follows:
- In option a, It is a part of world war II, that's why it is wrong.
- In option c, It is a method that is sort major incident, that's why it is wrong.
- In option d, It uses cost control and risk avoidance, that's why it is wrong.
Answer:
# input the number of temperatures required, which will be 10 here, but the user can print any number.
n=input("Enter the number of temperatures you want")
# create a list which can have n temperatures since it starts from 0, the maximum is n-1, and n needs to be converted to an integer.
temp= [0,int(n)-1]
#declared a variable of float type. As its 0.0 it will be a float, if 0 then integers, and so on
s=0.0
#running a for loop n times, and hence 0 to n-1.
for i in range(0, int(n)):
temp[i]=input("Enter the temperature in degree celsius in float")
s=s + float(temp[i])
i=i+1
print("The sum of the temperatures is:{0:0.1f}", +s)
Explanation:
The question from edhesive is: You need to write a program that calls for ten temperatures and then find the sum of temperatures. The temperature should be in float, which is expected. And the program is as being mentioned in the answer section.
A viewport is the viewing area for a web page, which is much smaller on a phone than on a traditional desktop .
Answer:
zero
Explanation:
Because of the define the product variable is zero.
when the function call with pass by value 4.
The program control moves to that function, after that product
store the value zero. Then, product is multiply with n which become zero
because 0 * n is zero and store in the product again.
after that, n'' is wrong it must be 'n--' for performing the factorial function.
after that, the value of n is 3, again loop execute because condition n > 0
is true.
again zero multiply with n and become zero.
this process repeated until condition false and finally the output is zero.
Correction:
To make the code working:
change product = 1 instead of zero.
and change n-- in place of n''.