InterviewSolution
Saved Bookmarks
| 1. |
Find the error int d= Math.sqrt(49); |
| Answer» INT d= Math.sqrt(49); is WRONG and should be CORRECTED to double d= Math.sqrt(49);Explanation:Math.sqrt() always returns a double data type. | |