Questions 11 to 18 are based on the conversation you have just heard
A. She wants a copy of the article.
B. She doesn’t want the copy because it costs too much.
C. The article is much too difficult to understand.
D. It doesn’t matter to her.
查看答案
Passage OneQuestions 26 to 28 are based on the passage you have just heard.
A. In 1938.
B. In 1955.
C. In 1946.
During the World War II.
为了保护自己的免受非安全软件的危害,IE通常将Internet划分成______、本地Intranet区域、可信站点区域和受限站点区域。
平面对V面的最大斜度线与平面上的正平线______。
某人编写了一个能够返回数组a中10个数中最大数的函数过程,代码如下: Function MaxValue(a()As integer)As Integer Dim max% max=1 For k=2 To 10 If a(k)>a(max)Then max=k End If Next k MaxValue=max End Function 程序运行时,发现函数过程的返回值是错的,需要修改,下面的修改方案中正确的是 ( )。
A. 语句max=1应改为max=a(1)
B. 语句For k=2 To 10应改为For k=1 To 10
C. If语句中的条件a(k)>a(max)应改为a(k)>max
D. 语句MaxValue=max应改为MaxValue=a(max)