软考初级

正确描述创建一个段落的句法是______。A.Paragraph TextB.Paragraph TextC.Par正确描述创建一个段落的句法是______。A.<P>Paragraph Text</P>B.<L>Paragraph Text</L>C.<PR>Paragraph Text</PR>D.<PRG>Paragraph Text</PRG>

题目
正确描述创建一个段落的句法是______。A.

Paragraph Text</P>B.Paragraph Text</L>C.Par

正确描述创建一个段落的句法是______。

A.<P>Paragraph Text</P>

B.<L>Paragraph Text</L>

C.<PR>Paragraph Text</PR>

D.<PRG>Paragraph Text</PRG>

如果没有搜索结果,请直接 联系老师 获取答案。
如果没有搜索结果,请直接 联系老师 获取答案。
相似问题和答案

第1题:

窗体上有两个文本框Text1、Text2以及一个命令按钮Command1,编写下列程序: Dim y As IntegerPrivate Sub Command1_Click()Dim x As Integer x=2 Text1.Text=p2(p1(x), y) Text2.Text=pi(x)End SubPrivate Function p1(x As Integer) As Integer x=x+y:y=x+y p1=x+yEnd FunctionPrivate Function p2(x As Integer, y As Integer) As Integer p2=2*x+yEnd Function 当单击1次和单击2次命令按钮后,文本框Text1和Text2内的值分别为( )。

A.2 4 2 4

B.2 4 4 8

C.4 4 8 8

D.10 10 58 58


正确答案:D
解析:程序中y为窗体变量,其作用范围为整个窗体中的所有子过程,要注意区分与作为p1、p2形式参数的y变量。窗体变量y能够记录程序运行中对其的改变,第1次调用p1,y值为2;第2次调用p1,y值为6;第3次调用p1,y值为14;第4次调用p1,y值为36;所以计算出的函数p1、p2的返回值也会不同。

第2题:

窗体上有两个文本框Text1、Text2以及一个命令按钮Command1,编写下列程序: DimY As Integer Private Sub Command1 Click( ) Dim X As Integer x=2 Text1.Text=p2(p1(X),Y) Text2.Text=p1(x) End Sub Private Function p1(X As Integer)As Integer x+x+v: y=x+y p1=x+y End Function Private Function p2(X As Integer,Y As Integer)As Integer p2=2*x+y End Function 当单击1次和单击2次命令按钮后,文本框Text1和Text2内的值分别为( )。

A.2 4 2 4

B.2 4 4 8

C.4 4 8 8

D.10 10 58 58


正确答案:D
D。【解析】程序中Y为窗体变量,其作用范围为整个窗体中的所有子过程,要注意区分作为p1、p2形式参数的Y变量。窗体变量Y能够记录程序运行中对其的改变,第1次调用p1,Y值为2;第2次调用p1,Y值为6;第3次调用p1,y值为14;第4次调用p1,y值为36;所以计算出的函数p1、p2的返回值也会不同。

第3题:

正确描述创建一个一级居中标题的句法是______。A.Heading Text</HO>B.

正确描述创建一个一级居中标题的句法是______。

A.<HO ALIGN=CENTER>Heading Text</HO>

B.<H1 ALIGN=CENTER>Heading Text</H1>

C.<H ALIGN=CENTER>Heading Text</H>

D.<HT ALIGN=CENTER>Heading Text</HT>


正确答案:B

第4题:

Some teachers teach reading by introducing new vocabulary and structure first and thengoing over the text sentence by sentence and paragraph by paragraph with the students. This way is_________known as

A.top-down model
B.bottom-up model
C.interactive model
D.integrative model

答案:B
解析:
考查阅读教学模式。就阅读教学的模式来说,主要有三种:自上而下的模式(top.Down model),自下而上的模式(bottom.up model)和交互补偿模式(interactive model)。在自下而上的模式中,学生从字母,到单词,到句子,逐个进行解码从而理解全文。

第5题:

Which of the following sentences from the text BEST indicates that the teacher is very considerate?

