问题 单项选择题

安全生产标准化为()标准。

A.国家标准

B.行业标准

C.地方标准

D.国家法规

答案

参考答案:B

阅读理解
Shakespeare’s Globe Theatre and Exhibition Tour
Overview
Shakespeare's Globe Exhibition is the world's largest exhibition devoted to Shakespeare. Located beneath the reconstructed Globe Theatre on London's Bankside, the exhibition explores the remarkable story of the Globe, and brings Shakespeare's world to life using a range of interactive displays and live demonstrations.
Highlights
Tour the reconstructed Globe Theatre and see how plays were staged in Shakespeare's day
All-day access to the interactive Globe Exhibition
Actors, recordings and interactive displays bring Shakespeare's world to life
Schedule
April 23 to October 9
9:00am to 5:00pm. On Monday, tours run all day. Tuesday to Saturday, last tour departs at 12:30pm and at 11:30am on Sunday due to performances taking place on these days.
October 10 to March 31
10:00am to 5:00pm.
Important note: Rehearsals(排练) will also take place throughout the Theatre Season. Please note that access to the Globe Theatre may be restricted and there may be occasions when the Globe tours are unable to run. When the Globe tours are not available, Rose or Bankside tours can be offered instead.
Additional info
Inclusions:  Entrance fee and all day access to Exhibition
Guided tour of Shakespeare's Globe Theatre (maximum 50 people)
Exclusions(不包含项目):  Hotel pickup and drop off
Food and drinks, unless specified
Pricing
Click the link below to check pricing & availability on your preferred travel date. Our pricing is constantly updated to ensure you always receive the lowest price possible - we 100% guarantee it. 

Theatre Tour and Exhibition
Shakespeare's Globe Theatre Tour and Exhibition
$22.34
Theatre Tour and Afternoon Tea
Shakespeare's Globe Theatre Tour and Exhibition plus Afternoon Tea at 3:00pm in the Swan Brasserie or Bar.
$62.89
小题1:The passage can be found ___________.
A.in a newspaperB.in a magazineC.on the InternetD.in a guidebook
小题2:In this Shakespeare’s Globe Theatre Tour, we can _________.
A.visit the original Globe Theatre
B.enjoy a British afternoon tea for free
C.experience Shakespeare’s world in an interactive way
D.visit the exhibition in the Globe Theatre
小题3:What is true about the tour according to the passage?
A.Rehearsals may affect the tour.
B.The pricing remains the same.
C.Performances take place throughout the year.
D.The opening hours are the same in May and in November.
小题4:If the Globe tours are unable to run, ________ will be offered instead.
A.a Shakespeare’s playB.afternoon tea
C.Rose or Bankside toursD.hotel pickup
问答题

【说明】
下面是一个Applet程序,其功能是根据给出的小时,分钟和秒数计算相等的秒数,即将1分钟化为60秒,依此类推。要求建立一个时间类,时间参数均作为类的成员变量,并且给出换算时间的方法,也作为这个类的成员函数,可以供外部对象进行调用。同时还需要在输出窗口中显示换算结果,并且将结果写到out3_3.txt文件中,本题给出确定的时间为4小时23分47秒,要求换算成以秒做单位的时间。
程序运行结果如图11所示。


import java.io.*;
import java.awt.*;
impOrt java.applet.*;
/*
<applet code=ex7_7.class width=800 height=400>
</applet>
*/
public class ex7_7 extends APPlet
public void paint (Graphics g)
int nSum;
class myTime7_7
public int h;
public int m;
public int s;
public int out;
public int caculateSecond()
(1)
return out;


myTime7_7 objTime7_7=new myTime7_7();
ObjTime7_7. h=4;
ObjTime7_7.m=23;
ObjTime7_7.s=47;
nSum=objTime7_7. (2)
g.drawString("时:"+objTime7_7.h,20,30);
g.drawString("分:"+objTime7_7.m,20,50);
g.drawString("秒:"+objTime7_7.s,20,70);
g.drawString( (3) );
try
FileOutputStream fos7_7=new FileOutputStream("out7_7.txt");
BufferedOutputStream bos7_7=new BufferedOutputStream(fos7_7,1024);
PrintStream ps7_7=new PrintStream(bos7_7,false);
SyStem.setOut(ps7_7);
System.out.println( (4) );
ps7_7. close();
catch(|OException ioe)
(5) (ioe);



ex7_7.htm|
<HTML>
<HEAD>
<TITLE>ex7_7</TITLE>
</HEAD>
<BODY>
<appletcode="ex7_7.class"width=800 height=400>
</applet>
</BODY>
</HTML>