Answer:
%Program prompts user to input vector
v = input('Enter the input vector: ');
%Program shows the value that user entered
fprintf('The input vector:\n ')
disp(v)
%Loop for checking all array elements
for i = 1 : length(v)
%check if the element is a positive number
if v(i) > 0
%double the element
v(i) = v(i) * 2;
%else the element is negative number.
else
%triple the element
v(i) = v(i) * 3;
end
end
%display the modified vector
fprintf('The modified vector:\n ')
disp(v)
Answer:
(C) ln [Bi]
Explanation:
Radioactive materials will usually decay based on their specific half lives. In radioactivity, the plot of the natural logarithm of the original radioactive material against time will give a straight-line curve. This is mostly used to estimate the decay constant that is equivalent to the negative of the slope. Thus, the answer is option C.
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
A torque wrench tool is a tool that ensures that a fastener has the proper amount of tightness.
<h3>What is the torque wrench used for?</h3>
The torque wrench tool is used to ensure screws and bolts are properly tightened. When performing home repairs and maintenance of equipment it is quite important that a torque wrench is used in other to prevent a scenario where a fastener (screws and bolts) does not become loose leading to equipment failure or damage. Because of its many advantages, this tool is often found in the possession of construction workers.
You can learn more about the benefits of a torque wrench tool here
brainly.com/question/15075481
#SPJ1