Student participation(参与)in the classroom is not only accepted but also expected of the student in many courses.Some professors base part of the final grade on the student′s oral participation.Although there are formal lectures during which the student has a passive role(i.e.,listening and taking notes),many courses are organized around classroom discussions,student questions,and informal lectures.In graduate discussions the professor has a"manager"role and the students make presentations and lead discussions.,The students do the actual teaching in these discussions.A professor′s teaching method is another factor(因素)that determines the degree and type of student participation.Some professors prefer to control discussion while others prefer to guide the class without controlling it.Many professors encourage students to question their ideas.Students who object to the professor′s point of view should be prepared to prove their positions.In the teaching of science and mathematics,the controlling mode of instruction is generally traditional,with teachers presenting formal lectures and student staking notes.However,new educational trends have turned up in the humanities and social sciences in the past twenty years.Students in education,society,and history classes,for example,are often required to solve problems in groups,design projects,make presentations,and examine case studies.Since some college or university courses are"practical"rather than theoretical,they pay more attention to"doing"for themselves."Participation in the classroom is not only accepted but also expected of the student"in many courses except in__________.A.science and mathematicsB.the humanities and social sciencesC.informal lecture coursesD.discussion courses

Student participation(参与)in the classroom is not only accepted but also expected of the student in many courses.Some professors base part of the final grade on the student′s oral participation.Although there are formal lectures during which the student has a passive role(i.e.,listening and taking notes),many courses are organized around classroom discussions,student questions,and informal lectures.In graduate discussions the professor has a"manager"role and the students make presentations and lead discussions.,The students do the actual teaching in these discussions.
A professor′s teaching method is another factor(因素)that determines the degree and type of student participation.Some professors prefer to control discussion while others prefer to guide the class without controlling it.Many professors encourage students to question their ideas.Students who object to the professor′s point of view should be prepared to prove their positions.
In the teaching of science and mathematics,the controlling mode of instruction is generally traditional,with teachers presenting formal lectures and student staking notes.However,new educational trends have turned up in the humanities and social sciences in the past twenty years.Students in education,society,and history classes,for example,are often required to solve problems in groups,design projects,make presentations,and examine case studies.Since some college or university courses are"practical"rather than theoretical,they pay more attention to"doing"for themselves.

"Participation in the classroom is not only accepted but also expected of the student"in many courses except in__________.

A.science and mathematics
B.the humanities and social sciences
C.informal lecture courses
D.discussion courses

参考解析

解析:考情点拨:事实细节题。应试指导:最后一段第一句指出,在讲授科学和数学课程时,讲授的控制模式大都是传统的方式。

相关考题:

(40)查找学生姓名及其所选修课程号和成绩,正确的 SQL 语句是A)SELECT sname FROM student, SELECT cno,grade FROM sc WHERE student.sno =sc.snoB) FROM sname,cno,grade FROM student,course WHERE student.sno =course.cnoC) SELECT sname ,canme,grade FROM student,course,sc WHERE student.sno =sc.sno and sc.cno=course.cnoD) SELECT sname ,cno,grade FROM student,sc WHERE student.sno =sc.sno

