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