What is the result of comparing these BigDecimal values?BigDecimal a = new BigDecimal("1.0"); BigDecimal b = new BigDecimal("1.00"); System.out.println(a.equals(b) + " " + (a.compareTo(b) == 0));