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

题目内容 (请给出正确答案)

Emotional intelligence is a person's ability to understand their own emotions and those of others, and to act appropriately using these emotions. Research suggests that a person’s emotional intelligence (EQ) might be a greater predictor of success than his or her intellectual intelligence(IQ), despite an assumption that people with high IQs will naturally accomplish more in life.

The Marshmallow Test is mentioned in Emotional Intelligence, by Goleman. How a child performs on this test at the age of 4 is a better predictor of his or her future success in life than his or her IQ.

What researchers do is leave the child alone in a room with a marshmallow, telling them they can either eat the marshmallow immediately, or, if they can wait till the researchers return, they can have 5 marshmallows.

What this is testing is ―impulse control and the ability to ―delay gratification . It’s an example of ―frustration tolerance . Much of what we want later on in life requires resisting the immediate impulse, and also being able to ―delay gratification , i.e., when in college, you might have preferred to be off surfing in Hawaii, but, since you valued what a college education would do for you, you stuck with it. And it meant giving up some things you might have preferred doing at the time.

Some of the children can’t resist, and take the marshmallow immediately. Others stick it out, and what do they do? They count their fingers and toes... get up and look out the window... find a book in the room and read it... look up at the ceiling—they are very clever!

Somewhere they developed this skill... could it have been their parents?

My mom used to tell me ―When you’re angry, stop and count to ten. She was teaching me to stop and think before I spoke or took action. This is a tried-and-true way to emotional intelligence—stopping to think before you act or react.

(1) Which of the following is not included in EQ?

A、the ability to understand one’s own emotions

B、the ability to understand other people’s emotions

C、the ability to act properly using those emotions

D、the ability to wait till the researchers return

(2) The Marshmallow Test is to ().

A、test one’s IQ

B、test one’s EQ

C、test one’s patience

D、test one’s temper

(3) You stuck with a college education although you preferred to be off surfing in Hawaii. This example is to explain ().

A、both ―impulse control and the ability to ―delay gratification

B、―impulse control

C、the ability to ―delay gratification

D、neither ―impulse control nor the ability to ―delay gratification

(4) The example of the author and his mother shows ().

A、the author can resist temptations

B、the author is very clever

C、some children develop their EQ through their parents’teaching

D、when a person is angry, it is important to count from one to ten

(5) Which of the following is true?

A、If a person’s IQ is high, he will be successful.

B、If a person’s EQ is high, he will be successful.

C、A person with high IQ is more likely to be successful.

D、A person with high EQ is more likely to be successful.


参考答案

更多 “ Emotional intelligence is a person's ability to understand their own emotions and those of others, and to act appropriately using these emotions. Research suggests that a person’s emotional intelligence (EQ) might be a greater predictor of success than his or her intellectual intelligence(IQ), despite an assumption that people with high IQs will naturally accomplish more in life.The Marshmallow Test is mentioned in Emotional Intelligence, by Goleman. How a child performs on this test at the age of 4 is a better predictor of his or her future success in life than his or her IQ.What researchers do is leave the child alone in a room with a marshmallow, telling them they can either eat the marshmallow immediately, or, if they can wait till the researchers return, they can have 5 marshmallows.What this is testing is ―impulse control and the ability to ―delay gratification . It’s an example of ―frustration tolerance . Much of what we want later on in life requires resisting the immediate impulse, and also being able to ―delay gratification , i.e., when in college, you might have preferred to be off surfing in Hawaii, but, since you valued what a college education would do for you, you stuck with it. And it meant giving up some things you might have preferred doing at the time.Some of the children can’t resist, and take the marshmallow immediately. Others stick it out, and what do they do? They count their fingers and toes... get up and look out the window... find a book in the room and read it... look up at the ceiling—they are very clever!Somewhere they developed this skill... could it have been their parents?My mom used to tell me ―When you’re angry, stop and count to ten. She was teaching me to stop and think before I spoke or took action. This is a tried-and-true way to emotional intelligence—stopping to think before you act or react.(1) Which of the following is not included in EQ?A、the ability to understand one’s own emotionsB、the ability to understand other people’s emotionsC、the ability to act properly using those emotionsD、the ability to wait till the researchers return(2) The Marshmallow Test is to ().A、test one’s IQB、test one’s EQC、test one’s patienceD、test one’s temper(3) You stuck with a college education although you preferred to be off surfing in Hawaii. This example is to explain ().A、both ―impulse control and the ability to ―delay gratificationB、―impulse controlC、the ability to ―delay gratificationD、neither ―impulse control nor the ability to ―delay gratification(4) The example of the author and his mother shows ().A、the author can resist temptationsB、the author is very cleverC、some children develop their EQ through their parents’teachingD、when a person is angry, it is important to count from one to ten(5) Which of the following is true?A、If a person’s IQ is high, he will be successful.B、If a person’s EQ is high, he will be successful.C、A person with high IQ is more likely to be successful.D、A person with high EQ is more likely to be successful. ” 相关考题
考题 We _______ that important new discovery _______ Albert Einstein. A. owe⋯forB. owe⋯toC. own⋯forD. own⋯to

