niusouti.com

27._______are broken.A. Mike's shoes and kiteB. Mike's watch and knifeC. Ann's shoes and kiteD. Tom's things

题目

27._______are broken.

A. Mike's shoes and kite

B. Mike's watch and knife

C. Ann's shoes and kite

D. Tom's things


相似考题
参考答案和解析
正确答案:A
27.A【解析】文中说到brokerI“破了”的地方有这样一句话The shoes are worn out.“鞋穿破了”,而选项当中有鞋的只有A、C两项。但选项C是说Ann的鞋破了,文中投有Ann这一人物。故选A。
更多“27._______are broken.A. Mike's shoes and kite B. Mike's watch and knifeC. Ann's shoes a ”相关问题
  • 第1题:

    阅读下面代码 public class Arrays { public static void main(String[] args) { int[] a=new int[5]; for(int i=0;i<a.length;i=i+1)a[i]=10+i; for(int i=0;i<a.length;i=i+1)System.out.println(a[i]); String[] s={"Frank","Bob","Jim"}; for(int i=0;i<s.length;i=i+1)System.out.println(s[i]); s[2]="Mike"; System.out.println(s[2]); } } 代码运行正确的结果是

    A.10 11 12 13 14 Mike Bob Frank Jim

    B.11 12 13 14 15 Frank Bob Mike Jim

    C.10 11 12 13 14 Frank Bob Jim Mike

    D.11 12 13 14 15 Mike Jim Bob Frank


    正确答案:C
    解析:数组元素下标从0开始,到元素个数为-1为止。本题程序中,对第一个数组a赋值是,i循环从0开始,因此a[0]=10+0=10,所以选项B、选项D错误。第二个数组s含有3个字符串,下标分别为0、1、2。后边给s[2]赋值“Mike”,然后输出s[2],所以答案为C。

  • 第2题:

    以下关于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())的运算结果是 ['


    D

  • 第3题:

    以下关于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())的运算结果是 ['B


    D

  • 第4题:

    A

    In a small village, there is a teacher, a nurse(护士) ,a driver(司机) and a worker.They are good friends. What are their names? One is Mike, one is Jack, one is Tom and the other is John. Mike's, Jack’s and Tom-s children are classmates. John doesn’t have any children He teaches his friends' children at school. Mike has many hens. He gives the driver and the nurse eggs. Jack's child goes to the nurse- s house. The nurse-s house is beside Jack's.

    ( )21. Are the four people good friends?

    A. Yes.

    B. No.

    C. Not.

    D. They are brothers.


    正确答案:A
    21.A【解析】根据文章的第二句可知。

  • 第5题:

    以下关于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())的运算结果是 ['B


    D