BigDecimal gives you control over how values are rounded. By default:
a. all calculations are approximate and no rounding occurs.
b. all calculations are approximate and rounding occurs.
c. all calculations are exact and no rounding occurs.
d. all calculations are exact and rounding occurs.
c. all calculations are exact and no rounding occurs.
Computer Science & Information Technology
You might also like to view...
In PowerPoint, the ________ controls the intensity of color on different parts of the object
A) Texture B) Picture C) Shape Effects D) Gradient
Computer Science & Information Technology
What is the output of the following code: loopCount = 1;while(loopCount < 3){ System.out.println("Hello"); loopCount = loopCount + 1;}
A. Hello B. HelloHello C. HelloHelloHello D. HelloHello
Computer Science & Information Technology