In the following scheme, for what values of i does x take on a value of 0.75 or less? l>ow=0.5 high = 1000.0 x = high for i=1:100000 x = low + (x-low)/1.543 disp(i) disp(x) 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.


In the following scheme, for what values of i does x take on a value of 0.75 or less?<br/> <br/> l>ow=0.5<br> high = 1000.0<br> x = high<br> for i=1:100000<br> x = low + (x-low)/1.543<br> disp(i)<br> disp(x)<br> end