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

题目内容 (请给出正确答案)
Bill said he ____ twenty-one the next year.

A、was going to be

B、was about to be

C、could be

D、was to be


参考答案

更多 “ Bill said he ____ twenty-one the next year. A、was going to beB、was about to beC、could beD、was to be ” 相关考题
考题 A neighbor _________ me about him. He_________ Percy Buttons was a beggar.() A.said, spokeB.told, saidC.said, talkedD.told, spoke

考题 Bill: What do you think of the film you saw last night?Nancy: ______

考题 下面格式正确的E-mail是()a.bill_gates.microsoftb.boozhang.sdbc.yongli.inprise.comd.bill_clinton.whitehouse.gov

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

考题 Ada: How's the young man?Bill:______A、He's twenty.B、He's a doctor.C、He's much better.D、He's Dick.

考题 You define the following regular expression of currency values:regex tx = new regex(^-?\d+(\.\d{2})?$)You are required to write code that will be used to find whether a string in the variable named Bill matches the regular expression or not. You are also required to use this code as the expression in a conditional statement and need to know which code segment to use.What should you do?()A.The tx.Matches(Bill)B.The tx.Equals(Bill)C.The tx.Match(Bill)D.The tx.IsMatch(Bill)

考题 When a teacher says "Next, please pay attention to the time of arrival and departure of the planes in the recording ." he/she intends to develop the students' skill of __________. A.predicting B.getting the general pictures C.distinguishing sounds D.getting specific information

考题 When a teacher says "Next, please pay attention to the time of arrival and departure of the planes in the recording.", he/she intends to develop students' skill of__________. A.predicting B.getting the general picture C.distinguishing sounds D.getting specific information

考题 【单选题】7. 对于一个头指针为head的带头结点的单链表,判定该表为空表的条件是()。A.head→next==NULL;B.head==NULL;C.head→next==he;D.head!=NULL;

考题 以下关于Python自带数据结构的运算结果中正确的是哪一项?A..scores = {'Jack': 90, 'Mike': 80, 'Jay': 85, 'Bill': 60}; del scores['Bill']; len(scores)的结果是6。B.scores = {'Jack': 90, 'Mike': 80, 'Jay': 85, 'Bill': 60}; s = dict(Jack=90, Mike=80, Jay=85, Bill=60); 则scores == s 判断结果是False。C.scores = {'Jack': 90, 'Mike': 80, 'Jay': 85, 'Bill': 60}; 无法执行命令 scores['Bill']=90; 因为原来的字典中已经有了一个值为90了。D.scores = {'Jack': 90, 'Mike': 80, 'Jay': 85, 'Bill': 60}; sorted(scores.keys())的运算结果是 ['