In the brain ______ fulfills the function of speech production.
Angular gyrus
Broca’s area
C. The right hemisphere
D. Wernicke’s area
查看答案
Psycholinguists are particularly interested in ______.
A. brain lateralization
B. linguistic lateralization
C. both A and B
D. neither A nor B
Children who suffer aphasia before puberty have a much more rapid and complete recovery than do other children.
A. 对
B. 错
The critical period for language acquisition refers to the short period of ______ years old in one’s life, during which the human brain is most ready to acquire a particular language.
A. 1—2
B. 2—12
C. 1—12
D. 13—18
请使用VC6或使用[答题]菜单打开考生文件夹proj1下的工程proj1,此工程中含有一个源程序文件proj1.cpp。其中位于每个注释“//ERROR ****found****”之后的一行语句存在错误。请改正这些错误,使程序的输出结果为: Base:Good Luck! Derived:Good Luck! 注意:只修改注释“//ERROR ****found****”的下一行语句,不要改动程序中的其他内容。 //praj1.cpp #include <iostream> #include <cstring> using namespace std; class Base { // ERROR ******** found******** private: char* msg; public: Base(char* str) { // ERROR ******** found******** msg:new char[strlen(str)]; strcpy (msg, str); cout << "Base: " <<msg << endl; } // ERROR ******** found******** ~Base() { delete msg; } }; class Derived:public Base { public: Derived (char* str):Base(str) {} void Show () { cout <<"Derived:" <<msg << endl; } }; int main ( ) { Derived obj ("Good Luck! "); obj.Show(); return 0; }