Page 1 of 1

Which of the following statements creates an Integer object named countObject from an int variable named count? Question

Posted: Fri Jul 01, 2022 5:34 am
by answerhappygod
Which of the following statements creates an Integer objectnamed countObject from an int variable named count? Question 3options: Integer countObject = count; Integer countObject =(Integer) count; Integer countObject = new Integer(count); IntegercountObject = Integer(count); .