A good way to assure that the random number generator will not give the same seq
ID: 3843019 • Letter: A
Question
A good way to assure that the random number generator will not give the same sequence of random numbers each time your program is run is to A. only run your program once in your lifetime. B. use the random number generator in a for loop. C. seed it using 32767 as the seed. D. seed it differently using srand() each time you run it. The Newton-Raphson method algorithm for locating the root of a function is guaranteed to locate a root in a known number of iterations. A. TRUE B. FALSE A better approximation of the area under a curve is by decreasing the trapezoid number used. A.TRUE B.FALSE Which of the following is a disadvantage of the Newton-Raphson method? a. It converges more rapidly than many other methods. b. It requires you to be able to determine the derivative of the function which may not be easy to do. c. It may diverge if the guess is not close enough to the root of the equation d. You have to guess many times to get a single root. It is impossible to predExplanation / Answer
29)
D. seed it differently using srand() each time you run it
30)
False, we iterate untill While derivative is greater than allowed error
31)
True
32)
Ans: b.
Newton Raphson method requires derivative. Some functions may be difficult to
impossible to differentiate.
33)
True