阅读下列对话,判断句子正误。正确的写“T”,错误的写“F"。 Dad: Whic

题型:阅读理解

问题:

阅读下列对话,判断句子正误。正确的写“T”,错误的写“F"。

Dad: Which dog do you like?

Tom: I like the black dog. It is taller than the white one.

Dad: I think I like the white one. It's younger.

Tom: Can I get a new dog, Dad?

Dad: No, you have two dogs already!

( ) 1. Tom's dad likes the black dog.

( ) 2. The black dog is taller than the white dog.

( ) 3. The white dog is younger.

( ) 4. Tom wants to buy a new dog.

( ) 5. Tom can get a new dog.

考点:阅读能力
题型:阅读理解

房屋用地调查与测绘以()为单位分户进行

A.宗地

B.丘

C.地块

D.街道

题型:阅读理解

阅读理解。

     The unquestioned role of a student is to learn as much as possible through whatever means it takes to

acquire knowledge. Teachers and professors are human beings and are therefore not perfect. No one knows

the correct answer to every question even when you limit the questions to a certain field of study. Having

certain skepticism (质疑) about what they are being taught can help students to make the teachers even better

by correcting mistakes and misinformation.

     Students certainly have a huge role in their own abilities to learn. Teachers should act more as guides

along the way rather than try to force each student to learn. The best teachers in the world cannot teach an

unmotivated student. If the teacher, for whatever reason, cannot motivate the student, then the student must

somehow find a way to motivate himself or herself.

     One method of doing this is by becoming an active rather than a passive student. The more the student

involves himself or herself in the act of studying, the better he or she can learn. One of the best ways to

become more active is simply to ask the teacher or professor questions. Students who passively sit in a

classroom and take everything that the teacher says for granted are not fully using their mental capacities

to learn.

     Better education comes from teachers who are able to get their students to think about a subject rather

than merely absorb a certain amount of information. Having a healthy skepticism can improve a student's

ability to both think and absorb knowledge in a learning situation.

     Teachers are human beings and no one is one hundred percent right all of the time, even in a classroom

situation. Perhaps a teacher would simply unconsciously say the wrong word or pass on some misinformation

that the teacher truly believed was correct. A student's question could prevent an entire classroom from

becoming confused or misinformed.

     There is of course a fine balance between a student having a healthy skepticism, and just being a downright

skeptic. But with the proper attitude toward learning and a little skepticism, both the students and teachers

can improve upon the learning process and maximize learning efficiency.

1. Which of the following is the author's main argument? [ ]

A. Passive learning results from passive teaching in class.

B. A student's ability plays a huge role in the learning process.

C. A healthy skepticism fully depends on students' motivation and ability.

D. A healthy skepticism and proper attitude contribute to effective learning.

2. Being passive learners, the students _____. [ ]

A. use little of their mental ability while studying

B. seldom involve themselves completely in learning

C. can hardly tell the right from the wrong in class

D. simply ask their teachers questions without thinking

3. According to the passage, a good teacher should _____. [ ]

A. help the unmotivated students patiently

B. instruct students in the learning process

C. make no mistakes in the teaching process

D. answer all the questions raised by students

题型:阅读理解

关于防治围术期心肌缺血的叙述,正确的是()

A.全麻比区域阻滞麻醉引起心肌缺血的可能性小

B.麻醉期间,为预防心肌缺血,控制血压较心率更重要

C.心动过速时,应用β受体阻滞剂前须保证充足血容量

D.同样的血压水平时,心率快者危险性较低

E.应用硝酸甘油主要是降低后负荷

题型:阅读理解

以下对信用报告中“当前逾期总额”表述正确的是()。

A、当前逾期总额是截止信息获取时间前最后一个结算日应还未还的款项。

B、对贷记卡而言,是指当前未归还最低还款额的总额;

C、对贷款而言,是指当前应还未还的贷款额合计。

D、对于准贷记卡,该数据项无意义,所以显示为0。

题型:阅读理解

下列给定程序中,函数fun的功能是:在形参ss所指字符串数组中查找与形参t所指字符串相同的串,找到后返回该串在字符串数组中的位置(即下标值),若未找到则返回-1。ss所指字符串数组中共有N个内容不同的字符串,且串长小于M。
请在下划线处填入正确的内容并将下划线删除,使程序得出正确的结果。
注意:部分源程序给出如下。
不得增行或删行,也不得更改程序的结构!
试题程序:
#include <stdio.h>
#include <string.h>
#define N 5
#define M 8
int fun(char (*ss)[M], char *t)
int i;
/******************found*******************/
for(i=0; i< (1) ; i++)
/******************found*******************/
if(strcmp(ss[i], t)==0)
return (2) ;
return(-1);

main()
char ch[N][M]("if", "while", "switch", "int", "for", t[M];
int n, i;
printf("\nThe original string\n\n");
for(i=0; i<N; i++)puts(ch[i]);
printf("\n");
printf("\nEnter a string for search:");
gets(t);
n=fun(ch, t);
/******************found*******************/
if(n== (3) )
printf("\nDon’t found!\n");
else
printf("\nThe position is %d.\n", n);

更多题库