If you ignore taxes and costs, a stock repurchase will I. reduce the total assets of a firm. II. decrease the earnings per share. III. reduce the PE ratio more so than an equivalent stock dividend. IV. reduce the total equity of a firm
【单选题】关于以下程序叙述正确的是 class Base { Base(int i){ System.out.print(“Base ”); } } class Test extends Base{ Test ( ){ System.out.print(“Test ”); } public static void main(String[] args){ Test b = new Test(); } }