A question is this type if and only if it asks to use a given iterative formula with a specified starting value to find a root to a stated accuracy, showing intermediate iterations.
122 questions · Moderate -0.1
| LINE 10 | INPUT \(X\) |
| LINE 20 | LET \(K = 1\) |
| LINE 30 | LET \(Y = \left( X ^ { * } X + 16 \right) / \left( 2 ^ { * } X \right)\) |
| LINE 40 | PRINT \(Y\) |
| LINE 50 | LET \(X = Y\) |
| LINE 60 | LET \(K = K + 1\) |
| LINE 70 | IF \(K = 4\) THEN GO TO LINE 90 |
| LINE 80 | GO TO LINE 30 |
| LINE 90 | STOP |