3. What will happen when you compile and run the following code?
class One{
public One(){
System.out.print("One");
}
}
class Two{
public Two(){
System.out.print("Two");
}
}
class Three{
public Three(){
System.out.print("Three");
}
}
public class Test{
static Three three = new Three();
Two two = new Two();
static One one = new One();
public static void main(String[] args) {
System.out.print("Hello");
Test t = new Test();
}
}