考题 Who is the______ (own)of this computer?

考题 ( )knowledge of space developed rapidly. A、Person’sB、Mens’C、Men'sD、Man’s

考题 Dare to make constructive criticism, and _____ the instructive criticism with an open mind. A、captureB、embraceC、cableD、emotional

考题 We_____it_____MarconiandBellthatwecantalktopeopleontheothersideoftheglobeovertheradio. A.own...forB.owe...toC.own...toD.owe...for

考题 使用VC6打开考生文件夹下的工程test28_3。此工程包含一个test28_3.cpp,其中定义了类Person,但该类的定义并不完整。请按要求完成下列操作,将程序补充完整。(1)定义类Person的私有数据成员forename、surname 和 money,forename 和 surname都是char型的指针数据,money是double型的数据。请在注释“//**1**”之后添加适当的语句。(2)完成类Person的带三个参数的构造函数Person(char *f, char *s,double m),分别为forename和surname申请新的空间来存储参数f和s指针指向的内容,注意空间的大小,最后把参数m的值赋给money,请在注释“//**2**”之后添加适当的语句。(3)完成类Person的析构函数的定义,把forename和surname指向的空间释放,请在注释“//**3**”之后添加适当的语句。(4)完成类Person的成员函数display的定义,使其以格式“forname surname has money”的形式输出内容,请在注释“//**4*。”之后添加适当的语句。注意:除在指定位置添加语句之外,请不要改动程序中的其他内容。输出结果如下:Richard Berk has 1000.56源程序文件test28_3.cpp清单如下:include <iostream.h>include <string.h>class Person{private://** 1 **double money;public:Person(char *f, char *s, double m);~Person();void display();};Person::Person(char *f, char *s, double m){//** 2 **strcpy(forename, f);surname = new char[strlen(s)+1];strcpy(surname, s);money=m;}Person: :-Person (){//** 3 **}void Person:: display ( ){//** 4 **}void main ( ){Person p("Richard", "Berk", 1000.56);p.display ( );}

考题 WhichisthecorrectwaytoconnecttoboththetargetdatabaseandtherecoverycatalogfromtheRMANcommandline?()AssumethatthetargetdatabaseiscalledORCLandthattherecoverycatalogdatabaseiscalledRCAT.Alsoassumethattherecovery-catalogowneriscalledRCAT_OWN.AssumetheenvironmentisconfiguredfortheORCLdatabase.A.rmantarget=/catalog=/@rcatB.rmantarget=/catalog=rcat_own/rcat_ownC.rmantarget=/catalog=rcat_own/rcat_own@RCATD.rmantarget=sys/robert@orclcatalog=rcat_own/rcat_own@RCATE.Youcannotconnecttothetargetdatabaseandtherecoverycatalogatthesametime.

考题 给出下面不完整的类代码,则横线处的语句应该为( )。 class Person { String name,department; int age; public Person (Strings) {name=s;} public Person (String s,intA.{name=s;age=a;} public Person (String n,String d,intA){ __________ department=d; } }A)Person (n,A);B.this (Person(n,A));C.this(n,A);D.this(name,age);

考题 The Declaration of Inspection made before oil transfer operations must be signed by the ______.A.Master of the vesselB.Captain of the PortC.person(s) in chargeD.All of the above

考题 Person类可能的拷贝构造函数格式为:A.Person(){}B.Person(Person *p){}C.Person(Person p){}D.Person(Person p){}