To create an instance of Big Decimal for 454.45, use ________.
A) Big Decimal(454.45)
B) New Big Decimal(454.45)
C) New Big Decimal("454.45")
C) Big Decimal("454.45")

Respuesta :

Answer:

C.

Explanation:

Based on the Java documentation; when creating an instance of BigDecimal, we can pass a string as a constructor.

System.out.println(new BigDecimal("454.45"));