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:
The p-n junction is a region formed when a p -type semiconductor material is joined to an n-type semiconductor material
Explanation:
The p type semiconductor has holes as its majority charge carriers making it positively charged while the n –types has an overall negative charge. At the junction the holes move towards the electron until such a time when there is a balance in charges from both materials, which leads to the formation of the depletion zone as shown in the attachment below
True strain and engineering strain? True stress is defined as the load divided by the cross-sectional area of the specimen at that instant and is a true indication of the internal pressures. ... Engineering stress is defined as the load divided by the initial cross-sectional area of the specimenAnswer:
Explanation:
Answer: I will list them down below!
Explanation:
He can buy 6, 50 cent candies.
He can buy 30, 20 cent candies.
He can buy 6, 30 cent candies and 6, 20 cent candies.
He can buy 15, 20 cent candies and 3, 50 cent candies.
He can by 3, 20 and 30 cent candies and 3, 50 cent candies.
That's it.
Hope this helps!