上机2
- 格式:pdf
- 大小:221.11 KB
- 文档页数:14
2013年计算机等级考试三级PC技术上机(2)请编制程序,其功能是:内存中连续存放着10个无符号8位格雷码表示的数,现将此十个数转换成十个8位二进制数,结果存入内存,其转换方法为二进制数的最高位D7与格雷码的最高位G7相同,二进制数的其余七位DK(k=6,…,0)分别为格雷码的位GK(k=6,…,0)与二进制数的位DK+1(k=6,…,0)异或的结果。
例如:内存中有00H,03H,2BH,67H,0CH,15H,54H,02H,D8H,C7H结果为 00H,02H,32H,45H,08H,19H,67H,03H,90H,85H部分程序已给出, 其中原始数据由过程LOAD从文件INPUT1.DAT中读入SOURCE开始的内存单元中。
运算结果要求从RESULT开始存放,由过程SAVE保存到文件OUTPUT1.DAT 中。
填空BEGIN和END之间已给出的源程序使其完整(空白已用横线标出,每行空白一般只需一条指令, 但采用功能相当的多条指令亦可),或删除BEGIN和END之间原有的代码并自行编程来完成要求的功能。
对程序必须进行汇编,并与IO.OBJ链接产生PROG1.EXE 执行文件,最终运行程序产生结果(无结果或结果不正确者均不得分)。
调试中若发现整个程序中存在错误之处, 请加以修改。
试题程序:EXTRN LOAD:FAR,SAVE:FARN EQU 10STAC SEGMENT STACKDB 128 DUP(?)STAC ENDSDATA SEGMENTSOURCE DB N DUP(?) ;顺序存放10个字节数RESULT DB N DUP(0) ;存放结果NAME0 DB 'INPUT1.DAT',0NAME1 DB 'OUTPUT1.DAT',0DATA ENDSCODE SEGMENTASSUME CS:CODE,DS:DATA,SS:STAC START PROC FARPUSH DSXOR AX,AXPUSH AXMOV AX,DATAMOV DS,AXLEA DX,SOURCE ;数据区起始地址LEA SI,NAME0 ;原始数据文件名MOV CX,N ;字节数CALL LOAD ;从'INPUT1.DAT'中读取数据;****BEGIN****LEA SI,SOURCELEA DI,RESULTMOV CX,10AGN0: MOV AL,[SI] ________________ MOV CX,8MOV BX,0AGN1: MOV AH,0 SHL BL,1____ AL,1RCL AH,1CMP AH,____________________ JMP NEXTSET_ONE:OR BL,01H NEXT: MOV ____,BL ________________LOOP AGN1________________MOV [DI],BLINC SIINC DILOOP AGN0;****END****LEA DX,RESULT ;结果数据区首址LEA SI,NAME1 ;结果文件名MOV CX,N ;结果字节数CALL SAVE ;保存结果到文件RETSTART ENDPCODE ENDSEND START。
导游业务考试—上机题库(二)一、判断题(每小题0.5分,40题,共20分)1.导游讲解“虚实结合法”中的“虚”是指与景观有关的想象和联想。
[判断题] *对错(正确答案)答案解析:“实”是指景观实体、实物、史实等;“虚”是指与景观有关的民间传说、神话故事、趣闻逸事等。
2.“外汇”是指以外币表示的可用于国际结算的一种支付手段,中国对外汇实行国家集中管理、统一经营的方针。
[判断题] *对(正确答案)错3.地方治安不理想,存在安全问题时,导游人员应劝阻旅游者单独自由活动。
[判断题] *对(正确答案)错4.人们常说“没有导游的旅行是最乏味的旅行”,这说明导游服务在旅行社业务中占据核心地位。
[判断题] *对(正确答案)错5.导游人员与导游者的谈话内容一般不要涉及工资收入和对方的履历。
[判断题] *对(正确答案)错6.旅游者心脏病突发,导游人员应由患者亲属、领队或其他旅游者从患者口袋中寻找备用药物让其服用;到附近的医院找医生前来救治;让其就地平躺(头略高)。
[判断题] *对(正确答案)错7.抵达景点时,下车前地陪要讲清楚并提醒旅游者记住停车地点、离开时间、本景点特色纪念品。
[判断题] *对错(正确答案)答案解析:抵达景点时,下车前地陪要讲清楚并提醒旅游者记住旅游车的型号、颜色标志、车号和停车地点、离开时间8.世界近代旅游业的创始人是托马斯·库克,银行家陈光甫先生开创中国近代旅游业。
[判断题] *对(正确答案)错9散客服务程序主要包括接站服务、途中服务、送站服务。
[判断题] *对错(正确答案)答案解析:散客服务程序主要包括:(1)接站服务。
接站服务是散客到达旅游目的地之前向旅行社办理的委托服务,导游人员的主要任务是按散客的委托要求将其从机场(车站、码头)接送到客人预订的饭店。
(2)导游服务。
散客导游服务是旅行社在接受了散客至某一旅游线路、旅游区或旅游点的委托后,派遣导游人员为其提供的导游服务。
数值实验数值实验综述:线性代数方程组的解法是一切科学计算的基础与核心问题。
求解方法大致可分为直接法和迭代法两大类。
直接法——指在没有舍入误差的情况下经过有限次运算可求得方程组的精确解的方法,因此也称为精确法。
当系数矩阵是方的、稠密的、无任何特殊结构的中小规模线性方程组时,Gauss消去法是目前最基本和常用的方法。
如若系数矩阵具有某种特殊形式,则为了尽可能地减少计算量与存储量,需采用其他专门的方法来求解。
Gauss消去等同于矩阵的三角分解,但它存在潜在的不稳定性,故需要选主元素。
对正定对称矩阵,采用平方根方法无需选主元。
方程组的性态与方程组的条件数有关,对于病态的方程组必须采用特殊的方法进行求解。
实验一一、实验名称:矩阵的LU分解.二、实验目的:用不选主元的LU分解和列主元LU分解求解线性方程组Ax=b, 并比较这两种方法.三、实验内容与要求(1)用所熟悉的计算机语言将不选主元和列主元LU分解编成通用的子程序,然后用编写的程序求解下面的84阶方程组将计算结果与方程组的精确解进行比较,并就此谈谈你对Gauss消去法的看法。
(2)写出追赶法求解三对角方程组的过程,并编写程序求该实验中的方程组(1)①不选主元高斯消去法求解方程组function [L,U]=gauss1(A,b)n=length(A);for k=1:n-1A(k+1:n,k)=A(k+1:n,k)/A(k,k);A(k+1:n,k+1:n)=A(k+1:n,k+1:n)-A(k+1:n,k)*A(k,k+1:n);endL=tril(A(:,1:n),-1)+eye(n);U=triu(A);主程序为:Clear;clc;a=ones([84,1])*6;b=ones([83,1]);c=ones([83,1])*8;A=diag(a)+diag(b,1)+diag(c,-1); d=ones([82,1])*15;b=[7;d;14];[L U]=gauss1(A,b);n=length(A);y=ones(n,1);y=L\b;x=ones(n,1);x=U\y解为:x=11.000000000000001.000000000000001.000000000000000.9999999999999981.000000000000000.9999999999999931.000000000000010.9999999999999721.000000000000060.9999999999998861.000000000000230.9999999999995451.000000000000910.9999999999981811.000000000003640.9999999999927251.000000000014550.9999999999708981.000000000058200.9999999998835921.000000000232820.9999999995343671.000000000931270.9999999981374691.000000003725060.9999999925498741.000000014900250.9999999701994971.000000059601010.9999998807979861.000000238404030.9999995231919461.000000953616110.9999980927677831.000003814464440.9999923710711301.000015257857740.9999694842845201.000061031430960.9998779371380811.000244125723840.9995117485523231.000976502895350.9980469942092911.003906011581410.9921879768371871.015624046325570.9687519073490881.062496185300920.8750076294018071.249984741181830.5000305176945351.99993896437811 -0.999877927824961 4.99975585192486 -6.99951168894947 16.9990233182979 -30.9980463981918 64.9960918427676 -126.992179871071 256.984344484284 -510.968627937136 1024.93701174855 -2046.87304699420 4096.74218797682 -8190.46875190732 16383.8750076293 -32764.5000305175 65531.0001220701 -131055.000488281 262097.001953124 -524127.007812498 1048001.03125000 -2094975.124999994185857.49999999-8355328.9999999716645128.9999999-33028126.999999965007744.9999998-125821439.000000234866688.999999-402628606.999999536838144.999998可见,这是一个病态方程,从56个跟开始发散。
2. 给出一个百分制的成绩,要求输出成绩等级'A','B','C','D','E'。
90分以上为'A',80~89分为'B',70~79分为'C',60z69分为'D',60分以下为'E'。
#include <iostream.h>main(){char a,b;cout<<"请输入成绩:"<<endl;cin>>a;b=a%10;switch(a){case'9':cout<<"A"<<endl;break;case'8':cout<<"B"<<endl;break;case'7':cout<<"C"<<endl;break;case'6':cout<<"D"<<endl;break;case'5':case'4':case'3':case'2':case'1':case'0':cout<<"E"<<endl;}}学生成绩不能是字符类型#include<iostream.h>int main(){int ch,grade;cin>>grade;ch=grade/10;switch(ch){case '10':C++程序设计(第2版)case '9':cout<<"A"<<endl;break;case '8':cout<<"B"<<endl;break;case '7':cout<<"C"<<endl;break;case '6':cout<<"D"<<endl;break;default:cout<<"E"<<endl;}}运行结果:所有结果都运行了一遍,结果正确。
一、【目录管理命令】clear⏹清屏pwd⏹查看在系统中的什么位置cd⏹切换在系统中的位置⏹cd ..返回到上一级目录⏹cd / 返回系统的根目录⏹概念:绝对路径、相对路径◆绝对路径:从根目录开始的路径cd /home/zx◆相对路径:从当前路径开始的cd zx⏹cd zx和cd /zx是不一样的,前者是从当前位置找zx文件夹,后者是从根目录下找zx文件夹⏹进入桌面的方法:◆cd /root/桌面ls⏹查看当前目录或者是指定目录下有什么文件⏹-a 查看隐藏文件(Linux下的隐藏文件是以. 开头的)⏹-l 看文件的详细信息mkdir⏹创建文件夹⏹-p 递归创建例子1例子2常见错误能正确使用mkdir abc和mkdir /abc①mkdir abc是在当前位置创建abc文件夹②是在根目录下创建abc文件夹touch :创建文本文件⏹在Linux中,文件名的后缀对文件没影响,多加一个后缀名,是为了方便记忆补充内容:终端可以拖出来快照:⏹右键单击虚拟机-->snapshot-->snapshot manager,,打开如下界面点击提示符第一部分:root,代表当前登录系统的用户第二部分:localhost,代表计算机名称第三部分:~,代表在系统中的位置第四部分:#,代表用户的系统权限#代表管理员权限$代表普通用户权限给“桌面”改名为“Desktop”创建多个文件夹⏹Mkdir zx1 zx2 zx3⏹同时创建多个文件夹,用空格分隔路径练习1;在桌面创建zx2:在/创建zx3:在bin下创建zx⏹首先将路径切换到桌面,然后分别执行下面句子,判断执行结果Cd zx :进入桌面上的zx文件夹Cd /zx 进入根目录下的zx文件夹Cd /bin/zx 进入bin下的zx文件夹重启linux命令⏹reboot修改root密码①重启以后,在读秒的时候,按键盘上的"E"②再按“E”,选择最长的哪一项,再按“E”③进来以后,敲个空格,输入single,如下图④输入完成以后敲回车,就又返回到刚才的选择界面了,如下图⑤到这步以后,直接重新引导系统(按键盘上的“B”),,等待一段时间,出现如下图:⑥出现了提示符模样的东西,就代表进入系统了(这个其实是单用户系统),输入“passwd”⑦根据提示再输入密码,就可以完成密码的设置(输入密码的过程,在屏幕不会显示)⑧重启系统:reboot⑨等正常启动系统以后,就可以使用新设置的密码了二、【文件管理命令】cp⏹-r #代表递归⏹-v #代表显示执行过程⏹-f #强制执行⏹例子◆将桌面上的上abc.txt复制到etccp /root/桌面/abc.txt /etc◆将桌面上的所有文件复制到etccp /root/桌面/* /etc◆将/mnt下的所有文件复制到yum下,显示执行过程cp -rvf /mnt/* /yummv⏹-r⏹-v⏹-f⏹例子◆将abc.txt移动到/mv abc.txt /◆将abc.txt移动到/并且改名为zx.txtmv abc.txt /zx.txt◆将abc.txt原地地动,移动后改名为zx.txt(重命名)mv abc.txt zx.txtrm 删除文件、文件夹⏹rm aa #将aa删除⏹rm -f oo #强制删除oo,不询问⏹rm -r qq #qq是个文件夹,必须要用r参数⏹-r 表达递归,删除文件夹,要用此参数(加上r表示将一个文件夹下面的所有文件都删除,最后删除此文件夹)⏹-f 强制执行,不再询问⏹一般删除的时候,都是用rm -rf 组合⏹涉及到通配符的操作⏹*(代表一个或者多个字符),?代表1个字符。
数据结构上机实验二实验内容:栈和链队列的基本操作实验目的:1)熟悉C/C++基本编程,培养动手能力.2)通过实验,加深对堆栈和队列的理解.实验要求:1) 栈和队列的显示要作为函数被调用.2) 把自己使用的栈和队列结构明确的表达出来.分组要求:可单独完成,也可两人一组。
评分标准:1) 只完成第一或第二题,3分;2)完成一和二题,得5分;3)在2)基础上,可选做三)中的题目。
题目:一)堆栈题(顺序栈):创建一个栈+入栈+出栈(1)由键盘一个一个的输入正整数,建立相应的堆栈,输入-1时,堆栈结束;(2)在(1)中创建的堆栈中添加一个元素;(3)在(1)中创建的堆栈中删除一个元素;(要求在显示器可见);#include<stdio.h>#include<stdlib.h>#include <string>#define OK 1#define ERROR 0#define Status int#define STACK_INIT_SIZE 100#define STACKINCREMENT 10typedef struct Stack{int *base;int *top;Status stacksize;}SqStack;Status CreatStack(SqStack &S) //创建空栈{S.base=(int*)malloc(STACK_INIT_SIZE*sizeof(struct Stack));if(!S.base) return ERROR;S.top=S.base;S.stacksize=STACK_INIT_SIZE;return OK;}Status InStack(SqStack &S) //创建栈元素{int e;printf("请输入初始栈元素:\n");scanf("%d",&e);while(e!=-1){if(S.top-S.base>=S.stacksize) //栈满,追加存储空间{S.base=(int*)realloc(S.base,(S.stacksize+STACKINCREMENT)*sizeof(struct Stack));if(!S.base) return ERROR;S.top=S.base+S.stacksize;S.stacksize+=STACKINCREMENT;}*S.top++=e;scanf("%d",&e);}return OK;}Status Push(SqStack &S,int e) //栈加元素{if(S.top-S.base>=S.stacksize) //栈满,追加存储空间{S.base=(int*)realloc(S.base,(S.stacksize+STACKINCREMENT)*sizeof(struct Stack));if(!S.base) return ERROR;S.top=S.base+S.stacksize;S.stacksize+=STACKINCREMENT;}*S.top++=e;return OK;}Status Pop(SqStack &S,int e) //栈中删除元素{if(S.top==S.base) return ERROR;e=*--S.top;printf("\n请输出出栈元素:%d",e);printf("\n");return OK;}void print(){printf("\n菜单:");printf("\n1.由键盘一个一个的输入正整数,建立相应的堆栈,输入-1时,堆栈结束:");printf("\n2.在创建的堆栈中添加一个元素:");printf("\n3.在创建的堆栈中删除一个元素:");printf("\n3.退出");}void printS(SqStack &S) //打印堆栈{int *p;printf("请输出堆栈中的元素:\n");for(p=S.base;p<S.top;p++){printf("%d ",*p);}}void main() //主程序{SqStack S;int e,choice;do{print();printf("\n请输入选项:");scanf("%d",&choice);switch(choice){case 1:if(CreatStack(S)==1){if(InStack(S)==1)printS(S);}break;case 2:printf("\n请输入入栈元素:");scanf("%d",&e);Push(S,e);printS(S);break;case 3:Pop(S,e);printS(S);break;case 4:exit(0);break;}}while(1);}二)链队列题目:初始化队列+入队列+出队列+销毁队列(1)初始化一个链队列;(2)在初始化好的链队列中放入数,入队列,完成后要求显示;(3)从队列中出队列,要求显示出来的元素和之后的队列;(4)销毁创建的队列,释放内存;#include <stdio.h>#include <malloc.h>typedef struct Qnode{//队列结点int data;struct Qnode *next;}QNode, *QueuePtr;typedef struct {QueuePtr front; //队头指针QueuePtr rear; //队尾指针}LinkQueue;void InitQueue(LinkQueue &Q){ //初始化链队列Q.front=Q.rear=(QueuePtr) malloc(sizeof(QNode));Q.front->next=NULL;}void EnQueue(LinkQueue &Q,int e){//入队列QueuePtr p;while(e!=-1){p=(QueuePtr)malloc(sizeof(QNode));p->data=e;p->next=NULL;Q.rear->next=p;Q.rear=p;scanf("%d",&e);}}int QueueLength (LinkQueue Q){//求队列长度QueuePtr p;p=Q.front->next; //p指向队头int i=1;while(p!=Q.rear){ //遍历链队列,统计结点数i++;p=p->next;}return i;}// QueueLengthvoid DeQueue(LinkQueue &Q){ //出队列QueuePtr p;int e;if(Q.front==Q.rear)printf("The queue is empty\n");else{p=Q.front->next;e=p->data;printf("The delete elem is:%d\n",e);Q.front->next=p->next;if(Q.rear==p) Q.rear=Q.front;free(p);}printf("The new queue is :\n");}void DestroyQueue(LinkQueue &Q){ //销毁队列while(Q.front){Q.rear=Q.front->next;free(Q.front);Q.front=Q.rear;}}void QueueTraverse (LinkQueue Q){//遍历显示队列QueuePtr p;for(p=Q.front->next;p!=Q.rear;p=p->next)printf("%d ",p->data);printf("%d ",p->data);}void main(){LinkQueue Q;int e;InitQueue(Q);printf("Put in the elems:\n");scanf("%d",&e);EnQueue(Q,e);printf("The queue is:\n");QueueTraverse(Q);printf("\n");DeQueue(Q);QueueTraverse(Q);printf("\n");DestroyQueue(Q);}三)应用题(1)编制程序,将输入的十进制数据M 转换为八进制数据M8,将其调试通过。
Windows的基本操作一、实验目的●掌握桌面主题的设置。
●掌握任务栏的使用和设置●掌握任务切换的方法●掌握“开始”菜单的组织●掌握快捷方式的创建●掌握多任务之间的数据传递-剪贴板的使用二、(1)创建主题“我喜爱的主题”,保存●桌面背景为居中的“Autumn”,桌面背景设为白色●屏幕保护程序为“楷-GB2312、70磅,紫红色、任意位置上慢速移动”的字幕“今天做错了什么没有?”屏幕保护等待时间为10分钟●更改窗口显示字体为“大字体”●屏幕分辨率更改为1024×768(2)设置任务栏●将任务栏依次移到屏幕的左、上和右边缘,最后移回屏幕下边缘●将任务栏高度设置为3行,再将高度改为1行●设置任务栏自动隐藏、保持在其他窗口的前端、分组相似任务栏按钮●取消任务栏的工具上快速启动和时钟显示●在任务栏上显示“控制面板”工具栏●将系统日期和时间设置为准确的当前时日(3)任务的切换●打开5个文件,利用不同的方式将其窗口切换为活动窗口●利用任务栏●利用ALT+Tab●利用Alt+ESC(4)设置“开始菜单”●将“计算器”添加到“固定项目列表”上●设置以“大图标”显示程序,将常用程序列表的显示数设置为8个●按自己的要求修改“开始”菜单右侧的菜单项目,设定在菜单右侧系统特定查找位置显示“我最近打开的文档”,并将以往的内容清除●将与office2003有关的程序项归纳到新创建的“Microsoft Office”子菜单内(5)创建桌面快捷方式●在桌面创建一个指向“画图”程序(mspaint.exe),文件名为“HT”的快捷方式(6)通过剪贴板完成任务●将当前整个屏幕画面保存到U盘,存为“图像.jpg”●将Windows2003的“帮助和支持”主窗口画面复制到Word文档中●用记事本打开一个TXT文档,将其前5行内容复制到剪贴板,通过剪贴板查看程序查看剪贴板的内容,并在U盘中保存剪贴板文件●在剪贴板查看程序中,打开剪贴板文件welcom.clp并把剪贴板内容粘贴到Word或“画图”文档中三、练习(1)将任务栏设置为不自动隐藏、不对相同任务进行分组、在任务栏上不显示快速启动工具栏,并在通知区域不显示时钟(2)通过任务栏快捷菜单恢复在任务栏上显示快速启动工具栏和时钟(3)将“我的文档”文件夹设置为任务栏上的工具栏,操作该新建工具栏,体会作用,关闭任务栏上的“我的文档”工具栏(4)将喜欢的游戏程序或其他程序添加到“开始”菜单的“固定项目列表上”,并测试(5)用不同的方法,在桌面创建名为“计算器”、“画图”和“剪贴板”的三个快捷方式,项目位置分为为c:\windows\system32\calc.exe,c:\windows\system32\ mspanit,c:\windows\system32\clipbrd.exe(6)在“开始”菜单的“所有程序”子菜单中添加名为“书写器”的快捷方式,项目位置为c:\winNT\system32\write.exe(7)利用5中创建的“计算器”快捷方式打开计算器,选用“标准型”,将该窗口拷贝到剪贴板,利用“剪贴板”快捷键打开剪贴板查看程序,将剪贴板内容以文件名jsq.clp存储在U 盘上(8)将7中的“标准型”计算器窗口,通过“画图”程序,以jpg格式,用文件名jpq.jpg 存入U盘Windows的基本操作一、实验目的●文件和文件夹的创建、属性查看和设置●文件和文件夹的复制、移动和删除与恢复●文件和文件夹搜索二、1、设置文件夹的显示方式●查看下拉菜单的使用(5中查看方式的认识)●文件夹选项的使用(显示和不显示隐藏的文件和文件夹的功能)●排列图标(用名称、大小、类型、修改时间排列图标的方式显示文件)2、文件夹的属性设置●设置文件的只读、隐藏属性3、创建文件夹●创建D:\——aa1——bb1aa2——bb24、新建文本文件●在aa1中创建test文本文件,内容为自己的班级、学号、姓名5、文件夹和文件的复制和移动●将test文本文件复制到bb1中●将bb2文件夹移动到bb1中●将aa2文件夹复制到aa1中6、文件和文件夹的删除●删除test文本文件到回收站●删除aa2文件夹●从回收站恢复aa2●永久删除bb2文件夹7、文件和文件夹的更名●将aa2更名为abc●将test文本文件更名为sch001.ini8、文件和文件夹的搜索●搜索c盘以及其子文件夹下的包含文字“最终用户许可协议”,且文件名第一个字母为e的文本文件9、安装打印机●安装epson的epson DLQ-2000k型号,打印测试页到D:/dayin目录中三、练习1、在U盘上创建MyFiles文件夹和其子文件夹sub1●在c盘windows中搜寻任选3个txt文件,将它们复制到MyFiles中●将MyFiles文件夹中的一个文件移到其子文件夹sub1中●在sub1中建立名为test.txt的空文本文件●删除文件夹sub1,然后将其恢复2、把windows xp帮助窗口中有关windows xp新增主题的序言的全部文本内容复制到记事本,并以文件名“xzzt.txt”保存到sub1下3、在U盘中建立一个名为picture的bmp文件,然后将其直接删除4、在c盘上查找记事本程序(notepad.exe)文件,将其发送到U盘5、搜索c:\windows\system文件夹及其子文件夹下所有文件名第一个字母为s、文件长度小于10k且扩展名为dll的文件,并将它们复制到sub1文件夹中6、安装打印机,并打印测试页到文件。
大学体验英语上机听力2级答案Unit 11Lin Fei: Good morning, Mr Wang. I plan to apply for a student visa to the U.K. Could you tell me how I should prepare for this?Wang: Yes. First get 2 Application Forms and have one filled in English and the other in Chinese.Lin Fei: But where can I get the Form?Wang: It can be downloaded from the Embassy's website and it's also available from most branches of the CITIC Industrial Bank, free of charge.Lin Fei: What else do I need to prepare?Wang: Quite a lot! Two passport photos, your passport, the Notice of Admission, your diploma; transcripts of your courses and grades, and the results of your IELTS test, etc.Lin Fei: Thank you very much for all this info...Wang: Any time!2Secretary: The U.K. Embassy-Beijing's Nonimmigrant Visa Unit. Can I help you?Lin Fei: Yes, Madam. I'd like to make an interview appointment with the visa officer, please.Secretary: Have you filled the Application Forms and got the documents ready as required?Lin Fei: Yes.Secretary: Your name, please?Lin Fei: My name is Lin Fei.Secretary: Thank you. Your appointment date is July 6, 15:00 and your number is 44.Lin Fei: July 6, 15:00, No.44. Thank you...3Lin Fei: By the way, how much is the application fee, please? Secretary: It's RMB830.Lin Fei: Is it refundable?Secretary: No.Lin Fei: Is there anything I am not supposed to bring to my appointment? Secretary: For security reasons, you should not bring any cellular phone, beeper, briefcase or handbag.Lin Fei: Many thanks.Secretary: My pleasure.4Officer: Mr. Lin, why do you want to go to the United Kingdom?Lin Fei: I want to learn English and learn about the culture there. Here ismy Notice of Admission from the London Language Institute.Officer: Do you plan to work during your spare time?Lin Fei: No, sir. But I may try to find a job during vacations, if I'm permitted.Officer: Do you worry about your tuition and living expenses in Britain? Lin Fei: Not at all, sir. This is my passbook.Officer: What will you do after you have completed your study?Lin Fei: I must return to China. With a good command of English, I can easily find a very good job either as an English teacher or as an interpreter.Officer: All right. Glad to have talked with you. Goodbye.Lin Fei: Goodbye.TextUnit 21Lin Fei: What flights do you have from Beijing to London next Tuesday? Assistant: Just a second and I'll find out what's available.Lin Fei: I need an economy ticket.Assistant: British Airlines has a flight leaving at 13:30.Lin Fei: I guess that's OK.Assistant: May I have your name, please?Lin Fei: Yes. I'm Lin Fei.Assistant: Please come to collect the ticket and pay for it before next Monday.Lin Fei: By the way, what time should I check in?Assistant: Please arrive at the airport half an hour before departure time. 2Stewardess: Passport, please.Lin Fei: Here you are.Stewardess: Please have all your luggage examined here. ... Now, would you please put your luggage on the scale and show me your ticket, please?Lin Fei: Here you are. ... Is my luggage overweight?Stewardess: It's all right. Now please put these labels on the luggage. ... All right, here are your passport and ticket. This is your boarding pass for the flight. You'll board from Gate 10A.Lin Fei: Thank you very much. Goodbye.Stewardess: Thank you. Have a nice flight.3Stewardess: Good afternoon, sir. Welcome aboard!Lin Fei: Good afternoon. My seat is in the non-smoking section. Where is it exactly?Stewardess: This way, please. That's your seat by the window.Lin Fei: Thank you.Stewardess: My pleasure. Please be seated. The plane is about to take off. 4Stewardess: What can I do for you?Lin Fei: A glass of orange juice, please.Stewardess: Just a moment, please. ... Here you are.Lin Fei: Thank you. By the way, I'd like to watch the movie on screen, but I can't get the sound to work.Stewardess: You need to use this button here.Lin Fei: Oh, I see. Thank you.Stewardess: What do you want, sir? Beef or chicken?Lin Fei: Beef please.Stewardess: Anything to drink?Lin Fei: Yes. Beer, please.Stewardess: Enjoy yourself, sir.Lin Fei: Thank you!TextUnit 31Lin Fei: Excuse me, but could you tell me where I can claim my baggage, please?Officer: You just go to the baggage claim area and it's in the center of the hall over there.Lin Fei: Thank you. By the way, where should I go through the Customs? Officer: After you've collected your baggage, you can go to that hall. The Customs is right there.Lin Fei: Thank you very much.Officer: You're welcome.2Officer: Show me your passport, please.Lin Fei: Here you are.Officer: Fill in this Customs Baggage Declaration Form, please.Lin Fei: Yes.Officer: Any arms, munitions, living plants or animals?Lin Fei: No.Officer: Any cigarettes or liquor?Lin Fei: Yes. I've brought some cigarettes and liquor as gifts for my friends in Britain.Officer: How much foreign currency are you carrying?Lin Fei: 2000 pounds, sir.Officer: Please make a record of it here. Anything else to declare?Lin Fei: No, sir.3Officer: What's in the suitcase?Lin Fei: My personal effects.Officer: Would you mind opening it?Lin Fei: Not at all. Do I have to pay duty on them?Officer: No. What's in the bag?Lin Fei: The gifts, as I have said.Officer: Please put them on the counter.Lin Fei: Sure.Officer: I'm afraid we'll have to charge you some duty on the liquor. Please proceed to the next hall and pay the duty there.4Officer: Can I help you?Lin Fei: I need to pay the duty on the liquor I'm carrying.Officer: Could you show me the Declaration Form, please?Lin Fei: Here you are.Officer: Yes. You're carrying 6 bottles of liquor and we'll tax you 15% each. That'll be 30 pounds please.Lin Fei: Here you are.Officer: Here is your receipt. You're through with the customs formalities. Lin Fei: Thank you.TextUnit 41Lin Fei: David, I'm looking for an apartment. Do you know where I couldgo for information?David: Let me see. There are several ways to find an apartment. You may look over the ads in the college and local newspapers. But the best way is to consult the Housing Office on campus.Lin Fei: Thank you. I think I'll go to the Housing Office right away. David: Yes. You'd better go before it's too late.Lin Fei: I really appreciate your advice.David: You're very welcome. Good luck and don't forget to call me up as soon as you get settled down.Lin Fei: I will. Goodbye and have a nice day.2Assistant: Hi. What can I do for you?Lin Fei: Hi. I applied for accommodation before coming and my name is Lin Fei from China.Assistant: Wait a minute, please. Yes, your name is on the list.Lin Fei: That's very good.Assistant: Would you plan to live on-campus or off-campus?Lin Fei: Well, I don't know. I want to pay a visit to the accommodation before I make my decision.Assistant: Why not? But please let us know as soon as you make up your mind.Lin Fei: I will. Thank you very much.3Lin Fei: Hello, Mr Wilson. I saw your advertisement "Apartment to Let" in today's newspaper. Is it still available?Landlord: Yes. Come right in and have a look around.Lin Fei: Oh, it's quite roomy and airy. How much is it?Landlord: The monthly rent is 240 pounds if you think it's O.K.Lin Fei: Well, I'd like to take it if you can drop the rent to 200 pounds. Landlord: Deal! When do you want to move in?Lin Fei: How about next week?Landlord: Fine. Here is the lease. Please sign and return it to me as soon as possible.Lin Fei: OK.4Wilson: Welcome to your new home, Mr...?Lin Fei: Lin. Pleased to meet you!Wilson: Pleased to meet you too! My name is Alexander Wilson. Call me Alex.Lin Fei: Yes, Alex.Wilson: I won't charge you anything for electricity and gas. And you can use the kitchen as much as you like.Lin Fei: It's very kind of you, Alex.Wilson: Do make yourself feel at home.Lin Fei: I'm already home.Wilson: Ha-ha-ha!TextUnit 51Lin Fei: Hello! May I speak to Mr David Wang, please?David: Speaking.Lin Fei: Hi! David! This is Lin Fei. I'm calling to tell you I've rented a nice apartment and moved in yesterday.David: Congratulations!Lin Fei: My address is 86 Elm Street. The landlord is called Mr Alexander Wilson. My phone number here is 564-7783. Please drop in whenever you feel like it.David: Thanks. I will.Lin Fei: Bye-bye!David: Bye!2Lin Fei: Hello! May I speak to Mr. Harris, please?Mrs. Harris: Hello! He is not in at this moment. May I ask who is calling? Lin Fei: My name is Lin Fei. I arrived in London from China last week. Mrs. Harris: Oh! Mr. Lin. How nice! This is Mrs. Harris. I heard Bob mention your name but we didn't know you'd arrive so soon. Can I take amessage?Lin Fei: Would you please tell him Lin Fei called and ask him to call back?Mrs. Harris: May I have your phone number please?Lin Fei: 564-7783.Mrs. Harris: OK. I'll give him the message.Lin Fei: Thank you.Mrs. Harris: You're welcome.3Professor: This is London Language Institute.Lin Fei: This is Lin. May I speak to Professor Smith?Professor: Speaking.Lin Fei: Professor Smith, I'm supposed to preside over tomorrow morning's discussion. I'm sorry, but I can't come.Professor: What's the problem?Lin Fei: I've got a temperature and have felt bad for several days. Professor: I'm sorry to hear that. It sounds like you need a good rest, then. Lin Fei: Will you manage to find someone else to chair the discussion? Professor: I'm sure I can. Please don't worry. I hope you recover soon! Lin Fei: Thank you very much, Professor Smith.Professor: Goodbye.4Operator: This is the Overseas Operator. What can I do for you?Lin Fei: Yes, operator. I want to make a collect call to the following number: country code 86, area code 10, 68747543.Operator: Your name please?Lin Fei: Lin Fei.Operator: What number are you calling from?Lin Fei: Area code 71, 5647783.Operator: Thank you.Father: Hello!Operator: Will you accept a collect call from Lin Fei?Father: Lin Fei? Oh yes, of course.Operator: Go ahead, sir.Lin Fei: Hi, dad! How are you? ...TextUnit 61Clerk: Can I help you?Lin Fei: Yes. I want to send a registered air-mail letter to China.Clerk: OK. That'll be 60p for postage and 20p for registration. That comes to 80p, please.Lin Fei: Here is 1 pound.Clerk: Here is your change. Please wait for your receipt. ... Here is yourreceipt.Lin Fei: Thank you!2Clerk: Anything else?Lin Fei: Yes, 20 postcards, 5 air-mail stamps and one roll of 50 10-pence stamps, please.Clerk: That'll be 11.20 pounds please.Lin Fei: Here is 12 pounds.Clerk: Here is your change. Anything else?Lin Fei: No. Oh yes, could you tell me where I can mail this letter? Clerk: Just drop it in the mail box at the corner.Lin Fei: Thank you very much.Clerk: You're welcome.3Clerk: Can I help you?Lin Fei: I want to pick up my package. This is the notice I received. Clerk: Let me see... Hmm... Just a minute. ... Here it is. We need your signature or I.D. on this note.Lin Fei: All right. Can I mail this parcel to China?Clerk: What's in it?Lin Fei: Two books. Please insure them for 20 pounds.Clerk: No problem, sir.4Lin Fei: Can I have this money order cashed, please?Clerk: Yes sir. But you'll have to endorse it first.Lin Fei: Oh, yes.Clerk: Can I see your I.D. card?Lin Fei: Sure.Clerk: Yes, that's fine. Here you are. 1000 pounds.Lin Fei: Thanks.Clerk: You're welcome.TextUnit 71Clerk: Good morning. Can I help you?Lin Fei: Yes, Miss. I'd like to open an account here.Clerk: We have both checking and savings accounts. Which do you want? Lin Fei: What's the difference between them?Clerk: With a checking account, you can write checks to pay your bills. The minimum amount for opening a checking account is 500 pounds.Lin Fei: How about a savings account?Clerk: The most common savings account is called a pass book savings account and there is no minimum for the first deposit.Lin Fei: I think I'll open a savings account.Clerk: By all means.2Clerk: Can I help you, sir?Lin Fei: I want to withdraw 200 pounds from my account.Clerk: How would you like it?Lin Fei: Five-pound notes, please.Clerk: Anything else?Lin Fei: Yes, could you tell me my balance?Clerk: Yes, sir. Your balance is 1,678 pounds.Lin Fei: Thank you.Clerk: You're welcome.3Clerk: Can I help you?Lin Fei: Yes. May I exchange these pounds into US dollars?Clerk: Sure, sir. How do you want it?Lin Fei: It's all the same to me. By the way, could you tell me the exchange rate today?Clerk: It's 100 to 138, sir. Here is your money, sir.Lin Fei: Many thanks.Clerk: My pleasure.4Lin Fei: Hello, Miss. I've got a problem.Clerk: What is it?Lin Fei: I lost my passbook this morning. What shall I do?Clerk: I'm sorry to hear that. Please write down your name and your passbook number so that I can check it for you.Lin Fei: Yes, certainly.Clerk: Please wait here for a few minutes. ... It's all right. Your account is OK.Lin Fei: Oh, thank God!Clerk: Now complete this form and we'll give you a new account with a fresh number.Lin Fei: Thank you so much.Clerk: Not at all. Take care of it this time.Lin Fei: Yes, I certainly will.TextUnit 81Bob: Come on in and make yourself at home.Lin Fei: Thank you.Bob: Let me introduce my wife, Betty.Lin Fei: Nice to meet you, Mrs Harris?Betty: Nice to meet you, too. Please call me Betty.Lin Fei: Okay. Betty.Bob: And this is my daughter, Karen.Lin Fei: Hello, Karen.Karen: Hi.Bob: Let me take your coat.Lin Fei: Thank you. By the way, this is for you.Bob: Wine! How nice! Thank you very much.Lin Fei: Don't mention it.2Bob: Would you care for anything to drink?Lin Fei: Yes, please. What do you have?Bob: Well, we have tea, beer, wine, orange juice.Lin Fei: I'll have some orange juice, please...You have a lovely house here.Bob: Thank you. We really like it, too.Lin Fei: How long have you lived here?Bob: Let me see, about two years. Would you like me to show you around?Lin Fei: Ah, great!Bob: This way, please.3Lin Fei: You are an excellent cook, Betty.Betty: Thank you. Would you like some more food?Lin Fei: Well, I'll have some steak, please.Betty: Here you are.Lin Fei: Thank you. Mmmm, this is really very good.Betty: I'm glad you like it.Lin Fei: That was a wonderful meal.Betty: Well, I'm glad you enjoyed it. Now, how about some dessert?Lin Fei: That would be great.4Lin Fei: Well, Betty, dinner was delicious. Thank you very much. Betty: Thank you, Lin Fei.Lin Fei: It's getting very late, I think I should be going.Bob: So soon?Lin Fei: Yes, I'm afraid so. Thanks for inviting me.Bob: It's my pleasure. Hope to see you again soon.Lin Fei: Well, goodbye.Bob and Betty: Goodbye.TextUnit 91Waitress: This is Britannia Fish Restaurant. What Can I do for you, sir? Lin Fei: I'd like to reserve a table for three on Saturday evening this week, And I'd like to have a table near the window facing the Thames. Wouldthat be OK?Waitress: Certainly, sir. May I have your name, please?Lin Fei: Yes. My name is Lin Fei.Waitress: Okay, Mr. Lin... a table for three... Saturday evening. At what time, sir?Lin Fei: 7:30. OK?Waitress: Yes. Thank you for calling, sir. See you then.2Lin Fei: Good evening. I reserved a table the other day and my name is Lin Fei.Waitress: This way, please. Here is the menu, sir.Lin Fei: Thank you.Waitress: Would you care for a drink?Lin Fei: Yes. Betty?Betty: Orange Juice, please.Lin Fei: How about you, Mr. Harris?Bob: Tea, please.Lin Fei: Same here.Waitress: All right. Just a moment, please.3Waitress: Here are your drinks. May I take your order now, Madam? Betty: Thank you. What's today's special?Waitress: Crabmeat Newburg, Lobster Thermidor, and Fried Fish Steak. Betty: Lobster Thermidor, please.Bob: Fish Steak, medium, please.Lin Fei: Fish Steak too, but well-done, please.Waitress: Any drink to go with that?Lin Fei: How about a bottle of red wine, Mr and Mrs. Harris?Bob and Betty: Red wine is good.4Lin Fei: Waitress, bill please.Waitress: Yes, sir. I hope you enjoyed your dinner.Bob and Betty: Yes, we did.Betty: The food here is really special and always delicious.Lin Fei: This is for you, Miss.Waitress: Thank you very much, sir.Bob: It's been a wonderful evening. Thank you for inviting us.Lin Fei: It's my greatest pleasure to have you.Betty: I'm afraid we must be going, Mr. Lin. Thank you!Lin Fei: Thank you! Goodbye, Bob and Betty.Bob and Betty: Goodbye.TextUnit 101Lin Fei: Excuse me. I was told to transfer to the No.11 around the Park. Could you do me a favor and tell me when to get off?Bus-Driver: Sure. Fifty pence, please.Lin Fei: Do I have to pay the fare with the exact change?Bus-Driver: Not necessary in London. I can break any notes for you.Lin Fei: Here's one pound.Bus-Driver: Here's your change. Step back and take a seat, please. ... Hyde Park! Hyde Park!Lin Fei: Thank you!Bus-Driver: Cheerio!2Lin Fei: Which train would get me to York by 16:30?Clerk: If you caught the 11:35, you'd be there at 16:14.Lin Fei: One first-class single to York, please.Clerk: 12 pounds and 20 pence, please.Lin Fei: Here you are.Clerk: Here is your change and ticket. 11:35, Platform 4.Lin Fei: Need I change trains?Clerk: No. It's a through train.3Lin Fei: Taxi! York Gallery, please. I have to be there before 5 o'clock.Driver: Don't worry. We have plenty of time. ... Here we are, sir. You've still got a quarter to spare. One pound and forty pence, please.Lin Fei: Thank you very much indeed. Here is 2 pounds. Give me 40p, please.4Lin Fei: Excuse me, but I'm trying to get to Queensway.Pedestrian: Take the District to Notting Hill and then get the Central.Lin Fei: Where do I go now?Pedestrian: Take the escalator on your right.Lin Fei: Thank you very much.Pedestrian: My pleasure.TextUnit 111David: Lin Fei, this is Susan.Lin Fei: I'm very glad to meet you Susan.Susan: It's a pleasure to meet you. How do you like London so far?Lin Fei: Well, I can't get over how different the weather is here. Susan: Oh, you'll get used to it soon.2Friend: Well, hello, stranger! Have you moved or something?Lin Fei: No. I went to York for a few weeks.Friend: Oh, really? For what?Lin Fei: I went to the York Gallery to collect some materials for my paper. How are you doing?Friend: Can't complain, you know. Why not come for a drink this weekend?Lin Fei: I'd love to, but I'm hunting for a job these days.Friend: All right. Good luck to you, then.Lin Fei: Thank you. Goodbye!Friend: Bye-bye!3Lin Fei: Happy Birthday, Susan!Susan: Thank you! Do come in, please!Lin Fei: And this is for you!Susan: How nice it is! Oh, Lin, Thank you ever so much!Lin Fei: Sure!David: Many happy returns of the day.Susan: Oh, David, thank you.David: Look what I've brought!Susan: What a big birthday cake! Oh, David, you're so sweet!4Lin Fei: Merry Christmas, Professor Smith.Smith: The same to you!Lin Fei: Are you doing anything special?Smith: Yes. My parents and daughter are all here to join a big celebration. Would you join us?Lin Fei: Sorry. All the overseas students are having a party tonight. And my parents are coming to visit me to celebrate New Year's Day. So I will not be able to join you. Thank you all the same.Smith: Happy new year to you and your parents.Lin Fei: Thank you. The same to you!TextUnit 121David: Good morning, Lin Fei. You look pale. Are you all right?Lin Fei: Morning, David. I'm afraid not.David: What's wrong with you?Lin Fei: I've had a temperature for two days.David: Why not go and see the doctor?Lin Fei: I've been busy writing the term paper.David: Don't be silly. Nothing is above health! The sooner, the better!Lin Fei: Thank you. I'll follow your advice.David: Take care! Hope you'll be better soon.2Doctor: Hello, this is Doctor Hall's office. May I help you?Lin Fei: I would like to make an appointment to see the doctor. Doctor: Would 4 o'clock this afternoon be convenient?Lin Fei: I'm afraid I've got a temperature. So I would like an appointment as soon as possible.Doctor: Let me see, 1 p.m., OK?Lin Fei: That's fine.Doctor: Could you give me your full name, address and phone number? Lin Fei: OK.3Doctor: Now, what seems to be the trouble?Lin Fei: I have had a sore throat for a few days. And I'm feeling chills and a fever now.Doctor: Let me take your temperature. Would you put the thermometer under your arm?Lin Fei: OK.Doctor: You do have a temperature. Now, let me look at your throat. Mm ... Inflammation of the tonsils.Lin Fei: Is it serious?Doctor: Oh, no. I'll give you an injection to bring your temperature down, and prescribe some medicine for you.Lin Fei: What should I do to get better soon?Doctor: Drink plenty of water and rest as much as possible.Lin Fei: Thank you.4Lin Fei: Excuse me. Can I have these prescriptions filled, please? Assistant: Certainly, I'll have them filled for you if you just wait a few minutes.Lin Fei: Thank you.Assistant: Here's your medicine.Lin Fei: Can you tell me how to take the medicine?Assistant: Yes. Take two of these pills three times a day after meals and 2 tablespoons of the syrup every 2 hours.Lin Fei: Thank you for your help.TextUnit 131Assistant: Anything I can do for you?Lin Fei: Yes. I'm looking for a present for my wife, but I haven't made up my mind.Assistant: How about perfumes? The perfumes here are very famous.Lin Fei: What a good idea! May I have a look.Assistant: Please.Lin Fei: Well, the smell is nice. I'll take this brand.2Assistant: Would you like anything else, sir?Lin Fei: No, thanks. Just the bill.Assistant: Yes. Here you are.Lin Fei: Thank you. Do you accept checks?Assistant: Sorry, sir. We only accept cash.Lin Fei: OK. Will you wrap it up for me?Assistant: Sure.3Lin Fei: Here is 80 pounds.Assistant: Thank you, sir.Lin Fei: Can I have a tax-refund form, please?Assistant: Of course.Lin Fei: By the way, where can I get back the duty paid?Assistant: You can get it back when you go through the Customs.Lin Fei: Oh, I see. Thanks a lot.4Lin Fei: Excuse me. Is this the place where I can get back the duty paid? Assistant: Yes, it is. May I see your tax-refund form, please?Lin Fei: Yes, here you are.Assistant: Do you want to get pounds or American dollars?Lin Fei: Pounds, please.TextUnit 141Lin Fei: David, Could you tell me something about the study here? David: Sure.Lin Fei: What are the general requirements for undergraduate study? David: As far as I know, you can receive a Bachelor degree if you successfully complete at least 120 units of the necessary courses.Lin Fei: How about testing and grading?David: To obtain credit for each course, you must attend all required classes, finish all assignments and take all the necessary tests and exams. The maximum grade is 100; the lowest pass rank is 65 percent.Lin Fei: Thank you very much.David: Any time.2Lin Fei: David, are you on a part-time job?David: I work as an assistant in our college library.Lin Fei: How can I get an on-campus job too?David: You may apply to the Student Employment Service for a vacancy. Lin Fei: How about off-campus jobs?David: Off-campus work requires permission from the Immigration Office.Lin Fei: Oh, I see. Thank you very much.David: You're welcome.3Lin Fei: Do you have any job for a part-timer?Employer: What sort of job do you have in mind?Lin Fei: Frankly speaking, I have nothing particular in mind, sir. Employer: What qualifications or experience do you have?Lin Fei: I'm almost straight from school.Employer: Do you think a cleaning job could appeal to you?Lin Fei: A cleaning job is OK with me. How much can I earn? Employer: 50 pounds a week, 3 hours a day from Monday to Friday. Lin Fei: That sounds good. I'll take it.4Lin Fei: Hi, David. I've found a job doing cleaning in a company. David: Good news! How much did they offer you?Lin Fei: 50 pounds a week, 3 hours a day.David: A nice job, I should say.Lin Fei: I think so. How are you doing?David: I'm between two jobs now.Lin Fei: Oh, bad luck.David: Don't worry about me. I guess I can find a new job soon.Lin Fei: I hope so. Good luck.David: Thanks. Bye-bye!TextUnit 151Lin Fei: I've come to say goodbye, Bob.Bob: When are you off?Lin Fei: I'm flying home on Friday afternoon.Bob: Well, goodbye. See you soon.Lin Fei: Please don't forget to say goodbye to Betty and Karen for me. Bob: I will. Have a good journey.Lin Fei: Thank you. Goodbye, Bob.2Lin Fei: Mr. Wilson. I'm calling to say goodbye.Wilson: When do you leave?Lin Fei: My flight is on Saturday afternoon.Wilson: Take care of yourself, Lin, and don't forget to write to me.Lin Fei: All right. Thank you very much for everything you've done for me.Wilson: It was a pleasure to have you. Goodbye.Lin Fei: Goodbye.3Smith: How time flies! I still remember the first day you came to myclass.Lin Fei: Yes. I can never thank you enough for all your kind help and advice.Smith: You have helped me a lot too. I'll miss you.Lin Fei: I'll miss you too. We'll keep in touch through the Internet. Smith: Sure. Please remember me to your parents and Professor Wang. Lin Fei: Thank you. I will.Classmate A: Oh, Lin, how very much I'll miss you! ...4David: Let's put your bags in the back - Good. Jump in.Susan: Here's a copy of "Time" - I thought you might like to have a look at it on the plane.Lin Fei: Thank you very much. Look, it's about time to check in, so there's no need for you to hang around.David: Well, I do hope you have a good journey. Please tell my parents and friends I'm OK here.Lin Fei: Thank you. I'll certainly do that for you.David: Goodbye, Lin Fei and all the best!Susan: Bon V oyage!。
特种作业上机模拟试题二必知必会(必知必会) 1. 焊接作业时,必须戴护目镜、防护手套、穿化纤工作服。
标准答案:×(必知必会) 2. 当违反焊割“十不烧”时,焊工有权拒绝焊割,各级领导不得违章指挥其作业。
标准答案:√(必知必会) 3. 流经人体的电流强度越大,电流通过人体的持续时间越长,对人的伤害越大。
标准答案:√(必知必会) 4. 电焊设备和电动工具都必须有可靠的接地(接零)措施。
标准答案:√(必知必会) 5. 金属焊接与切割特种作业人员必须经过培训考核合格,取得安全技术操作证后方能独立作业。
标准答案:√(必知必会) 6. 乙炔瓶与氧气瓶在空旷的环境中安全距离不得小于()米。
B. 15C. 8标准答案:A(必知必会) 7. 电流通过人体时,最危险的途径是()。
A. 从手到手B. 从手到脚C. 从脚到脚标准答案:B(必知必会) 8. 焊工应穿着专用的工作服和鞋,工作服应是()的。
B. 黄色C. 红色标准答案:A(必知必会) 9. 焊工在操作前,应检查和确认作业现场无()物品。
A. 易燃易爆B. 可燃C. 火源标准答案:A(必知必会) 10. 电焊面罩是保护焊工面部免受强烈的弧光及金属飞溅的()。
A. 灼伤B. 烫伤C. 外伤标准答案:A一、判断题(判断下列各题的对错,并在正确题后面的括号内打“√”错误题后面的括号内打“×”。
本大题共40个小题,每小题1分,共40分)11. 《安全生产法》规定,安全生产方针是:预防为主,防消结合。
标准答案:×12. 从业人员发现事故隐患或者其他不安全因素,应当立即向现场安全生产管理人员或者本单位负责人报告;接到报告的人员应当及时予以处理。
标准答案:√13. “群众参与监督”,是指各级工会组织,对生产经营单位的安全生产工作有监督的职责,维护从业人员的安全和健康的权利。
标准答案:√14. 《四川省安全生产条例》是在《安全生产法》的框架下,结合本省安全生产的实际情况,针对近年来发生的生产安全事故,制订的本省安全生产的地方性法规。