题目内容

● 因特网中的协议应该满足规定的层次关系,下面的选项中能正确表示协议层次和对应关系的是 (64) 。

查看答案
更多问题

(24 ) 窗体上有名称分别为 Text1 、 Text2 的 2 个文本框 , 有一个由 3 个单选按钮构成的控件数组 Option1 ,如图 2 所示 。 程序运行后 , 如果单击某个单选按钮 , 则执行 Text1 中的数值与该单选按钮所对应的运算(乘以 1 、 10 或 100 ),并将结果显示在 Text2 中,如图 3 所示。为了实现以上功能,在程序中的问号()处应填入的内容是()。
Private Sub Option1_Click(Index As Integer)
If Text1.Text<> “ “ Then
Select Case ?
Case 0
Text2.Text=Val(Text1.Text)
Case 1
Text2.Text=Val(Text1.Text)*10
Case 2
Text2.Text=Val(Text1.Text)*100
End Select
End If
End Sub
A ) Index
B ) Option1.Index
C ) Option1(Index)
D ) Option1(Index).Value

● TCP/IP (71) layer protocols provide services to the application (72) running on a computer. The application layer does not define the application itself, but rather it defines (73) that applications need—like the ability to transfer a file in the case of HTTP. In short, the application layer provides an (74) between software running on a computer and the network itself. The TCP/IP application layer includes a relatively large number of protocols, with HTTP being only one of those. The TCP/IP (75) layer consists of two main protocol options—the Transmission Control Protocol (TCP) and the User Datagram Protocol (UDP).

● 对于如下的程序流程,当采用语句覆盖法设计测试案例时,至少需要设计(34)个测试案例。
34)

A. 1
B. 2
C. 3
D. 4

● 假设职工 EMP(职工号, 姓名, 性别,进单位时间,电话),职务 JOB(职务,月薪)和部门 DEPT(部门号,部门名称,部门电话,负责人)实体集,若一个职务可以由多个职工担任,但一个职工只能担任一个职务,并属于一个部门,部门负责人是一个职工。图中EMP和JOB 之间为 (30) 联系;假设一对多联系不转换为一个独立的关系模式,那么生成的关系模式 EMP 中应加入 (31) 关系模式的主键,则关系模式 EMP 的外键为 (32) 。

答案查题题库