菜单的艺术设计包括()。
A.菜单的规格与篇幅
B.封面与封底
C.字体与图片的选择
D.纸张选择
参考答案:A, B, C, D
某学院有老师100名,学生3000名,假设老师的打字速度都是90字/分钟,学生的打字速度都是60字/分钟,为使180000字在一小时中正好打完,为使所用人数最少,请问老师和学生分别用多少名?()
A.20,20
B.32,2
C.25,12
D.30,5
下列程序的输出结果为( )。 public class Reentrant {public synchronized void a(){ b(); System.out.println("here I am, in a()");}public synchronized void b(){ System.out.println("here I am, in b()");}public static void main(String args[ ]){ Reentrant r=new Reentrant(); r.a();} }
A.here I am, in a()/here I am, in b()
B.hereI am, in b()/here I am, in a()
C.here I am, in a()
D.here I am, in b()