【单选题】以下数组定义语句中,错误的是( )。
A.
Static arr1(10) As Integer
D.
Dim arr4(0 To 5,1 To 3) As Integer
【单选题】According to structural engineers in California, what is important for an earthquake-resistant building?
A.
Rigid frames so that buildings do not move in earthquakes.
C.
Buildings designed to move and sway.
【简答题】用下列语句定义的数组元素个数分别为 。 Dim arr1(6) As IntegerDim arr2(2, -5 To 5) As SingleDim arr3(-5 To 5, -1 To 4)A. 6、33、55 B. 6、22、65 C. 7、20、50 D. 7、33、66
【单选题】Q345碳当量为0.393%,其冷裂纹倾向___?
【单选题】用下列语句定义的数组元素个数分别为 。 Dim arr1(6) As Integer Dim arr2(2, -5 To 5) As Single Dim arr3(-5 To 5, -1 To 4)
【单选题】数组Dim arr(-1 to 4,2 to 4,3) 的元素个数是 。
【单选题】五保户供养的实际标准,都( )当地村民的一般生活水平。
【单选题】执行下面程序段后,数组元素 arr(4) 的值为( )。 Dim arr(1 To 10) As Integer Dim i% For i=1 To 10 If i<=2 Then Arr(i)=1 Else Arr(i)=arr(i-1)+arr(i-2) End If Next i
【单选题】如果有声明Option base 1 dim arr(-8 to -2,4),则该数组共有_____个元素。