多项选择题
A. Error
B. Event
C. Object
D. Throwable
E. Exception
F. RuntimeException
单项选择题 1. abstract class AbstractIt { 2. abstract float getFloat(); 3. } 4. public class AbstractTest extends AbstractIt { 5. private float f1 = 1.0f; 6. private float getFloat() { return f1; } 7. } What is the result?()
单项选择题 public class Test {} What is the prototype of the default constructor?()
单项选择题 try { int x = 0; int y = 5 / x; } catch (Exception e) { System.out.println(“Exception”); } catch (ArithmeticException ae) { System.out.println(“Arithmetic Exception”); } System.out.println(“finished”); What is the result?()