Passage FourMany people want to know how to analyze problems they meet. There are six stages in analyzing a problem.First the person must recognize that there is a problem. For example, Sam's bicycle is broken, and he cannot ride it to class as he usually

题目

Passage Four

Many people want to know how to analyze problems they meet. There are six stages in analyzing a problem.

First the person must recognize that there is a problem. For example, Sam's bicycle is broken, and he cannot ride it to class as he usually does. Sam must see that there is a problem with his bicycle.

Next the thinker must define the problem. Before Sam can repair his bicycle, he must find the reason why it does not work. For instance, he must determine if the problem is with the gears, the brakes, or the frame. He must make his problem more specific.

Now the person must look for information that will make the problem clearer and lead to possible solutions. For instance, suppose Sam decided that his bike does not work because there is something wrong with the gear wheels. At this time, he can look in his bicycle repair book and read about gears. He can talk to his friends at the bike shop.

After studying the problem, the person should have several suggestions for a possible solution. Take Sam as an illustration. His suggestions might be: put oil on the gear wheels; buy new gear wheels and replace the old ones; tighten or loosen the gear wheels.

Eventually one suggestion seems to be the solution to the problem. Sometimes the final idea comes very suddenly because the thinker suddenly sees something new or sees something in a new way. Sam, for example, suddenly sees that there is a piece of chewing gum between the gear wheels. He immediately realizes the solution to his problem: he must clean the gear wheels.

Finally the solution is tested. Sam cleans the gear wheels and finds that afterwards his bicycle works

perfectly. In short, he has solved the problem.

48. In analyzing a problem we should do all the following except ______.

A. recognize and define the problem

B. look for information to make the problem clearer

C. have suggestions for a possible solution

D. find a solution by trial or mistake


相似考题
更多“Passage Four Many people want to know how to analyze problems they meet. There are six ”相关问题
  • 第1题:

    有如下类定义: class Point{ private: static int how_many; }; ______how_many=0; 要初始化Point类的静态成员how_many,下划线处应填入的内容是

    A.int

    B.static int

    C.int Point: :

    D.static int Point


    正确答案:C
    解析:static int n;是定义静态全局变量,int point是定义类的。

  • 第2题:

    关于“地球为什么绕着太阳转”的知识,属于()类型的知识。

    A.know-what

    B.know-why

    C.know-who

    D.know-how


    know-why

  • 第3题:

    关于“地球为什么绕着太阳转”的知识,属于()类型的知识。

    A.konw-what

    B.know-why

    C.know-who

    D.konw-how


    know-why

  • 第4题:

    有如下类定义: class Point{ private: static int how_many; }; ___________how_many=0; 要初始化Point类的静态成员how_many,下画线处应填入的内容是( )。

    A.int

    B.static int

    C.int Point::

    D.static int Point::


    正确答案:C
    本题考查静态数据成员,静态数据成员可以初始化,但只能在类体外进行初始化,其一般形式为:数据类型类名::静态数据成员名=初值。所以本题答案为C。

  • 第5题:

    OECD(1996)将知识分为:事实知识(Know-what)、原理知识(Know-why)、技能知识(Know-how)、人力知识(Know-who),前两种属于隐性知识,后两种属于显性知识。


    错误

  • 第6题:

    【填空题】运行下列程序,输出结果是____。 #include <iostream> using namespace std; enum opt{ONE,TWO,THREE,FOUR,FIVE,SIX,SEVEN}op; int main(void) { cout<<ONE; cout<<TWO; cout<<SIX; return 0; }


    B 解析:本题考查循环辅助控制语句break和continue,前者退出整个for循环,后者跳过本次循环没有执行完的若干条语句,开始下一次循环操作,建议读者采用本书推荐的列表法分析。