Answer:
slenderness ratio = 147.8
buckling load = 13.62 kips
Explanation:
Given data:
outside diameter is 3.50 inc
wall thickness 0.30 inc
length of column is 14 ft
E = 10,000 ksi
moment of inertia 

Area 


r = 1.136 in
slenderness ratio 

buckling load 


Answer:
Cloud computing services are going to be very important to supporting Ashville's mobile app since it has different uses. These applications uses include; data storage, as well as helping to provide network to any business data related work. This will improve the city of Ashville's mobile app operations considerably.
The benefits of using cloud computing are; it allows a business managers to be more concerned with running the business themselves rather than maintaining the data center. The use of cloud computing allows a company's IT administrators to focus on managing the company's operations, thereby allowing performance to be enhanced of the business enterprise.
A commercial company is able to create new technologies more rapidly with the use of cloud computing. Furthermore, the enterprise will be able to automate its activities using cloud computing. Cloud computing is also very important as it is more affordable and thus promotes the company's growth in the market. Cloud computing is also enhancing the global presence of the Ashville mobile app. The drawbacks of using cloud computing include the following; due to using the cloud infrastructure, the company's performance may be unreliable. People believe that cloud computing is not reliable and that cloud computing may not be secure at last and can't always be right for all workloads.
Explanation:
Answer:
import numpy as np
import time
def matrixMul(m1,m2):
if m1.shape[1] == m2.shape[0]:
t1 = time.time()
r1 = np.zeros((m1.shape[0],m2.shape[1]))
for i in range(m1.shape[0]):
for j in range(m2.shape[1]):
r1[i,j] = (m1[i]*m2.transpose()[j]).sum()
t2 = time.time()
print("Native implementation: ",r1)
print("Time: ",t2-t1)
t1 = time.time()
r2 = m1.dot(m2)
t2 = time.time()
print("\nEfficient implementation: ",r2)
print("Time: ",t2-t1)
else:
print("Wrong dimensions!")
Explanation:
We define a function (matrixMul) that receive two arrays representing the two matrices to be multiplied, then we verify is the dimensions are appropriated for matrix multiplication if so we proceed with the native implementation consisting of two for-loops and prints the result of the operation and the execution time, then we proceed with the efficient implementation using .dot method then we return the result with the operation time. As you can see from the image the execution time is appreciable just for large matrices, in such a case the execution time of the efficient implementation can be 1000 times faster than the native implementation.
Answer: Protocol model and reference model
Explanation:
There are basically two types of basic network administrator model in the network that is:
Protocol model:
This model is basically represent the 4 layer of the TCP/IP model as it describe the different functionality with the networking data which occur in the each layer of the protocol in the TCP/IP model.
Reference model:
The reference model basically provide the common reference and maintain the consistency in all the different types of the network protocol. The main purpose of this model is that it understand the different functionality of the OSI model and then used in different networking design.