下列属于国家统一会计制度的有()
A.《企业财务报告条例》
B.《企业会计准则—基本准则》
C.《会计从业资格管理办法》
D.《金融企业会计制度》
参考答案:B, C, D
1151差压变送器整机测量电路共有三种其中F型用于微差压变送器()
A、J型用于流量变送器
B、E型用于其他变送器
C、G型用于高压变送器
D、D型用于低压变送器
请阅读下面程序 public class ThreadTest public static vodi main(Sting args[]) Thread t1=new Thread(new Hello()); Thread t2=new Thread(new Hello()); t1.start(); t2.start(); class Hello implements Runnable int i; public void run() while (true) System.out.printIn("Hello"+i++); if(i==5) break; 该程序创建线程使用的方法是______。
A.继承Thread类
B.实现Runnable接口
C.t1.start()
D.t2.start()