I think he has ( )in that sort of work.A、some experienceB、much experiencesC、little experiencesD、few experience

题目
I think he has ( )in that sort of work.

A、some experience

B、much experiences

C、little experiences

D、few experience


相似考题
参考答案和解析
参考答案:A
更多“I think he has ( )in that sort of work. ”相关问题
  • 第1题:

    I ____ the movie ____ one of the worst I've ever seen.

    A、think...as

    B、regard...as

    C、believe...as

    D、know...as


    答案:B

  • 第2题:

    --Where do you think______he______the computer?---Sorry.I have no idea.

    A.has;bought
    B.不填;bought
    C.did;buy
    D.不填;buys

    答案:B
    解析:
    暂无解析

  • 第3题:

    【填空题】以下程序的运行结果是【1】,其算法是【2】。 main() {int a[5]={9,6,8,3,-1},i,j,t,p; sort(a); for(i=0;i<=4;i++) printf("%3d",a[i]); } sort(int a[]) {int i,j,t,p; for(j=0;j<4;j++) {p=j; for(i=j;i<=4;i++) if(a[i]<a[p]) p=i; t=a[p];a[p]=a[j];a[j]=t; } }


    6

  • 第4题:

    I’m tired. I () working very hard.

    A、have

    B、have been

    C、had

    D、has


    参考答案:B

  • 第5题:

    【填空题】以下程序的运行结果是【1】,其算法是【2】。 main() {int a[5]={5,10,-7,3,7},i,t,j; sort(a); for(i=0;i<=4;i++) printf("%3d",a[i]); } sort(int a[]) {int i,j,k; for(i=0;i<4;i++) for(j=0;j<4-i;j++) if(a[j]>a[j+1]) {t=a[j];a[j]=a[j+1];a[j+1]=t;} }


    6

  • 第6题:

    图后序计数的I/O复杂度可以达到O(sort(N))


    正确