What can you do if you are not able to finish your food in an American restaurant
A. [A] You can ask the waiter or waitress to carry the rest to your house.
B. You can throw it away before you leave the restaurant.
C. You can ask for a "doggie bag" for tile extra food and take it back home.
查看答案
If you want to get served in an American restaurant, how can you get your service
A. [A] By singing at the table.
By calling, whistling or snapping the fingers.
C. By putting up one of your fingers to catch the waiter or waitress’s attention.
Which of the following statements is true according to the passage
A. [A] In many countries of the world a fixed tip is added to restaurant bills.
B. In most countries of the world no fixed service charge is added to restaurant hills.
C. In a few parts of the world a fixed service charge is added to restaurant bills.
What is the man going to do
A. He is opening a company.
B. He is getting married.
C. He will be back to Australian.
建立一个通信录的随机文件phonBook.txt,内容包括姓名、电话、地址和邮编,用文本框输入数据。单击“添加主记录”按钮Command1时,将文本框数据写入文件,单击“显示”按钮Command2时,将文件中所有记录的内容显示在立即窗口。 Private Type PerData Name1 As String Phon As String * 11 Address As String * 10 PostCd As String * 6 End Type ______’定义PerData类型的变量xData’ Privat Sub Form_Load() Open"C:\phonBook.txt"For Random Asl End Sub Private Sub Command1_Click() xData.Name1=Text1.Text xData.Phon=Text2.Text ______=Text3.Text xData.PostCd=Text4.Text Putg#1,1,xData Text1.Text=" ":Text2.Text=" " Text1.3Text=" ":Text4.Text=" " End Sub Private Sub Command2_Click() reno=LOF(1)/Len(xData) i=1 D0 While i<=reno Get#1,i,xData Debug.Print xData,Name1,______,xData.Address,xData.PostCd i=i+1 LooP End Sub