下列中央银行的信贷调控手段中,属于减少流通中货币的有()
A.减少黄金储备
B.降低法定存款准备金率
C.增加外汇储备
D.卖出有价证券
E.提高再贴现率
参考答案:A, D, E
选择划线字注音全对的一项[ ]
A、狼藉 jié 叱骂 chì 隘口 ài 悚然 sǒng
B、嗫嚅 niè 唾手 chuí 彷徨 páng 蹂躏 lìn
C、厮守 sī 俨然 yǎn 骁xiāo健 褴褛 lán
D、踌躇 chú 讪笑 xiān 窒息 zhì 颓唐 tuí
下面程序段的输出结果为( )。 public class Test int a,b; Test() a=100; b=200; Test(int x,int y) a=x; b=y; public static void main(String args[]) Test Obj1=new Test(12,45); System.out.println("a="+Obj1.a+"b="+Obj1.b); Test Obj2=new Test(); System.out.println("a="+Obj2.a+"b="+Obj2.b);
A.a=100 b=200 a=12 b=45
B.a=12 b=45 a=100 b=200
C.a=12 b=200 a=100 b=45
D.a=100 b=45 a=12 b=200