// this is all three exercises for data 2 in Processing //ex1 char aye = 'a'; char bee = 'b'; char see = 'c'; char dee = 'd'; char eee = 'e'; println(aye); println(bee); println(see); println(dee); println(eee); //ex2 String x = "sleepy"; String y = "kitten"; println(x + " " + y); //ex3 String z = "This is a magical sentence!"; println(z);