Write your essay on the Answer Sheet in 200-250 words.(30 points)
An English person recently came to your school to give a talk(what was the talk
about?).
He/She left a personal possession (what is it?)at the school(}cuhere exactly?). You
want to return the possession(how will you return it?)but you have had difficulty
contacting the person (howhave you tried to contact him/her?). You have a possible address for the person, but you're not sure if it's correct (why?).
Write a letter to the person.
.Thank them for coming to give the talk.
.Explain the situation.
.Ask them to contact you.
Student Committee
St Giles School
Swindon
18/4/2007
Mr Brendan Collins
Chairman
ILP Industries Ltd
Bristol BS3 20X
Dear Mr Collins,
I am writing to thank you for attending our school careers day last week
and giving such
an inspirational and interesting speech on career prospects in the
financial services industry.
I am also writing to inform. you that you left a CI}ROM in the computer
which you used
during your speech. Iwould like to return it to you as soon as possible but
Iwas unsure
whether to send it to your company or adifferent address.
I contacted your office but,unfortunately, you were away on business and I
spoke to a
secretary. She said that the disc belonged to your own private consultancy
business and that I should send it there. She provided me with an address but I am afraid
that I may havewritten it down incorrectly. The address I have is as
follows:Collinsi一Consultancies, Box 283A, Bristol. Could you please confirm that this is the correct address to
which I shouldsend the disc?
Thank you once again for your generosity in giving up your valuable time
for the
students at our school and Iam sorry I have been unable to return your
CD-ROM morepromptly.
Yours sincerely,
John Smith
John Smith
Student Committee Chairperson
第1题:
设在工程中有一个标准模块,其中定义了如下记录类型______。 Type Books Name As String*10 TelNum As String*20 End Type 在窗体上画一个名为Commandl的命令按钮,要求当执行事件过程Commandl_click时,在顺序文件Person.txt中写入一条记录。下列能够完成该操作的事件过程是______。
A.Ptivate Sub Commandl Click() Dim B As Books Open"C:\Person.txt"For Output AS#1 BName=InputBox("输入姓名") BTelNum=InputBox("输入电话号码") Write#1,BName,BTeLNum Clodr#1 End Sub
B.Ptivate Sub Commandl_C1iok() Dim B As Books Opcn"c:\Person.txt"For Input As#1 BName=InputBox("输入姓名") BTelNum=InpuBox("输入电话号码") Print#1,BName,@B@TelNum C1ose#1 End Sub
C.Private Sub Commandl Click() Dim B As Books Open"c:\Person.txt"For Output As #1 BName=InputBox("输入姓名") BTelNum=InputBox("输入电话号码") Write#1、B Close#1 End Sub
D.Private Sub Command1 C1ick() Dim B As Books Open"c:\Person.txt"For Input As #1 Name=InputBox('输入姓名') TelNum=InputBox("输入电话号码") Print#1,Name,TelNum Close#1 End Sub
第2题:
设在工程中有一个标准模块,其中定义了如下记录类型Type Books Name As String *10 TelNum As String *20End Type在窗体上画一个名为Command1的命令按钮,要求当执行事件过程Command1_ Click时,在顺序文件Person.txt中写入一条记录。下列能够完成该操作的事件过程是______。
A.Private Sub Command1_Click() Dim B As Books Open "c:\Person.txt" For Output As #1 B.Name=InpuBox(“输入姓名”) B.TelNum=InputBox(“输入电话号码”) Write #1,B.Name,B.TelNum Close #1End Sub
B.Private Sub Command1_ Click() Dim B As Books Open "c:\Person.txt" For Input As #1 B.Name=InputBox(“输入姓名”) B.teLNum=InputBox(“输入电话号码”) Ptint #1,B.Name,B.TelNum Close #1End Sub
C.Private Sub Command1_ Click() Dim B As Books Open "c:\Person.txt" For Output As #1 B.Name=InputBox(“输入姓名”) B.TelNum=InputBox(“输入电话号码”) Write #1,B Close #1End Sub
D.Private Sub Command1_ Click() Dim B As Books Open "c:\Person.txT" For Input As #1 Name=InputBox(“输入姓名”) TelNum=InputBox(“输入电话号码”) Print #1 Name. TelNum Close #1End Sub
第3题:
第4题:
假定在工程文件中有一个标准模块,其中定义了如下记录类型 Type Books Name As String*10 TelNum As String*20 End Type 要求当执行事件过程Commandl_Click时,在顺序文件Person.txt中写入一条记录。下列能够完成该操作的事件过程是:
A. Prirate Sub Commandl Click() Dim B As Books Open"C:\Person.txt"For Output As #1B.Name=InputBox("输入姓名")B.TelNum=InputBox("输入电话号码") Write #1,B.Name,B.TelNum Close #1 End Sub
B.Pdrate Sub Commandl Cliok() Dim B As Books Open"c:\Person.txt"For Input As #1B.Name=InputBox("输入姓名")B.TeINum=InputBox("输入电话号码") Print #1,B.Name,B.TelNum Close #1 End Sub
C.Private Sub Commandl Click() Dim B As Books Open"c:\Person.txt"For Output As #1 Name=InputBox("输入姓名") TelNunl=InputBox("输入电话号码") Write #1,B Close #1 End Sub
D.Private Sub Commandl Click() Dim B As Books Open"c:\Person.txt"For Input As #1 Name=InputBox("输入姓名") Temum=InputBox("输入电话号码") Write #1,B.Name,B.TelNuin Close #1 End Sub
第5题:
Relaxing,sad and difficult are________(描述) words.
第6题:
下列对枚举类型的使用的代码中错误的是()。
A.enum {no, yes, none}answer; if (answer == yes) { printf("Yesn"); }
B.enum response{no = -1, yes = 1, none = 0}; enum response answer;
C.answer = yes; printf("%d", answer);
D.answer = "yes"; printf("%s", answer);