What is the Flush Input Buffer setting used for in the Input

题目
单选题
What is the Flush Input Buffer setting used for in the Input tab of the Menu step?()
A

to release memory held by the prompt variable  

B

to clear the value of the menu choice before the prompt is played  

C

to prevent the previous value from being used again on the menu choice  

D

to prevent the caller from entering a menu choice before the prompt has played

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

第1题:

What are the characteristics of the process of documenting the layers of an existing network? ()

A. begins with gathering organizational input that may be inaccurate

B. begins with gathering organizational input that does not need to be supplemented by a network audit

C. requires a network audit to support some upgrade decisions

D. requires a network audit to support any network restructuring

E. provides reliable input for verifying network consistency

F. does not provide reliable input for designing changes


参考答案:A, D, E

第2题:

在页面中看不见的表单元素是那种?()

  • A、<input type="password"></input> 
  • B、<input type="radio"></input>
  • C、<input type="hidden"></input> 
  • D、<input type="reset"></input>

正确答案:C

第3题:

读数据文件的操作可以通过下列 ______ 语句来实现。

A.Input#和Get#

B.Read和Line Input#

C.Get#和Line Input#

D.Line Input# 和Input#


正确答案:D
解析:Get#语句把由“文件号”所指定的磁盘文件中的数据读到“变量”中。Visual Basic中没有Read语句。读数据文件的操作由Input#语句、Line Input#语句和Input()函数来实现。

第4题:

以下语法格式正确的是()。

  • A、input:disabled{background:red;}
  • B、input:enable{background:green;}
  • C、input:checked{background:green;}
  • D、input:selected{background:red;}

正确答案:A,C

第5题:

增加表单的图像域的HTML代码是()

  • A、<input type=submit>
  • B、<input type=iamge> 
  • C、<input type=radio> 
  • D、<input type=checkbox>

正确答案:B

第6题:

逻辑覆盖法是设计白盒测试用例的主要方法之一,通过对程序逻辑结构的遍历实现程序的覆盖。针对以下由C语言编写的程序,按要求回答问题。
int XOR(char * filename,unsigned long key){ FILE * input = NULL , *output =NULL; //i char * outfilename = NULL; int len = strlen(filename); unsigned char buffer; if( (filename[len-2] == '.')&& (filename[len-1] == 'c') ) { //2,3 outfilename = new char[len+1]; //4 strcpy(outfilename, filename); outfilename[len-2] = '\0'; } else{ //5 outfilename = new char[len+5]; strcpy(outfilename, filename); strncat(outfilename,".c",2); } input =fopen(filename,"rb"); if( input == NULL) { //6 cout << "Error opening file " << filename << endl; //7 delete [] outfilename; outfilename = NULL; return 1; } output =fopen(outfilename,"wb"); if( output == NULL ) { //8 cout << "Error creating output file " << outfilename << endl; //9 delete [] outfilename; outfilename = NULL; return 1; } while( ! feof(input) ) { //10 if(fread(&buffer,sizeof(unsigned char),1,input) != 1 ) { //11 if( ! feof(input) ) { //12 delete [] outfilename; //13 outfilename = NULL; fclose(input); fclose(output); return 1; } } else{ //14 buffer ^= key; fwrite(&buffer,sizeof(unsigned char),1,output); } } fclose(input); //15 fclose(output); delete [] outfilename; return 0; }
请给出满足100%DC(判定覆盖)所需的逻辑条件。


答案:
解析:


本题考查白盒测试技术的应用。
1.本问题考查白盒测试用例设计方法:判定覆盖法。
判定覆盖指设计足够的测试用例,使得被测程序中每个判定表达式至少获得一次"真"值和"假"值,从而使程序的每一个分支至少都通过一次。本题中程序有6个判定,
所以满足判定覆盖一共需要12个逻辑条件。

第7题:

增加表单的单选框的HTML代码是()

  • A、<input type=submit>
  • B、<input type=iamge>
  • C、<input type=radio>
  • D、<input type=checkbox>

正确答案:C

第8题:

在页面中看不见的表单元素是那种?()

A.<input type="password"></input>

B.<input type="radio"></input>

C.<input type="hidden"></input>

D.<input type="reset"></input>


参考答案:C

第9题:

以下表示获取焦点的,语法格式正确的是()。

  • A、input:active{background:red;}
  • B、input:hover{backgroungd:reen;}
  • C、input:focus{background:orange;}
  • D、input:link{background:yellow;}

正确答案:C

第10题:

In an ACL cause, what’s the function of log or log-input keyword at the end?


正确答案: Enable logging information of packets which match the ACL entriy with log or log-input keyword.
Log
Log is an optional specification that turns on informational logging. The logging information the router generate includes the access list number or name, source and destination address, protocol, upper layer port number, and number of packets logged.
Log-input
Log-input adds the input interface and source MAC address or virtual circuit number to the log output.

更多相关问题