– Linda, can you give me a lift after work? – ( ).A、It's very kind of you to do soB、Thank you for your offerC、Never mind. I'll go shoppingD、No problem. We go the same direction

题目
– Linda, can you give me a lift after work? – ( ).

A、It's very kind of you to do so

B、Thank you for your offer

C、Never mind. I'll go shopping

D、No problem. We go the same direction


相似考题
更多“– Linda, can you give me a lift after work? – ( ). ”相关问题
  • 第1题:

    Must we clearn the room before we leave?No, you _______

    A.mustn't

    B.can't

    C.needn't


    参考答案:C

  • 第2题:

    —_______ I return the book to the library this week?— No, you _______.You can keep it until the end of this month.

    A.Must; needn’t

    B.Can; can’t

    C.May; mustn’t

    D.Can; mustn’t


    答案:A

  • 第3题:

    Me,you是两个初始集合,则下列关于派生集合定义方式正确的是

    A.link/me,you/:a;

    B.link(me,you):a;

    C.link/me you/a;

    D.link(me,you)/a;


    link(me,you):a;

  • 第4题:

    You ( ) Jenny at the meeting this morning because she left for Hong Kong last night.

    A、wouldn’t have seen

    B、shouldn’t have seen

    C、mustn’t have seen

    D、can’t have seen


    参考答案:D

  • 第5题:

    将一批单词存入一个字符串数组中,例如:{"good","word","work","mean","thank","me","you","or","and"} 进行如下处理: 1) 统计含有子字符串or的单词个数; 2) 统计以字符m开头的单词个数。


    D 解析:选项A是逐个字符赋值,字符数组末尾无“'\\0'”结束符,因此不是字符串。选项A应更正为:chars[5]={'g','o','o','d','!','\\0'}。选项B的错误在于,在赋值语句中对字符数组进行整体赋值。通常,在定义时可以对字符数组进行字符串的整体赋值。chars[5]='good!';是对选项B的更正。选项C存在语法错误。数组类型为int型,不是char型,不能进行初始化。chars[5]='good!';是对选项C的更正。选项D的“char*s;s='good!';”,是通过指针s指向字符串'good!'。

  • 第6题:

    “一旦小玲写完了实验代码并且运行成功,她就不会延迟提交论文并且周一会给老师看。”以下表示正确的是:

    A.finish(小玲,代码)∧work(代码) → delay_submit(小玲,论文) ∨ give(小玲,论文,teacher(小玲))

    B.finish(小玲,代码)∧work(代码) ∧ ¬delay_submit(小玲,论文) ∧ give(小玲,论文,teacher(小玲))

    C.finish(小玲,代码)∧ work(代码) ∧ ¬delay_submit(小玲,论文) ∧ give(论文,teacher(小玲))

    D.finish(小玲,代码)∧ work(代码) → ¬delay_submit(小玲,论文) ∧ give(小玲,论文,teacher(小玲))


    finish( 小玲,代码)∧ work(代码) → ¬delay_submit(小玲,论文) ∧ give(小玲,论文,teacher(小玲))