Answer: Diagram associated with your question is attached below
5) B
6) C
Explanation:
5) The pin support at A allows ; Rotation about its central axis
This is because pin supports does not allow the translation of its structural member in any direction i.e. y or x but only rotation about its axis
6) The support at B does not allow displacement in y direction
This is because roller support allows displacement only in the direction that they are situated and in this case it is the x - direction
Answer:
2.08V/cm
Explanation:
Plot the points on a graph. Draw the line of best fit. Calculate the gradietn of line of best fit.
Attached is the graph plotted on excel.
The equation of the line is
Votlage= 2.08× distance + 0.276
Answer:
Explanation:
From the information given;
The velocity of the wind blow V = 7 m/s
The diameter of the blades (d) = 80 m
Percentage of the overall efficiency 
The density of air 
Then, we can use the concept of the kinetic energy of the wind blowing to estimate the mechanic energy of air per unit mass by using the formula:

here;
m = 
= 
= 43982.29 kg/s
∴




The actual electric power is:



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)
I don’t know how to speak the laungue or know this language