Sally’s father is ill in hospital. and h

题型:阅读理解

问题:

Sally’s father is ill in hospital. and her mother has to look after her father there The woman can’t leave their four-year-old son Harry at home. So she asks Sally, “How many classes do you have this afternoon?”

“We have no classes today,” answers the girl. “We’re having a school sports meeting today.”

“That’s great!” says her mother. “Take your brother to your school. Tell your teachers I have a lot of things to do. I’m sure they can let you look after him today.”

Sally does what her mother says. This little boy comes to school for the first time and thinks everything is interesting. He sees some children having a race and asks. “What are they running for, Sally?”

“The first one can get a prize.” answers Sally.

“Now, I see. But why are the others running?”

小题1:Where is Sally’s father?

小题2:Who will take care of Sally’s father?

小题3:How old is Harry?

小题4:Does Harry often go to school?

小题5:Why does Sally take her brother to school today?

考点:日常生活类阅读
题型:阅读理解

硫在煤中大体存在哪几种状态?

题型:阅读理解

A middleaged woman came________to the bus stop only________the bus had gone.[ ]

A. to run; to find  

B. running; to find

C. and ran; found  

D. running; finding

题型:阅读理解

1月1日,上海期货交易所3月份铜合约的价格是63200元/吨,5月份铜合约的价格是63000元/吨。某投资者采用熊市套利(不考虑佣金因素),则下列选项中可使该投资者获利最大的是( )。

A.3月份铜合约的价格保持不变,5月份铜合约的价格下跌了50元/吨

B.3月份铜合约的价格下跌了70元/吨,5月份铜合约的价格保持不变

C.3月份铜合约的价格下跌了250元/吨,5月份铜合约的价格下跌了170元/吨

D.3月份铜合约的价格下跌了170元/吨,5月份铜合约的价格下跌了250元/吨

题型:阅读理解

慢性呼吸衰竭的临床表现可见:()

A.呼吸困难,发绀

B.烦躁不安,抽搐嗜睡

C.酸碱平衡失调和电解质紊乱

D.诱发弥漫性血管内凝血

E.代谢性酸中毒

题型:阅读理解

[说明]
在销售系统中常常需要打印销售票据,有时需要在一般的票据基础上打印脚注。这样就需要动态地添加一些额外的职责。如下展示了Decorator(修饰)模式。SalesOrder对象使用一个SalesTicket对象打印销售票据。显示了各个类间的关系。以下是Java语言实现,能够正确编译通过。


[Java代码]
//Component.java文件
public ______ class Component
abstract public void prtTicket();
//SalesTicket.java文件
public class SalesTicket extends Component
public void prtTicket()
//Sales ticket printing code here
System.out.println("SalesTicket");


//Decorator.java文件
public abstract class Decorator extends Component
public void prtTicket()
if(myComp != null)myComp.prtTicket();

private ______ myComp;
public Decorator(Component myC)
myComp = myC;


//Footer.java文件
public class Footer extends Decorator
public Footer(Component myC)
______;

public void prtTicket()
______;
prtFooter();

public void prtFooter()
//place printing footer code here
System.out.println("Footer");


//SalesOrder.java文件
public class SalesOrder
void prtTicket()
Component myST;
myST = new Footer(______);
//Print Ticket with footers as needed
myST.prtTicket();

更多题库