Ⅲ. ReadingComprehension从下列每篇短文的问题后所给的四个选择项中选出一个最佳答案。Passage OneQuestions 21 to 25 are based on the following passage.Many teachers believe that the responsibility for learning lies with the students. If a long reading assignment is given,instructors expect students to be familiar with the information in the reading even if they do not discuss it in class or give an examination. (Courses are not designed merely for students to pass exams). The ideal student is considered to be one who is motivated to learn for the sake of learning,not the one interested only in getting high grades. Grade-conscious students may be frustrated with teachers who do not believe it is necessary to grade every assignment. Sometimes homework is returned with brief written comments but without a grade. Even if a grade is not given,the student is responsible for learning the material assigned.When research is assigned,the professor expects the student to take the initiative and to complete the assignment with minimal guidance. It is the student's responsibility to find books,periodicals,and articles in the library. Professors do not have the time to explain how a university library works,they expect students,particularly graduate students,to be able to exhaust the reference sources in the library.Professors will help students who need it,but prefer that their students not be overly dependent on them. (This differs from teacher-student relationships in other countries. )In the United States,professors have other duties besides teaching. Often they are responsible for administrative work within their departments. In addition,they may be obliged to publish articles and books. Therefore the time that a professor can spend with a student outside of class is limited. If a student has problems with classroom work,the student should either approach a professor during office hours or make an appointment.“Courses are not designed merely for students to pass exams. ”This means teachers______.A. want students to fail examsB. care only about exam gradesC. believe that passing exams is not the only purpose of a courseD. design courses for lectures only

The STUDENT_GRADES table has these columns:STUDENT_ID NUMBER(12)SEMESTER_END DATEGPA NUMBER(4,3)The registrar requested a report listing the students‘ grade point averages (GPA) sorted from highest grade point average to lowest.Which statement produces a report that displays the student ID and GPA in the sorted order requested by the registrar? ()A. SELECT student_id, gpa FROM student_grades ORDER BY gpa ASC;B. SELECT student_id, gpa FROM student_grades SORT ORDER BY gpa ASC;C. SELECT student_id, gpa FROM student_grades SORT ORDER BY gpa;D. SELECT student_id, gpa FROM student_grades ORDER BY gpa;E. SELECT student_id, gpa FROM student_grades SORT ORDER BY gpa DESC;F. SELECT student_id, gpa FROM student_grades ORDER BY gpa DESC;

对于数据表:student(sno,sname,sex,age,grade),查询学习成绩为空的学生的学号和姓名,下面语句正确的是______。A.SELECT sno,sname FROM student WHERE gade=NULLB.SELECT sno,sname FROM student WHERE grade IS NULLC.SELECT sno,age FROM student WHERE grade IS NULLD.SELECT mo,age FROM student WHERE grade=NULL

试题基于如下三个关系,其中学生关系student的主码是sno,课程关系course的主码是cno,选课关系SC的主码是(sno,cno)。查找学生姓名及其所选修课程的课程号和成绩,正确的SQL语句是( )。A)SELECT sname FROM student,SELECT cno,grade FROM scWHERE student.sno=sc.snoB)SELECT sname, cno,grade FROM student,courseWHERE student.sno=course.cnoC)SELECT sname, cname,grade FROM student,course, scWHERE student.sno=sc.Snoand sc.cno=course.cnoD)SELECT sname,cno, grade FROM student,scWHERE student.sno=sc.sno

对于学生信息表:student(sno,sname,sex,age,grade),查询学习成绩为空的学生的学号和姓名,下面语句正确的是A.SELECT sno,sname FROM student WHERE grade=NULLB.SELECT sno,sname FROM student WHERE grade IS NULLC.SELECT sno,age FROM student WHERE grade IS NULLD.SELECT sno,age FROM student WHERE grade=NULL

在关系SC(student_id,student_name,course_id,grade)中,有 student_id,course_id→grade student_id→student_name 关系SC最高达到______范式。A.不满足B.1NFC.2NFD.3NF

共用题干Teaching and LearningMany teachers believe that the responsibilities for learning lie with the student.If a long reading assignment is given,instructors expect students to be familiar with the ______(1)in the reading even if they do not discuss it in class or take an examination.The ______(2) student is considered to be one who is motivated to learn for the sake of______(3) ,not the one interested only in getting high grades.Sometimes homework is returned ______(4) brief written comments but without a grade.Even if a grade is not given,the student is ______(5) for learning the materi al assigned.When research is______(6), the professor expects the student to take it actively and to complete it with______(7) guidance.It is the student's responsibility to find books,maga-zines,and articles in the library.Professors do not have the time to explain______(8) a university library works;they expect students______(9) graduate students to exhaust the reference______(10) in the library.Professors will help students who need it,but______(11) that their students should not be______(12)dependent on them.In the United States professors have many other duties______(13)teaching,such as administrative or research work.Therefore, the time that a professor can spend with a student outside of class is______(14).If a student has problems with classroom work,the student should either______(15)a professor during office hours or make an appointment.1._________A:suggestionB:contextC:abstractD:information

