What will be the output of the following program?
public class Conversions {
public static void main(String args[]) {
int cat = 15;
String dog = Integer.toBinaryString(cat);
String monkey = Integer.toOctalString(cat);
String cow = Integer.toHexString(cat);
System.out.print(dog + " " + monkey + " " + cow);
}
}