I had made up my mind a long time ago th

题型:阅读理解

问题:

I had made up my mind a long time ago that I would not give a homeless person money, because I could never be sure what that money would be used for. Instead, I decided, I would buy them a sandwich, a cold drink on a hot day, a cup of coffee, whatever I could manage.

I was out recently and saw a homeless man outside of a Starbucks. I decided I would buy this man lunch. I bought a sandwich and soda.

Just as I was leaving the store, two policemen were approaching the man. Obviously the shop owners had complained of his wandering and the police were there to draw him away from the storefronts. Just as they were about to wake him, I asked one of the officers if it was all right if I just gave the man something before he went. I was not sure why I asked the permission but the policeman said sure and I just left the bag in the man’s cart, got in my car and drove off.

As I was driving off I remember thinking “I hope people saw that”. Then I had to seriously ask myself why I hoped people had seen me give the man a sandwich from Starbucks. Was it because I wanted people to think, “She’s such a nice person!”? Why did I hope others had seen me do it? I continued to wonder this all evening.

The next morning, it came to me that I wanted people to have witnessed that small act of kindness not so that I would receive credit and praise but so that they might be inspired to do the same and in so doing that others still would witness their acts of kindness. Thus the whole spirit of pity and giving would be lasting.

小题1:The underlined word “Starbucks” in the second paragraph is the name of a _________.

A.shop

B.bookstore

C.bank

D.man小题2:When the author saw the homeless man, he was __________.

A.begging outside

B.buying goods

C.staying awake

D.falling asleep小题3:What’s the purpose of the passage?

A.To show the author is great.

B.To encourage people to help others.

C.To introduce an experience that changed the author.

D.To call on people not to give money to a homeless man.小题4:The author can be best described as __________.

A.bad-tempered

B.hard-working

C.kind-hearted

D.self-confident

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

—This pair of shoes _______really small for me    —Why not try another _________.

A.is, pair

B.are, pair

C.is, one

D.are, one

题型:阅读理解

[说明]
任何一种程序都是为了解决问题而撰写的,解决问题时需要实现一些特定的运算法则。在策略(Strategy)模式下,可以更换实现算法的部分而不留痕迹,切换整个算法,简化改为采用其他方法来解决同样问题。
以下是一个“剪刀石头布”游戏。猜拳时的“策略”有2种方法:第一种是“猜赢后继续出同样的招式”(WinningStrategy),第二种是“从上一次出的招式种,以概率分配方式求出下一个招式的几率”(ProbStrategy)。程序中定义了Hand类表示猜拳时的“手势”,类内部以0(石头)、1(剪刀)、2(布)来表示。Hand类的实例只会产生3个。
以下是Java语言实现,省略了不相关属性及方法,方法实现体亦有所省略,能够正确编译通过。
[Java代码]
//Hand.java文件
public class Hand
public static final int HANDVALUE_GUU = 0; //石头
public static final int HANDVALUE_CHO = 1; //剪刀
public static final int HANDVALUE_PAA = 2; //布
public static final Hand[] hand =
new Hand(HANDVALUE_GUU),
new Hand(HANDVALUE_CHO),
new Hand(HANDVALUE_PAA),
;
private int handvalue;
(1) Hand(int handvalue)
this.handvalue = handvalue;

public (2) Hand getHand(int handvalue)(//从值取得对象实例
return hand[handvalue];


//Strategy.java文件
public interface Strategy
public (3) Hand nextHand();

//ProbStrategy.java文件
import java.util.Random;
public class ProbStrategy implements Strategy
public Hand nextHand()
int handvalue = 0;
/*省略具体实现*/
return Hand.getHand(handvalue);


//WinningStrategy.java文件
import java.util.Random;
public class WinningStrategy implements Strategy
/*省略了不相关属性*/
public Hand nextHand()
if(!won)
prevHand = Hand.getHand(random.nextInt(3));

return prevHand;


//Player.java文件
public class Player
private String name;
private Strategy strategy;
public Player(String name, (4) strategy)
this.name = name;
this.strategy = strategy;

public Hand nextHand()//向战略请示手势
return (5) ;


题型:阅读理解

目前我国进出口总额已达3240亿美元,占国内生产总值的33%。其中我国与WTO成员国之间的贸易额占我国贸易总额的90%。由于长期被排斥在关贸总协定和WTO之外,一方面,出现贸易争端时,找不到适应的公正、权威的法规来裁决;另一方面,成员国之间许多互利互惠的好处我们无法享受,甚至会遭到歧视。

结合此材料运用经济常识,说明我国加入WTO的重要意义。

题型:阅读理解

质量内涵的三个层面包括( )。

A.产品质量

B.目标质量

C.运行质量

D.质量特性

E.工作质量

题型:阅读理解

建立神经元群连接方式的模型(),以阐明其所完成的复杂功能的机制。

更多题库