+91-85006-22255
What will be the output of the following program?
public class Reverse { public static void main(String[] args) { int i = 10; Integer data = new Integer(i); System.out.println(Integer.bitCount(i)); System.out.println(Integer.reverse(i)); }}
Topic: Converting Numbers to and from Strings In Java
Read this topic Take test on this topic
Open In App