共用题干Many teachers believe that the responsibilities for learning lie with the student._________(51) a long reading assignment is given,instructors expect students to be familiar with the_________(52) in the reading even if they do not discuss it in class or take an examination.The__________(53) student is considered to be one who is motivated(激励)to learn for the sake of_________(54),not the one interested only in getting high grades.Sometimes homework is returned________(55)brief written comments but without a grade.Even if a grade is not given,the student is_________(56) for learning the material assigned.When research is________(57),the professor expects the student to take it actively and to complete it with minimum guidance.It is the_________(58)responsibility to find books, magazines,and articles in the library.Professors do not have the time to explain _________(59)a university library works;they expect students,______(60)graduate students,to be able to exhaust the reference sources in the library.Professors will help students who need it,but_________(61)that their students should not be too dependent on them. In the United States professors have many other duties________(62)teaching,such as administrative or research work.________(63),the time that a professor can spend with student outside of class is_________(64).If a student has problems with classroom work,the student should either approach a professor during office hour_________(65)make an appointment._________(61)A:hate B:dislikeC:like D:prefer

共用题干Many teachers believe that the responsibilities for learning lie with the student._________(51) a long reading assignment is given,instructors expect students to be familiar with the_________(52) in the reading even if they do not discuss it in class or take an examination.The__________(53) student is considered to be one who is motivated(激励)to learn for the sake of_________(54),not the one interested only in getting high grades.Sometimes homework is returned________(55)brief written comments but without a grade.Even if a grade is not given,the student is_________(56) for learning the material assigned.When research is________(57),the professor expects the student to take it actively and to complete it with minimum guidance.It is the_________(58)responsibility to find books, magazines,and articles in the library.Professors do not have the time to explain _________(59)a university library works;they expect students,______(60)graduate students,to be able to exhaust the reference sources in the library.Professors will help students who need it,but_________(61)that their students should not be too dependent on them. In the United States professors have many other duties________(62)teaching,such as administrative or research work.________(63),the time that a professor can spend with student outside of class is_________(64).If a student has problems with classroom work,the student should either approach a professor during office hour_________(65)make an appointment._________(58)A:student's B:professor'sC:assistant's D:librarian's

Student participation(参与)in the classroom is not only accepted but also expected of the student in many courses.Some professors base part of the final grade on the student′s oral participation.Although there are formal lectures during which the student has a passive role(i.e.,listening and taking notes),many courses are organized around classroom discussions,student questions,and informal lectures.In graduate discussions the professor has a"manager"role and the students make presentations and lead discussions.,The students do the actual teaching in these discussions.A professor′s teaching method is another factor(因素)that determines the degree and type of student participation.Some professors prefer to control discussion while others prefer to guide the class without controlling it.Many professors encourage students to question their ideas.Students who object to the professor′s point of view should be prepared to prove their positions.In the teaching of science and mathematics,the controlling mode of instruction is generally traditional,with teachers presenting formal lectures and student staking notes.However,new educational trends have turned up in the humanities and social sciences in the past twenty years.Students in education,society,and history classes,for example,are often required to solve problems in groups,design projects,make presentations,and examine case studies.Since some college or university courses are"practical"rather than theoretical,they pay more attention to"doing"for themselves.Which of the following sentences is true according to the passage?A.Student participation is not common in the classroom in many courses like society.B.Some professors want to control the classroom discussion.C.Some professors usually want the students to take part in the teaching of science and mathematics.D.New educational trends have turned up in teaching of natural sciences such as chemistry.

