网友您好, 请在下方输入框内输入要搜索的题目:

题目内容 (请给出正确答案)

You should not try to ____ while others are talking.

A. interrupt

B. deliver

C. extend

D. pretend


参考答案

更多 “ You should not try to ____ while others are talking.A. interruptB. deliverC. extendD. pretend ” 相关考题
考题 以下与库函数strcpy(char *p, char *q)功能不相等的程序段是()。 A.strcpy1(char *p, char *q){ while ((*p++=*q++)!='\0')}B.strcpy2( char *p, char *q){ while((*p=*q)!='\0'){p++ q++}}C.strcpy3(char*p, char *q){ while (*p++=*q++)}D.strcpy4(char *p, char *q){ while(*p)*p++=*q++}

考题 A: Have you seen my camera? I can't find it.B: Just now I have seen it. You_____ have put it in the bag.A. mustB. wouldC. should

考题 You ________ show more respect for your elders. A. canB. couldC. mightD. should

考题 A:I have got a pain in my chest. B:You ( )see the doctor.A. haveB. needC. should

考题 这段代码有什么不足之处?try {Connection conn = ...;Statement stmt = ...;ResultSet rs = stmt.executeQuery("select * from table1");while(rs.next()) {}} catch(Exception ex) {}

考题 阅读以下函数说明和C语言函数,将应填入(n)处的字句写在对应栏内。【函数2.1】void sort(char *s,int num){int i,j--num;char t;while(j-->1)for(i=0;i<j;i++)if(s[i]>s[i+1]){t=s[i];s[i]=s[i+1];s[i+1]=t;}void main(){char *s="CEAedea";sort(s,5);printf("%s",s);}上述程序的结果是(1)【函数2.2】void main(){ union {int ig[6];Char s[12];} try;try. ig[0]=0x4542; try.ig[1]=0x2049;try. ig[2]=0x494a; try.ig[3]=0x474e;try. ig[4]=0x0a21; try.ig[5]=0x0000;pintf("%s",try, s);}上述程序的结果是(2)【函数2.3】void main(){ char *letter[5]= { "ab","efgh","ijk","nmop","st"};char **p;int i;p=letter;for(i=0;i<4;i++) .printf("%s",p[i]);}上述程序的结果是(3)【函数2.4】main(){int i=4,j=6,k=8,*p=I,*q=j,*r=k;int x,y,z;x=p==i;y=3*-*p/(*q)+7;z=*(r=k)=*p**q;printf("x=%d,y=%d,z=%d",x,y,z);}上述程序的结果是(4)【函数2.5】int a[]={5,4,3,2,1 };void main(){int i;int f=a[0];int x=2;for(i=0;i<5;i++)f+=f*x+a[i];printf("%d",f);}上述程序的结果是(5)

考题 以下结构属于条件结构的是?A.switch…case…endB.try…catch...endC.do…whileD.while…end

考题 以下while循环控制循环体执行10次。p=10; while ~mod(p,2) p=p+1 end

考题 14、以下python程序的输出结果的类型是什么? def printinfo(arg1, **others): print(others) printinfo(1,p=2,q=3)

考题 用于程序异常处理的关键词语句是:A.if...elseB.forC.try...exceptD.while