I'm a nurse. I work ( )David ( )the same hospital.A. by… onB. of… atC. with… in

I'm a nurse. I work ( )David ( )the same hospital.

A. by… on

B. of… at

C. with… in


相关考题:

( 10 )执行下列程序,显示的结果是 【 10 】 。one= "WORK"two = ""a = LEN ( one )i = aDO WHILE i=1two = two + SUBSTR ( one ,i , 1 )i=i - 1ENDDO? two

I’m on night duty.When you go to( ), I go to( ).A.the bed...the workB.bed...the workC.bed...workD.the bed...work

I' m a deputy manager. I()an IT company.A. work forB. work aboutC. work

By Saturday, I _______ here for three weeks.A:will be workingB:will have workedC:will workD:work

David: Good morning.l'd like to make an appointment to see Mr Bond this morning , please.Nursc: l' m sorry.I don' t have any appointments this morning.David: Oh , dear.I'm feeling really ill.Nurse: What's the matter?David: I feel terrible.I' ve got a headache , backache and a sore throat.Nurse: Have you got a temperature?David: I think so was hot and cold a1l night and I was sick this morning.Nursc: You feel awful.don't you? Do you think you've got flu?David: Yes, probably.Or an infection in my throat.Nursc: OK.I call give you an emergency appointment.Can you come at the end of th morning? Come at eleven thirty and wait until a doctor is free.David: OK.Thank you.26.David has got a headache , earache and backache.A.RightB.Wrong27.David felt hot and cold during the night.A.RightB.Wrong28.The nurse thinks David has an infection in his throat.A.RightB.Wrong29.Mr Bond is free at 11: 30.A.RightB.Wrong30.David gets an appointment finally.A.RightB.Wrong

–– Anderson: Hello. I’m Nigel Anderson. Let me get you some more to drink.–– David: Not at the moment, thank you. ____A: How do you do?B: How are you?C: I ’m glad to meet you.D: I ’mDavid Brown.

执行下列程序,显示的结果是【 】。ne="WORK"two=""a=LEN(one)i=aDO WHILE i>=ltwo=two+SUBSTR(one,i, 1)i=i-1ENDDO?two

在HTML文件中,( )标记在页面中显示work为斜体字。A.<pre>work</pre>B.<u>work</u>C.<i>work</i>D.<b>work</b>

下面()仅输出m的大于1的最小因子。A.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); break; }B.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); continue; }C.for (i =2; i<=m-1; i++) if (m % i == 0) { printf("%d is 最小因子n", i); }D.i=2; while (m % i != 0) i++; printf("%d is 最小因子n", i);