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

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

He asked who I voted for and I said it was my own ( ).

A.thing

B.matter

C.duty

D.business


参考答案

更多 “ He asked who I voted for and I said it was my own ( ).A.thingB.matterC.dutyD.business ” 相关考题
考题 Using "I" or "My' instead of "most people" or "our group" ______ message credibility.A decreasesB increasesC has no effect onD distortsE A and B

考题 59 Using "I" or "My' instead of "most people" or "our group" ______ message credibility.A. decreasesB. increasesC. has no effect onD. distortsE. A and B

考题 141 Using "I" or "My' instead of "most people" or "our group" ______ message credibility.A. decreasesB. increasesC. has no effect onD. distortsE. A and B

考题 A: Would you like to come to ( )shop one day? B: Yes, I'd love to. Thank you. A. myselfB. meC. my

考题 It is ______ who ______ wrong. A.me; meB.me; hasC.I; amD.I; is

考题 I, my, will, true, come, hope, dream__________________________________________________________________________.

考题 I( )a cup of coffee, but they gave me a cup of tea. A.asked forB.asked

考题 Client: Hello. May I speak to Mr. Black?Secretary:_______A: Speaking, pleaseB: I ’m sorry. He ’s at a meeting right now.C: Hello. Who ’re you, please?D: Hello. Thank you for calling.

考题 "Oh, I'm sorry," he ______ her.A、criedB、toldC、apologizedD、said

考题 有以下程序:includeusing namespace std;class MyClass{public: MyClass(); ~MyClass 有以下程序: #include<iostream> using namespace std; class MyClass { public: MyClass(); ~MyClass(); void SetValue(int val); private: static int i; }; int MyClass::i=0; MyClass::MyClass() { i++; cout<<i; } MyClass::~MyClass() { i--; cout<<i; } void MyClass::SetValue(int val) { i=val; } int main() { MyClass*my[2]; int k; for(k=0;k<2;k++) my[k]=new MyClass; for(k=0;k<2;k++) delete my[k]; return 0; } 运行后的输出结果是( )。A.1210B.1100C.1234D.输出结果不确定