Which of the following best describes the list of numbers resulting from the following code?>for i=0:3.14:0.01sn = sin(i)cn= cos(i)r = sn*sn + cn^2disp(r)end

🎲 Try a Random Question  |  Total Questions in Quiz: 64  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
ME101: Final Exam - Introduction to Mechanical Engineering — practice the complete quiz, review flashcards, or try a random question.

MCQs on the basics of Mechanical Engineering.


Which of the following best describes the list of numbers resulting from the following code?<br>>for i=0:3.14:0.01<br>sn = sin(i)<br>cn= cos(i)<br>r = sn*sn + cn^2<br>disp(r)<br>end<br/>