Search Interview Questions | Click here and help us by providing the answer. Click Correct / Improve and please let us know. |
|
|||
|
| ||||
| Core Java - Interview Questions and Answers for 'Decimal' - 4 question(s) found - Order By Newest | ||||
| ||||
| Ans. 1. The problem with double (x*100)/100 doesn't return exact x but few fractions lesser than x and then if you are using floor rounding , it makes a big difference 2. Rounding only after getting a result vs rounding each outcome of 2 operand make difference 3. Usage of inappropriate Rounding mode and Rounding scale. 4. Results with double and BigDecimal | ||||
| Ans. BigDecimal if memory and Performance is not critical concern, otherwise double. | ||||
| ||||
| Ans. BigDecimal provides more precision as compared to double. | ||||
| ||||
| Ans. Round method would round it to integer places irrespective of if it's decimal places or not whereas scale would only round the decimal places. | ||||