晚上小东面向北极星站立,他的后面是______,左面是______.
晚上小东面向北极星站立,他的后面是南,左面是西面;
故答案为:南,西.
《消防法》未作持证上岗要求的人员是( )。
A.电焊作业人员
B.气焊作业人员
C.消防器材经销人员
D.自动消防系统操作人员
有如下的代码段,当编译和运行时,下列各选项中说法正确的是( )。 public class Z public static void main(String args[]) new Z (); Z() Z alias1 = this; Z alias2 = this; synchronized(alias1) try alias2.wait(); System.out.println("DONE WAITING"); catch (InterruptedException e) System.out.println( "INTERRUPTED"); catch (Exception e) System.out.println("OTHER EXCEPTION"); finally System.out.println ("FINALLY"); System.out.println("ALL DONE");
A.应用程序编译正常,但是不打印任何数据
B.应用程序编译正常,并打印数据“DONE WAITING”
C.应用程序编译正常,并打印数据“FINALLY”
D.应用程序编译正常,并打印数据“ALL DONE”