To create an instance of BigDecimal for 454.45, use

To create an instance of BigDecimal for 454.45, use


A. BigInteger(454.45);
B. new BigInteger(454.45);
C. BigInteger("454.45");
D. new BigDecimal("454.45");

The correct answer is D


Java

Learn More Multiple Choice Question :