Student participation(参与)in the classroom is not only accepted but also expected of the student in many courses.Some professors base part of the final grade on the student′s oral participation.Although there are formal lectures during which the student has a passive role(i.e.,listening and taking notes),many courses are organized around classroom discussions,student questions,and informal lectures.In graduate discussions the professor has a"manager"role and the students make presentations and lead discussions.,The students do the actual teaching in these discussions.A professor′s teaching method is another factor(因素)that determines the degree and type of student participation.Some professors prefer to control discussion while others prefer to guide the class without controlling it.Many professors encourage students to question their ideas.Students who object to the professor′s point of view should be prepared to prove their positions.In the teaching of science and mathematics,the controlling mode of instruction is generally traditional,with teachers presenting formal lectures and student staking notes.However,new educational trends have turned up in the humanities and social sciences in the past twenty years.Students in education,society,and history classes,for example,are often required to solve problems in groups,design projects,make presentations,and examine case studies.Since some college or university courses are"practical"rather than theoretical,they pay more attention to"doing"for themselves.The reason why some professors ask students to make presentations and lead discussions is that__________A.these professors are often not well prepared before classB.these professors want to stress"doing"C.these professors want to test the students'abilitiesD.these professors are not willing to teach theory

Student participation(参与)in the classroom is not only accepted but also expected of the student in many courses.Some professors base part of the final grade on the student′s oral participation.Although there are formal lectures during which the student has a passive role(i.e.,listening and taking notes),many courses are organized around classroom discussions,student questions,and informal lectures.In graduate discussions the professor has a"manager"role and the students make presentations and lead discussions.,The students do the actual teaching in these discussions.A professor′s teaching method is another factor(因素)that determines the degree and type of student participation.Some professors prefer to control discussion while others prefer to guide the class without controlling it.Many professors encourage students to question their ideas.Students who object to the professor′s point of view should be prepared to prove their positions.In the teaching of science and mathematics,the controlling mode of instruction is generally traditional,with teachers presenting formal lectures and student staking notes.However,new educational trends have turned up in the humanities and social sciences in the past twenty years.Students in education,society,and history classes,for example,are often required to solve problems in groups,design projects,make presentations,and examine case studies.Since some college or university courses are"practical"rather than theoretical,they pay more attention to"doing"for themselves.From the passage we know that education in the humanities and societyA.has not changed much__________B.pay attention to students'studying instead of teachers'teachingC.is much more important than that of science and mathematicsD.has become more practical than theoretical

单选题Now little has been done to ______.Adecide a student’s jobBtest a student’s abilityCtest a student’s knowledgeDtest a student’s memory

单选题The STUDENT_GRADES table has these columns: STUDENT_ID NUMBER(12) SEMESTER_END DATE GPA NUMBER(4,3) The registrar requested a report listing the students' grade point averages (GPA) sorted from highest grade point average to lowest. Which statement produces a report that displays the student ID and GPA in the sorted order requested by the registrar?()ASELECT student_id, gpa FROM student_grades ORDER BY gpa ASC;BSELECT student_id, gpa FROM student_grades SORT ORDER BY gpa ASC;CSELECT student_id, gpa FROM student_grades SORT ORDER BY gpa;DSELECT student_id, gpa FROM student_grades ORDER BY gpa;ESELECT student_id, gpa FROM student_grades SORT ORDER BY gpa DESC;FSELECT student_id, gpa FROM student_grades ORDER BY gpa DESC;

单选题All of Mark's former students go to college. If the statement above is true, which of the following must also be true?AIf Ethan was not Mark's student, then he is not going to college.BIf Joyelle goes to college, then she was not Mark's student.CIf Ginger goes to college, then she was Mark's student.DIf Stephanie was Mark's student, then she is not going to college.EIf Steve does not go to college, then he was not Mark's student.