Text 2
Women are, on the whole, more verbal than men. They are good at language and verbal reasoning, while men tend to be skilled at tasks demanding visual spatial abilities. In fact, along with aggression, these are the most commonly accepted differences between the sexes.
Words are tools for communicating with other people, especially information about people. They are mainly social tools. Visual and spatial abilities are good for imagining and manipulating objects and for communicating information about them. Are these talents programmed into the brain? In some of the newest and most controversial research in neurophysiology, it has been suggested that when it comes to the brain, males are specialists while women are generalists.
But no one knows what, if anything, this means in terms of the abilities of the two sexes. Engineering is both visual and spatial, and it' s true that there are relatively few women engineers. But women become just as skilled as men at shooting a rifle or driving a car, tasks that involve visual spatial skills. They also do equally well at programming a computer, which is neither visual nor spatial. Women do, however, seem less likely to fall in love with the objects themselves. We all know men for whom machines seem to be extensions of their identity. A woman is more likely to see her car, rifle, or computer as a useful tool, but not in itself fascinating.
26. According to the passage, women are usually good at ______.
A) body language
B) logical reasoning
C) tasks demanding for the use of words
D) both A and B
第1题:
( 10 ) 在窗体上画一个文本框 , 其名称为 Text1 , 在属性窗口中把该文本框的 Mult i Line 属性设置为 True ,然后编写如下的事件过程:
Private Sub Form_Click ()
Open " d:\test\smtext1.Txt " For Input As #1
Do While Not 【 13 】
Line Input #1, aspect$
W hole$=whole$+aspect$+Chr$ ( 13 ) +Chr$ ( 10 )
Loop
Text1.Text=whole$
【 14 】
Open " d:\test\smtext2.Txt " For Output As #1
Print #1, 【 15 】
Close #1
End Sub
运行程序 , 单击窗体 , 将把磁盘文件 smtext1.txt 的内容读到内存并在文本框中显示出来,然后把该文本框中的内容存入磁盘文件 smtext2.txt 。请填空。
第2题:
A、impartial
B、impart
C、parti
D、whole
第3题:
在名称为Forml的窗体上绘制一个文本框,其名称为Text1,在属性窗口中把该文本框的MultiLine属性设置为True,然后编写如下的事件过程:
Private SUb Form_CnCk()
Open"d:\tes\smtext1.txt"For Input AS 1
Do While Not EOF(1)
Line Iput 1,aspect$
whole$=whole$+aspect$+Chf$(13)+Chr$(10)
Loop
第4题:
In his composition there are ________errors _______a few misspellings.
A: no other ... than
B: some other ... than
C: more ... than
D: other ... than
第5题:
把一个磁盘文件的内容读到内存并在文本框中显示出来,然后把该文本框中的内容存入另一个磁盘文件,请填空完成程序。
在窗体上建立一个文本框,在属性窗口中把该文本框的MultiLine属性设置为 True,然后编写如下的事件过程:
Prlvate Sub Form_Click()
Open"D:\test1.txt"For Input As 1
Text1.FontSize=14
Text1.FontName=“幼圆”
Do While Not EOF(1)
【 】
whole$=whole$+aspect$+Chr$(13)+Chr$(10)
Loop
Text1.Text=【 】
Close
Open"D:\test2.txt"For Output As 1
Print 1,【 】
Close
End Sub
第6题: