1.

sqrt(x) function is not faster than the apparent equivalent pow(x,0.5).(a) true(b) falseThis question was addressed to me during a job interview.This interesting question is from Mathematical functions in division C Library of C

Answer»

Correct choice is (b) false

Easiest EXPLANATION - sqrt(X) function is generally much faster than the APPARENT equivalent POW (x, 0.5).



Discussion

No Comment Found

Related InterviewSolutions