第1题:
It can be inferred from the text that the author .
A. was sick of staying upstairs
B. cared much about her children
C. could not stand living a wooden house
D. did not deal well with her family affairs during the flood
第2题:
在窗体中建立了三个文本框,名称分别为text1、text2和text3,编写以下程序段:
PrivateSubText2_LostFocus()
DimiAsInteger
IfIsNumeric(Text2)Then
Text3.Text="正确!!"
Else
Text2.Text=""
Text2.SetFocus
Text3.Text="错误,再输入!!"
EndIf
EndSub
当在text2中输入字符串"abcd"后,点击text3,运行的结果为()
A.text2的内容清除,text3中显示"正确!!"
B.text3中显示"正确!!"
C.光标聚焦在text2中
D.text2的内容清除,text3中显示"错误,再输入!!"
第3题:
A、aloof
B、radical
C、laid-back
D、approachable
第4题:
在运行阶段,要在文本框Text1获得焦点时选中文本框中所有内容,对应的事件过程是( )
A.Private Sub Text1_GotFocus() Text1.SelStart=0 Text1.SelStart=Len(Text1.text) End Sub
B.Private Sub Text1_LostFocus() Text1.SelStart=0 Text1.SelStart=Len(Text1.text) End sub
C.Private Sub Text1_Change() Text1.SelStart=0 Text1.SelStart=Len(Text1.text) End sub
D.Private Sub Text1_SetFocus() Text1.SelStart=0 Text1.SelStart=Len(Text1.text) End sub
第5题:
在窗体上画两个文本框,其名称分别为Text1和Text2,然后编写如下程序: Private Sub Form_Load0 Show Text1.Text="" Text2.Text="" Text1.SetFocus End Sub Private Sub Text1 Change() Text2.Text=Mid(Text1.Text,8) End Sub 程序运行后,如果在文本框Text1中输入BeijingChina,则在文本框Text2中显示的内容是( )。
A.BeijingChina
B.China
C.Beijing
D.BeijingC
第6题:
在窗体中添加两个文本框,其名称分别为Text1和Text2;两个标签,其名称分别为Label1和Label2。编写程序,使得程序运行后,在文本框Text2中输入小写字母,能转换为比此字母的ASCII码小4的大写字母,结果显示在文本框Text1中。如输入“efg”,则输出的结果为“ABC”,能够实现上述功能的程序是
A.Private Sub Form. Load() Show Text1.Text=" " Text2.Text=" " Text2.SetFocus End Sub Private Sub Text2_KeyDown(KeyCode As Integer,Shift As Integer) Text1.Text=Chr(KeyCode-4) End Sub
B.Private Sub Form_Load() Show Text1.Text=" " Text2.Text=" " Text2.SetFocus End Sub Private Sub Text2_KeyDown(KeyCode As Integer,Shift As Integer) Text1.Text=Text1.Text+Chr(KeyCode-4) End Sub
C.Private Sub Form_Load() Show Text1.Text=" " Text2.Text=" " Text2.SetFocus End Sub Private Sub Text2_Click(KeyCode As Integer,Shift As Integer) Text1.Text=Text1.Text+Chr(KeyCOde-4) End Sub
D.Private Sub Form_Load() Show Text1.Text=" " Text2.Text=" " Text2.SetFocus End Sub Private Sub Text2_Click(KeyCode As Integer,Shift As Integer) Text1.Text=Chr(KeyCode-4) End Sub
第7题:
According to the text, which of the following is true?
[A] the popularity of gap years results from an increasing number of charities.
[B] Prince William was working hard during his gap year.
[C] gap years are not as fashionable as they were ten years ago.
[D] a well-structured gap year is a guarantee of university success.
第8题:
In order to understand a text well, it is absolutely necessary to understand every word in the first place.()
A对
B错
第9题:
以下哪段代码不能正确创建函数show()?()
第10题:
下列哪个操作可以清除文本框对象Text1的内容()。
第11题:
Text1.text=Text.text+Text2.text
Text1.name=Text1.Name+Text2.Name
Text1.Caption=Text1.Caption+Text2.Caption
Text1.Enable=Text1.Enable+Text2.Enable
第12题:
S=Text1.Text&Text2.Text
S=Text1.Text+Text2.Text
S=Val(Text1.Text)+Text2.Text
S=Val(Text1.Text)&Text2.Text
第13题:
能清除文本框Text1中内容的语句是( )。
A、 Text = ""
B、 Text 1.Text = ""
C、 Text 1.clear
D、 Text 1.Cls
第14题:
在窗体上画两个文本框,其名称分别为Text1和Text2,然后编写如下程序:
Private Sub Form_Load()
Show
Text1.Text = ""
Text2.Text = ""
Text1.SetFocus
End Sub
Private Sub Text1_Change()
Text2.Text = Mid(Text1.Text, 8)
End Sub
程序运行后,如果在文本框Text1中输入BeijingChina,则在文本框Text2中显示的内容是( )。
A.BeijingChina
B.China
C.Beijing
D.BeijingC
第15题:
A.<%@pagemimeType="text/plain"%>
B.<%@pagecontentType="text/plain"%>
C.<%@pagepageEncoding="text/plain"%>
D.<%@pagecontentEncoding="text/plain"%>
E.<%response.setEncoding("text/plain");%>
第16题:
在窗体上画两个文本框,其名称分别为Text1和Text2,然后编写如下程序: Private Sub Form. Load() Show Text1.Text="" Text2.Text="" Text1.SetFocus End Sub Private Sub Text1_Change() Text2.Text=Mid(Text1.Text,8) End Sub 程序运行后,如果在文本框Text1中输入BeijingChina,则在文本框Text2显示的内容是______。
A. BeijingChina
B.China
C.Beijing
D.BeijingC
第17题:
【C5】
A.agreeable
B.available
C.adaptable
D.approachable
第18题:
We learn from the text that a person with heart disease has a better chance of getting well if
A.he has a pet companion
B.he has less stress of work
C.he often does mental arithmetic
D.he is taken care of by his family
第19题:
第20题:
In order to understand a text well, it is absolutely necessary to understand every word in the first place.()
第21题:
Which ensures that a JSP response is of type "text/plain"?()
第22题:
下列赋值语句正确的是().
第23题:
对
错