niusouti.com

You can not find the John just ___name because we have three John working here.A. onB. forC. toD. by

题目
You can not find the John just ___name because we have three John working here.

A. on

B. for

C. to

D. by


相似考题
更多“You can not find the John just ___name because we have three John working here. ”相关问题
  • 第1题:

    下列语句错误的是( )。

    A.char*p="John";P[2]='a';

    B.char name[5]="John";name[2]='a'

    C.char name[5]="John",*p=name;p[2]='a';

    D.char name[5]="John",*p=&name[2];*p='a';


    正确答案:A

  • 第2题:

    下列值不为true的表达式有( )。

    A、"john"=="john"

    B、"john".equals("john")

    C、"john"="john"

    D、"john".equals(newString("john"))


    正确答案:C

  • 第3题:

    --Remember the first time we met, John
    --Exactly. You ______ in the library.

    A.were reading
    B.had read
    C.have read
    D.read

    答案:A
    解析:
    考查时态。句意为“——约翰,还记得我们第一次见面吗 ——当然,当时你正在图书馆读书。”表示见面时的动作状态,使用过去进行时。

  • 第4题:

    Which command will create a group called ‘delivery’and set the administrators to john’ and ‘mary’?()

    A.mkgroup -A=john,mary delivery

    B.groupadd -A=john,mary delivery

    C.mkgroup adms=john,mary delivery

    D.groupadd adms=john,mary delivery


    参考答案:C

  • 第5题:

    --Remember the first time we met, John?
    --Exactly. You ____________ in the library.

    A.were reading
    B.had read
    C.have read
    D.read

    答案:A
    解析:
    考查时态。句意为“——约翰,还记得我们第一次见面吗?——当然,当时你正在图书馆读书。”表示见面时的动作状态,使用过去进行时。

  • 第6题:

    请改正下面程序中存在的错误。 def StudentInfo(country='China', chineselevel='A', name): print('%s,%s,%s'%(name,country,chineselevel)) StudentInfo(country='America', chineselevel='B', name='John')


    'B'