Question: What will be the output when the following code is run: for i = 1 : 5 result ( i ) = i ^ 2

What will be the output when the following code is run:
for i=1:5
result(i)= i^2;
end
disp('Result of the for loop:');
disp(result);
Result of the for loop: [14
Result of the for loop: [1123
Result of the for loop: [1822764125]
What will be the output when the following code

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!