对账中发现的不符账项,必须于()内查明原因,及时处理,并在余额对账单回执上注明核对日期、不符原因及处理结果。
A. 1个工作日
B. 2个工作日
C. 3个工作日
D. 4个工作日
查看答案
某建筑公司一项目部,有3名工人在一长约4m,宽1.5m的坑内用氯丁胶液(成分主要为苯,达86.9%)将603氯化聚乙烯贴在墙上作防水涂层的作业。3名工人均未戴防毒面具及口罩,坑内无通风设备。工作1h后,在8m处的工人感到头昏眼花,爬上地面后喊叫在坑下11m处作业的工人,未见动静,经采取措施将坑下11m处的2人救起,均已死亡。 请分析事故原因。 无安全操作交底。
A. 正确
B. 错误
public class TestFive { private int x; public void foo() { int current = x; x = current + 1; } public void go() { for(int i=0;i<5;i++) { new Thread() { public void run() { foo(); System.out.print(x + “, “); } }.start(); }}} Which two changes, taken together, would guarantee the output: 1, 2, 3, 4, 5, ?()
A. Move the line 12 print statement into the foo() method.
B. Change line 7 to public synchronized void go() {.
Change the variable declaration on line 3 to private volatile int x;.
D. Wrap the code inside the foo() method with a synchronized( this ) block.
E. Wrap the for loop code inside the go() method with a synchronized block synchronized(this) { // for loop code here }.