Answer:
The programs are written in MATLAB.
(a)
sum = 0;
for i = 2:100 %This for loop starts from 2 and ends at 100
sum = sum + i; %This line sums each values of the loop
end
disp(sum); %This command displays the sum at command window
(b)
sum = 0;
for i = 2:100
sum = sum + i^2; %This line sums the squares of each values in the loop
end
disp(sum);
(c)
sum = 0;
a = input('Please enter a: ');
b = input('Please enter b: ');
for i = a:b
if mod(i,2) == 1 %This command checks whether the value in the loop is odd or not
sum = sum + i; %This command sums each odd value in the loop
end
end
(d)
seq = input('Please enter a few numbers with square brackets [] around them: ');
small = seq(1); %Initialize small
large = seq(1); % Initialize large
for i = 1:length(seq) %Iterate over the sequence
if seq(i) < small
small = seq(i); %Decide if the value in the loop is smallest
elseif seq(i) > large
large = seq(i); %Decide if the value in the loop is largest
end
end
fprintf('The smallest of the inputs is %g,\nThe largest of the inputs is %g.\n',small,large);
B. Distance between page margin and edges of page.
Answer choice: OD.code editor
Explanation:PLato
Answer:
Pick up roller
Explanation:
you should first check the pickup roller component. This component is the part of the printer that picks paper up from the paper tray. The pickup roller links the printer and the paper. When the printer printer is running, the roller would take paper from the paper tray for the printer to print on. One of the issues it can have is Paper jam where the roller would stop turning so that it will no longer be picking papers up from the tray.
Answer:
You can share the presentation with your group. Share the presentation with everyone by email so everyone can work on it at once. Give your group members their own part to work on.
Explanation: