-- I'd like to book a flight to Beijing, please.
-- _____.
A. No, you can't
B. Yes, sir, single or return?
C. We are busy.
D. Wait
第1题:
This is very important. You_____remember to shut down your computer every
evenlng。
A. ought
B. need
C. must
D. can
第2题:
A.Must; needn’t
B.Can; can’t
C.May; mustn’t
D.Can; mustn’t
第3题:
有以下程序
#nclude<stdio.h>
#include<string.h>
main()
{ char a[5][10]={"china","beijing","you","tiananmen","welcome"};
int i,j;char t[10];
for(i=0;i<4;i++)
for(j=i+1;j<5;j++)
if(strcmp(a[i],a[j])>0)
{strcpy(t,a[i]);strcpy(a[i],a[j]);strcpy(a[j],t);}
puts(a[3]);
}
程序运行后的输出结果是
A.beijing
B.china
C.welcome
D.tiananmen
第4题:
听力原文: If you want to invest money at short term, you've got several possibilities: first, a current account. This gives you the possibility of having all your money at your immediate disposal. It also entitles you to a cheque-book. Second, you've got a deposit account, which usually pays about 3. 5% interest, less tax. In that respect, a deposit account's a better investment than a current account. However, though you are entitled to a cheque-book, you can only withdraw up to a certain sum each month. For large amounts, you must give the bank a few months' notice. Finally, you have certificates of deposit. These pay in the order of 6.5% interest.
28. How many possibilities are there for a customer to invest money at short term?
29.With what kind of deposit can a customer NOT use a cheque-book?
30.What is the interest rate for maintaining a deposit account?
(28)
A.2.
B.5.
C.4
D.3
第5题:
有以下程序: #include<stdio.h> #include<string.h> main( ) { char a[5][10]={"china","beijing","you","tiananmen","welcome"); int i,j;char t[10]; for(i=0;i<4;i++) for(j=i+1;j<5;j++) if(strcmp(a[i],a[j]>O) {strcpy(t,a[i]);strepy(a[i],a[j]);strcpy(a[j],t)}; puts(a[3]); } 程序运行后的输出结果是( )。
A.beijing
B.china
C.welcome
D.tiananmen
第6题:
试题32
有以下程序
#include <stdio.h>
#include <string.h>
main()
{ char a[5][10]={“china”, “beijing”, “you”, “tiananmen”, “welcome”};
int i,j; char t[10];
for(i=0; i<4; i++)
for(j=i+1; j<5; j++)
if(strcmp(a[i], a[j])>0)
{ strcpy(t, a[i]); strcpy(a[i],a[j]); strcpy(a[j], t);}
puts(a[3]);
}
程序运行后输出结果是()
A.beijing
B.china
C.welcome
D.tiananmen