A. In her calm,motherly voice she said,“By the end of winter,…”(Paragraph 2)

B. With the grace that only experience can bring,she struggled to…(Paragraph 4)

C. …. she still managed to look both helpful and interested. (Paragraph 4)

D. …,she managed to act as though I wasn’t an annoying little girl.(Paragraph 4)


正确答案:D

第6题:

窗体上有两个名称分别为Text1、Text2的文本框,一个名称为Command1的命令按钮。设有如下的类型声明: Type Person name As String*8 major As String*20 End Type 当单击“Command1”按钮时,能够正确地把数据写入文件的程序段是______。

A.Private Sub Command1_Click() Dim p As Person p. name=Text1. Text p. major=Text2. Text Open"C:\data. dat" For Random As #1 Put #1, 1, p Close #1 End Sub

B.Private Sub Command1_Click() Dim p As Person p. name=Text1.Text p. major=Text2. Text Open"C:\data. dat" For Random As #1 Get #1, 1, p Close #1 End Sub

C.Private Sub Command1_Click() Dis p As Person p. name=Text1. Text p. major=Text2. Text open "C:\data. dat" For Random As #1 Len=Len(p) Put #1, 1, p Close #1 End Sub

D.Private Sub Command1_Click() Dim p As Person p. name=Text1. Text p. major=Text2. Text Open "C:\data. dat" For Random As #1=Len(p) Get #1, 1, p Close #1 End Sub


正确答案:C
解析:以随机方式打开的随机文件的写操作是通过Put语句实现的,其格式为:Put#文件号,[记录号],变量这里的“变量”是除了对象变量和数组变量之外的任何变量(包括含有单个数组元素的下标变量)。Put语句把“变量”的内容写入由“文件号”所指定的磁盘文件中。

第7题:

以下有关样式表项的定义中,正确的是:()。

A、P{font-size=24px,text-align=center}

B、P{font-size:24px,text-align:center}

C、P{font-size=24px;text-align=center}

D、P{font-size:24px;text-align:center}


答案:D

第8题:

窗体上有两个文本框Text1、Text2以及一个命令按钮Command1,编写下列程序:

DimY As Integer

Private Sub Command1 Click( )

Dim X As Integer

x=2

Text1.Text=p2(p1(X),Y)

Text2.Text=p1(x)

End Sub

Private Function p1(X As Integer)As Integer

x+x+v: y=x+y

p1=x+y

End Function

Private Function p2(X As Integer,Y As Integer)As Integer

p2=2*x+y

End Function

当单击1次和单击2次命令按钮后,文本框Text1和Text2内的值分别为( )。

A.2 4

2 4

B.2 4

4 8

C.4 4

8 8

D.10 10

58 58


正确答案:D
D。【解析】程序中Y为窗体变量,其作用范围为整个窗体中的所有子过程,要注意区分作为p1、p2形式参数的Y变量。窗体变量Y能够记录程序运行中对其的改变,第1次调用p1,Y值为2;第2次调用p1,Y值为6;第3次调用p1,y值为14;第4次调用p1,y值为36;所以计算出的函数p1、p2的返回值也会不同。

第9题:

Some teachers teach reading by introducing new vocabulary and structure first and then going over the text sentence by sentence and paragraph by paragraph with the students. This way is known as__________.

A.top-down model
B.bottom-up model
C.interactive model
D.integrative model

答案:B
解析:
考查阅读教学模式。就阅读教学的模式来说,主要有三种:自上而下的模式(top-down model),自下而上的模式(bottom—up model)和交互补偿模式(interactive model)。在自下而上的模式中,学生从字母,到单词,到句子,逐个进行解码从而理解全文。?

第10题:

已知:〈p〉原价:120元〈/p〉为p标签中的文本添加下划线的代码是p{text-decoration:underline;}下列关于文本装饰text-decoration代码书写正确的是()。

  • A、p{text-decoration:underline;}
  • B、p{text-decoration:normal;}
  • C、p{text-decoration:overline;}
  • D、p{text-decoration:line-through;}

正确答案:A,C,D

更多相关问题