Answer:
Resource Polling is the correct answer to the given question .
Explanation:
The Resource pooling is used in cloud computing frameworks that describe a situation where companies offer temporary and flexible resources to different clients .In the resource polling the programs can be changed to fit the needs of each client without making any adjustments visible to the client.
The main function of resource pooling that it grants a service provider the opportunity to dynamically allocate common physical resources to different clients based on the utilization criteria of each client.
Answer:
import numpy as np
import matplotlib.pyplot as plt
def calculate_pi(x,y):
points_in_circle=0
for i in range(len(x)):
if np.sqrt(x[i]**2+y[i]**2)<=1:
points_in_circle+=1
pi_value=4*points_in_circle/len(x)
return pi_value
length=np.power(10,6)
x=np.random.rand(length)
y=np.random.rand(length)
pi=np.zeros(7)
sample_size=np.zeros(7)
for i in range(len(pi)):
xs=x[:np.power(10,i)]
ys=y[:np.power(10,i)]
sample_size[i]=len(xs)
pi_value=calculate_pi(xs,ys)
pi[i]=pi_value
print("The value of pi at different sample size is")
print(pi)
plt.plot(sample_size,np.abs(pi-np.pi))
plt.xscale('log')
plt.yscale('log')
plt.xlabel('sample size')
plt.ylabel('absolute error')
plt.title('Error Vs Sample Size')
plt.show()
Explanation:
The python program gets the sample size of circles and the areas and returns a plot of one against the other as a line plot. The numpy package is used to mathematically create the circle samples as a series of random numbers while matplotlib's pyplot is used to plot for the visual statistics of the features of the samples.
Answer:
b
Explanation:
CPU manual provides guides to use a CPU.
Assembler manual provides guide on how to use an assembler and so is the case for compiler.
For a particular machine, it set of instructinos are available with the programmer.
The keyboard combinations that can be used to capture and print out a one-slide presentation using MSWord, showing everything on the screen is Function key + PrtScr
<h3>What is a Key Combination?</h3>
This refers to the procedure that is used to combine two or more keys on the keyboard to execute a task.
Hence, we can see that the procedure that can be used to carry out the operation is:
- Enter the screen you want to capture and print
- Press the Function key, followed by the PrtScr. Please note this can vary slightly, depending on the keyboard.
The hardware devices that would be needed to be set up by the system analyst at a computer laboratory are:
- System Unit
- Laptops/Monitor
- Power adapters
- Ethernet cables, etc
The database applications that can be recommended by the system analyst are:
The five word processing packages that are likely to be installed are:
- G00..gle Docs
- MsWord
- MSOffice
- Dropbox Paper
- Corel WordPerfect
Read more about word processing here:
brainly.com/question/985406
#SPJ1