

InterviewSolution
Saved Bookmarks
1. |
Which of the following is incorrect?(a) float(‘inf’)(b) float(‘nan’)(c) float(’56’+’78’)(d) float(’12+34′) |
Answer» The correct choice is (d) float(’12+34′) Easy explanation - ‘+’ cannot be converted to a float. |
|