PImage kittenface; void setup(){ size (110,100); kittenface = loadImage("kittenface.png"); //Ex 1 int x = 12; float f = float(x); String s = str(x); byte b = byte(x); boolean boo = boolean(x); println("Integer" + x); println("Float " + f); println("String " + s); println("Byte " +b); println("Boolean " +boo); //Ex 2 int kh = kittenface.height; int kw = kittenface.width; println(); println("Image height equals " + kh + " pixels"); println("Image width equals " + kw + " pixels"); //Ex 3 String q = "May I ask you a question?"; String a = "No, you may not."; String combo = q.substring(4,14) + a.substring(12); println(); println(combo); println(combo.toUpperCase()); } void draw(){ image(kittenface, 0,0); }