financial management______
Which of the following belongs to current liability?()
A. accounts payable
B. common stock
C. inventories
D. notes payable
public class TestException { public void CreateException() throws Exception{throw new Exception("new exception"); } public static void main(String[] args) { TestException te = new TestException(); try{ System.out.println("try called start"); te.CreateException(); System.out.println("try called end"); } catch(Exception ex){ System.out.println("catch called"); System.out.println( ex.getMessage()); } finally{ System.out.println("finally called"); } System.out.print("main() finished"); }}程序的输出结果是:______
(1)abstract class A{ (2) abstract void f(){};(3) public abstract void k(); }(4)class B extends A{ (5) protected void f(){ }(6) void k(){ (7) System.out.print("I am subclass"); }(8) public static void main(String[] args) { (9) A a=new A(); (10) a.f(); (11) a.k(); }} (1)程序的两处错误是:______ 、______ (2)第一处修改为:______ (3)第二处修改为:______