Answer:
(a) Mn = M₁ + (n-1) (M₂ -M₁) = 1 + (n- 1) 1 = n (b) n > 10 (exceed 10) or n =11 (c) n >50 or n= 51
After making a journey of 51 times, the rocket will be discarded
Explanation:
Solution
(a) Let Mn denotes the number of maintenance visits after the nth journey
Then M₁ = 1 , M₂ = 1 +M₁ = 2, M₃ = 1 +M₂ = 3
We therefore, notice that M follows an arithmetic sequence
So,
Mn = M₁ + (n-1) (M₂ -M₁)
= 1 + (n- 1) 1 = n
or Mn =n
(b) For what value of n we will get fro Mn > 10
Thus,
n > 10 (exceed 10) or n =11
(c)Similarly of Mn is greater than 50 or Mn>50, the rocket will not be used or reused
So,
n >50 or n= 51
After making a journey of 51 times, the rocket will be discarded
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:
Integrity: involves maintaining and assuring the accuracy of data over its life-cycle
Explanation:
Confidentiality: This is a CIA triad designed to prevent sensitive information from reaching the wrong people, while making sure that the right people have access to it.
Integrity: This is a CIA triad that involves maintaining the consistency, accuracy, and trustworthiness of data over its entire life cycle.
Availability: This is a CIA triad that involves hardware repairs and maintaining a correctly functioning operating system environment that is free of software conflicts.
Authentication:This is a security control that is used to protect the system with regard to the CIA properties.
Explanation:
1) Wind energy is generated through a wind turbine. When wind passes through the blades of wind mill, the blades of the wind mill tend to rotate. Due to the spinning of the rotor across the turbine, the kinetic energy from the wind is converted to electrical energy
2) Incase of wind energy, the consumption gets higher when there is more wind and would be zero incase of no movement of blades.
Incase of hydroelectric power, the generation is rather stable and consumption depends on the usage of power from the consumers
Incase of gasoline generator, the generation is also stable subject to availability of gasoline and consumption again depends on the usage of power from the consumers
3) Pros of Hydroelectric power
Cost of electricity generation is less
Can produce green energy
Produce mass volume of electricity
Cons of Hydroelectric power
Requires massive initial investement
Can be installed on certain demographical area