What does the FIND_MENU_ITEM built-in function return?()

题目
单选题
What does the FIND_MENU_ITEM built-in function return?()
A

The internal ID of a menu. 

B

The internal ID of a menu item. 

C

The internal ID of a menu module. 

D

The internal ID of form module to which the menu is attached.

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

第1题:

函数过程F1的功能是:如果参数b为奇数,则返回值为1,否则返回值为0。以下能正确实现上述功能的代码的是______。

A. Function Fl(b As Integer) If b Mod 2=0 Then Return 0 Else Return 1 End If End Function

B.Function Fl(b As Integer) If b Mod 2=0 Then F1=0 Else F1=1 End If End Function

C.Function F1(b As Integer) If b Mod 2=0 Then F1=1 Else F1=0 End If End Function

D.Function Fl(b As Integer) If b Mod 2<>Then Return 0 Else Return 1 End If End Function


正确答案:B
解析:Visual Basic程序中不能使用Return语句来返回一个函数的值。要返回一个函数的值,需要把这个值赋值给函数名。所以本题中AD选项错误,而题目中,当b为奇数时返回0,所以本题答案是B。

第2题:

下面4个CT函数中是用来判断用户输入的数是否为奇数的,是奇数的返回1,否则返回0,其中正确的是

A.Function CT(ByVal a As Integer) If a Mod 2=0 Then Return 0 ElSe Return 1 End if End Function

B.Function CT(ByVal a As Integer) If a Mod 2=0 Then CT=0 Else CT=1 End if End Function

C.Function CT(ByVal a As Integer) If a Mod 2=0 Then CT=1 Else CT=0 End if End Function

D.Function CT(ByVal a As Integer) If a Mod 2=0 Then Return 1 Else Return 0 End if End Function


正确答案:B
解析:在此题中考查了函数的定义,及其有关操作,对于奇数的判断是用取模来判断的,奇数不能被2争取,或者说奇数除以2后的余数是1,而偶数能被2整数,即偶数除以2后的余数是0,因此判断语句应为IfaMod2=0ThenCT=0ElseCT=1;即当a为偶数时返回值是0,a为奇数时返回值是1,符合题意。

第3题:

After reading the article, one would refrain from concluding that_________

A. optimism reigns in regard to getting PhD dropouts to return to their pursuit of the degree

B. a PhD dropout, by and large, does not have what it takes to. learn the degree

C. colleges and universities employ a substantial number of PhD dropouts

D. the PhD' s are not earning what they deserve in nonacademic .positions


正确答案:A
通过第四段“The results of our research,”Dr.Tucker concluded,“did not support these opinions.”l.Lack of motivation was the principal reason for dropping out.2.Most dropouts went as far in their doctoral program as was consistent with their levels of ability or their specialities.3.Most dropouts are now engaged in work consistent with their education and motivation.及最后一段的As to the possibility of getting dropouts back on campus,the outlook was glum.可以推知A项正确。B、C两项文中没提到。D项本身错误。

第4题:

Which of the following may illustrate the difference between "competence" and__________ "performance"?

A.What a person "knows" and what he/she "does".
B.What a person "can do" and what he/she "does".
C.What a person "does" and what he/she "knows".
D.What a person "does" and what he/she "can do".

答案:A
解析:
考查语言学知识。competence“语言能力”,指语言使用者对于语言规则系统的潜在意识;performance“语言运用”,指在具体场景中语言的实际运用,二者对应的分别为“knows”和“does”。故选A。

第5题:

In no case ______ to function as a document of title.

A.a bill of lading does not fail

B.does not a bill of lading fail

C.does a bill of lading fail

D.a bill of lading does fail


正确答案:C

第6题:

What does the following function return?

char foo(void)

{

unsigned int a = 6;

iht b = -20;

char c;

(a+b > 6) ? (c=1): (c=0);

return c;

}


正确答案:
 

第7题:

有如下程序:

#include<iostream>

usingnamespacestd;

voidfunction2(intn);

voidfunctionl(intn):{

if(n<=0)return;

function2(n-2);

}

voidfunction2(intn){

if(n<=O)return;

functionl(n-1);

}

intmain(){

functionl(5);

return0;

}

下列关于程序运行情况的描述中,正确的是( )。

A.functionl运行1次,function2运行2次

B.functionl运行2次,function2运行l次

C.functionl运行2次,function2运行3次

D.functionl运行2次,function2运行2次


正确答案:D
D。【解析】函数执行过程为:functionl(5),function2(3),functionl(2),function2(0)return。

第8题:

How does a process description function?

A. It describes what an object is like.

B. It explains how something works.

C. It explains how to perform. a process.


参考答案:B

第9题:

What kind of curriculum evaluation does the new curriculum reform advocate?

A.Basing on the process, promoting the development.
B.Emphasis on new ways of learning.
C.Emphasis on the function of selection.
D.Emphasis on students' learning.

答案:A
解析:
考查课程评价。新一轮课程改革倡导“立足过程,促进发展”的课程评价,这不仅仅是评价体系的变革,更重要的是评价理念、评价方法与手段以及评价实施过程的转变。

第10题:


What does the writer mean by saying“it is a maxim more often repeated than observed”in Line 3 to 4,Paragraph 1?( )

A.The maxim functions well in all cases
B.The maxim does not function at all
C.The maxim functions more at surface value
D.The maxim does not work much in reality

答案:D
解析:

更多相关问题