Answer:
It helps ensure the security of client data.
Explanation:
Cloud computing is one of the security features in networking which is being adopted by big corporations and organizations inorder to ensure smooth running of the organization.
Also, due to the sensitivity of data which some organizations deals in, they tried everything possible to protect themselves and their clients' information through use of cloud computing.<em> Data are stored in the clouds, and requires special administrative rights for it to be accessed by some of the staffs working in any given organization.</em>
Builderman is dksbdkbsnsbs
Answer:
The solution code is written in Python:
- def convertCSV(number_list):
- str_list = []
- for num in number_list:
- str_list.append(str(num))
-
- return ",".join(str_list)
- result = convertCSV([22,33,44])
- print(result)
Explanation:
Firstly, create a function "convertCSV" with one parameter "number_list". (Line 1)
Next, create an empty list and assign it to a new variable <em>str_list</em>. (Line 2)
Use for-loop to iterate through all the number in the <em>number_list</em>.(Line 4). Within the loop, each number is converted to a string using the Python built-in function <em>str() </em>and then use the list append method to add the string version of the number to <em>str_list</em>.
Use Python string<em> join() </em>method to join all the elements in the str_list as a single string. The "," is used as a separator between the elements (Line 7) . At the end return the string as an output.
We can test the function by calling the function and passing [22,33,34] as an argument and we shall see "22,33,44" is printed as an output. (Line 9 - 10)
Answer:
c = 18.0569 mm
Explanation:
Strategy
We will find required diameter based on angle of twist and based on shearing stress. The larger value will govern.
Given Data
Applied Torque
T = 750 N.m
Length of shaft
L = 1.2 m
Modulus of Rigidity
G = 77.2 GPa
Allowable Stress
г = 90 MPa
Maximum Angle of twist
∅=4°
∅=4*
/180
∅=69.813 *10^-3 rad
Required Diameter based on angle of twist
∅=TL/GJ
∅=TL/G*
/2*c^4
∅=2TL/G*
*c^4
c=
∅
c=18.0869 *10^-3 rad
Required Diameter based on shearing stress
г = T/J*c
г = [T/(J*
/2*c^4)]*c
г =[2T/(J*
*c^4)]*c
c=17.441*10^-3 rad
Minimum Radius Required
We will use larger of the two values
c= 18.0569 x 10^-3 m
c = 18.0569 mm
Answer:
Hydrostatic force = 41168 N
Explanation:
Complete question
A triangular plate with a base 5 ft and altitude 3 ft is submerged vertically in water so that the top is 4 ft below the surface. If the base is in the surface of water, find the force against onr side of the plate. Express the hydrostatic force against one side of the plate as an integral and evaluate it. (Recall that the weight density of water is 62.5 lb/ft3.)
Let "x" be the side length submerged in water.
Then
w(x)/base = (4+3-x)/altitude
w(x)/5 = (4+3-x)/3
w(x) = 5* (7-x)/3
Hydrostatic force = 62.5 integration of x * 4 * (10-x)/3 with limits from 4 to 7
HF = integration of 40x - 4x^2/3
HF = 20x^2 - 4x^3/9 with limit 4 to 7
HF = (20*7^2 - 4*7^(3/9))- (20*4^2 - 4*4^(3/9))
HF = 658.69 N *62.5 = 41168 N