A: Would you like to come to our party tonight?/ B: I'm afraid I'm not feeling, so well today./ The implicature produced here is _______.A I'll be glad to go to your party.B Probably I'll be a little late because I'm not feeling well.C I do not want to go

题目
A: Would you like to come to our party tonight?/ B: I'm afraid I'm not feeling, so well today./ The implicature produced here is _______.

A I'll be glad to go to your party.

B Probably I'll be a little late because I'm not feeling well.

C I do not want to go to your party.

D I'll go there even though I am not feeling well today.


相似考题

4.听力原文:W: Hi, Sam, I hate to bother you but I wonder if I could have a word with you?M: Sounds so serious. What's up?W: Well, the landlord just informed me that he's going to increase our rent by two hundred. I'm wondering how you feel about it.M: How do I feel about it? No way! In our tenancy agreement, it says he will have to give us a notice three months in advance if he wants to increase the rent.W: Yeah, that's right! It's gotta be three months later. Well, I think he realizes his rental fee is below the market rate and he must be feeling a bit ripped off when he could be charging a couple hundred extra. What do you think Sam? Should we agree to the raise or find somewhere else?M: Good question. I'm not sure either. The location we're at now is quite convenient. Close to the grocery and near the subway. It'll be hard to find another location like this one.W: I wonder whether he'll allow room for negotiation. Perhaps a hundred dollars instead of two. Maybe he might be more willing to give a bit if we speak to him right way.M: Well, he seems to be a nice guy to talk to. But what if he refuses? Would you go for two then?W: Well, I guess I would, since it'll be hard to find such a convenient location. Besides, it's close to my school and I can sleep a little later in the mornings.M: Ha! I figured that's what you'd be concerned about. Well, I have to give it some serious thought. I'm not sure I can afford to cough up an extra hundred a month just to make sure I can sleep in an extra 15 minutes.W: Didn't you get your loan recently? That'll cover what you need. Besides, if you could just stop spending so much on cafeteria snacks you'd have lots of money to spare.M: Yeah, but I'm thinking of getting a new laptop.W: Well, I tell you, there aren't a lot of apartments that are cheaper, even with this new increase.M: I know, so when does he want us to come back on this?W: He told me to let him know this weekend.M: Sure, by then I should be able to make up my mind.(20)A.Where they should move.B.How to negotiate with the landlord.C.How to fight the increase.D.Whether to accept an increase in rent or move.

更多“A: Would you like to come to our party tonight?/ B: I'm afraid I'm not feeling, so well today./ The implicature produced here is _______. ”相关问题
  • 第1题:

    M: I’m thinking about where to go for a bite tonight. Any suggestions, Barbara?

    W: Well, how about the French restaurant near the KFC? Frankly, I’ve had enough of our canteen food.

    Q: What do we learn about the woman?

    短对话怎么回答 


    是听力吧?这样我做不了。

     

  • 第2题:

    英文科技论文写作中应该尽量少用或不用I, we, our, 和you等第一、第二人称代词。


    D

  • 第3题:

    11、下列不能用来作为变量名的是?

    A.You.name

    B.Apple

    C.WONDER

    D.Come_here


    You.name

  • 第4题:

    设有如下代码:

    class Base{}

    public class MyCast extends Base{

    static boolean b1=false;

    static int i = -1;

    static double d = 10.1;

    public static void main(String argv[]){

    MyCast m = new MyCast();

    Base b = new Base();

    //Here

    }

    }

    则在 //Here处插入哪个代码将不出现编译和运行错误。

    A.b=m;

    B.m=b;

    C.d =i;

    D.b1 =i;


    正确答案:AC

  • 第5题:

    下列不能用来作为变量名的是?

    A.You.name

    B.Apple

    C.WONDER

    D.Come_here


    func

  • 第6题:

    下面()是正确的判断素数程序(m>1)。

    A.j=0; for (i =2; i<=m-1; i++) if (m % i != 0) j++; if(j==m-2) printf(“%d是素数n", m);

    B.j=0; for (i =2; i<=m-1; i++) if (m % i == 0) j++; if(j==0) printf(“%d是素数n", m);

    C.flag=0; for (i =2; i<=m-1; i++) if (m % i == 0) flag=1; if(flag==0) printf(“%d是素数n", m);

    D.for (i =2; i<=m-1; i++) if (m % i == 0) i=m+2; if(i==m+3) printf(“%d是素数n", m);


    D