Answer:
Resources I think because what you have all depends on resources which required money
PLZ CORRECT ME IF I AM Wrong please and thank you
Explanation:
The answer is "Find and Replace".
The blanks spaces are filled with the following;
- Is confidential, should not
- There's risk of information theft on the cloud
- Social security number, should not
<h3>Confidential information and the storage cloud</h3>
According to McGinley, in some cases, storing any type of personal information for one's self or one's customers in the cloud would be a mistake. Information relating to date of birth, Social Security number, passport numbers should not be kept in the cloud.
This follows from the fact that "Cloud providers are no less bulletproof than any of the other previous industry."
Read more on information storage;
brainly.com/question/24688176
Configure terminal because Commands in this mode are written to the running configuration file as soon as you enter them (using the Enter key/Carriage Return). After you enter the configure terminal command, the system prompt changes from switch# to switch(config)#, indicating that the switch is in configuration mode.
Answer:
Python code is given below
Explanation:
# create an empty array
arr = []
# loop 5 times
for i in range( 0 , 5 ):
x = float(input('Enter a number : '))
# add x to arr
arr.append( x )
sum = 0
# find the sum of all elements in arr
for x in arr:
sum += x
# calculate average
average = sum / len(arr)
print('\n%15s %15s\n' %('Original Value' , 'Interest Value'))
for Original_value in arr:
# calculate interesr value
Interest_Value = Original_value * 0.2
print('%10f %15f' %( Original_value , Interest_Value ))
print('\nTotal :', sum)
print('Average :', average)
print('Maximum :', max(arr))
print('Miniimum :', min(arr))