经济学

单选题TAG表示()A 段标记B 段目录C 数据标记D 报文标记

题目
单选题
TAG表示()
A

段标记

B

段目录

C

数据标记

D

报文标记

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

第1题:

在以下XML标记中,符合XML标记命名规则的是______。
A.<xmltag>
B.<my_tag>
C.<2tag>
D.<d tag>


答案:B
解析:
本题考查XML标记的基础知识。在XML中几乎没有预定义的标记,用户可以根据自己的需要自行定义。XML中标记的使用非常自由,用户可以用任何词语作为元素的名称,但在使用时必须遵守如下规则:XML标记必须以“<”开始,以“>”结束;XML标记名必须以字母或下划线开头,可以包含字母、数字、下划线、连字符和圆点;XML标记不能以字母xml(或XML或Xml…)开头;XML标记中不能包含空格。所以本题中只有<my_tag>符合XML标记要求。

第2题:

What is TCI?()

  • A、Tag Calling Interface
  • B、Tag Control Identifier
  • C、ToS Class Interface
  • D、Tag Control Information

正确答案:D

第3题:

在VB中,以下关于符号常量的声明正确的是 ( )A.Const TAG as StringB.Const TAG as String=&qu

在VB中,以下关于符号常量的声明正确的是 ( )

A.Const TAG as String

B.Const TAG as String="Visual Basic"

C.Public TAG as String="Visual"

D.Dim TAG as String


正确答案:B

第4题:

A custom JSP tag must be able to support an arbitrary number of attributes whose names are unknown when the tag class is designed.  Which two are true? ()

  • A、 A  element in the echo tag LTD must have the value JSP
  • B、 The echo tag handler must define the setAttribute (String key, String value) method
  • C、 The true element must appear in the echo tag TLD
  • D、 The class implementing the echo tag handler must implement the javax.sevlet.jsp.tagext.IterationTag interface
  • E、 The class implementing the echo tag handler must implement the javax.sevlet.jsp.tagext.DynamicAttributes interface

正确答案:C,E

第5题:

The tag timeout value for a cisco wireless location appliance should be set to which tag beacon rate?()

  • A、4 to 6 times the tag beaconing rate
  • B、10 to 12 times the tab beaconing rate
  • C、8 to 10 times the tag beaconing rate
  • D、6 to 8 times the tag beaconing rate

正确答案:C

第6题:

Tag文件中的tag指令可以设置哪些属性的值?


正确答案:body-content、language、import、pageEncoding 。

第7题:

The tag timeout value for a Cisco Wireless Location Appliance should be set to which tag beaconrate?()

  • A、4 to 6 times the tag beaconing rate
  • B、10 to 12 times the tab beaconing rate
  • C、8 to 10 times the tag beaconing rate
  • D、6 to 8 times the tag beaconing rate

正确答案:C

第8题:

阅读以下说明和C语言函数,将应填入(n)处的语句写在对应栏内。

【说明】

设串s和串t采用顺序存储结构,编写函数实现串s和串t的比较操作,要求比较结果包括大于、小于和等于3种情况。

【函数】

int StrCompare(SStrType s, SStrType t)

{

int n=s.length, m=(1), i,j,tag;

i=0; j=0;

while((2))

{

if((3))

{

i++;

j++;

}

else if(s.str[i]>t.str[j])

{

tag=1;

return tag;

}

else

{

tag=-1;

return tag;

}

}

if(n==m)

tag=0;

else if((4))

tag=1;

else if(n<m)

tag=-1;

(5);

}


正确答案:(1)t.length (2)in&&jm (3)s.str[i]==t.str[j] (4)n>m (5)retrun tag
(1)t.length (2)in&&jm (3)s.str[i]==t.str[j] (4)n>m (5)retrun tag 解析:本题考查用C语言程序实现对串的操作。
题目要求对顺序存储的串s和串t进行比较,且比较结果可能是大于、小于和等于3种情况。对串的操作是考试中容易出现的内容,串是指由任意个字符构成的有限序列。要判断两个串的大小是通过串中元素的比较来实现的。
第(1)空是对刚声明的变量进行赋初值操作,前面的n中存放了串s的长度,而对于串t的长度在程序中一直没求过,而是用m来表示,那么此空是将串t的长度存放到变量m中。因此,此空答案为t.length。
第(2)空是循环的判断条件,从程序不难看出此循环的作用是实现对串s和串t的比较,在进行比较串时,需要对串中逐个元素进行比较,只要串中还有元素,比较就需继续,而判断串中是否还有元素是通过串的长度来实现的。两个串中元素的长度分别存放在变量n和变量m中,因此,此空答案为in&&jm。
第(3)空是条件判断语句的条件,如果这个条件成立,则两个串中的元素都往后移动一个,再结合下面的程序,不难看出此条件的作用是判断当前两个元素是否相等,如果相等,则执行下面语句。因此,此空答案为s.str[i]==t.str[j]。
第(4)空也是条件判断语句的条件,题目要求比较结果可能是大于、小于和等于三种情况,程序中已经考虑了其中小于和等于的情况,那么此空应该是考虑大于的情况,因此,此空答案为n>m。
第(5)空在程序的最后,题目中要求函数能返回运算的结果,而根据程序的内容,我们知道结果存放在变量tag中,因此,此空答案为return tag。

第9题:

You are creating a content management system (CMS) with a web application front-end. The JSP thatdisplays a given document in the CMS has the following general structure: 1. <%-- tag declaration --%> 2.  ... 11. ...  ... ... 99.  The citation tag must store information in the document tag for the document tag to generate a referencesection at the end of the generated web page. The document tag handler follows the Classic tag model andthe citation tag handler follows the Simple tag model. Furthermore, the citation tag could also be embeddedin other custom tags that could have either the Classic or Simple tag handler model. Which tag handlermethod allows the citation tag to access the document tag?()

  • A、public void doTag() {JspTag docTag = findAncestorWithClass(this, DocumentTag.class); ((DocumentTag)docTag).addCitation(this.docID);}
  • B、public void doStartTag() {JspTag docTag = findAncestorWithClass(this, DocumentTag.class); ((DocumentTag)docTag).addCitation(this.docID);}
  • C、public void doTag() {. Tag docTag = findAncestor(this, DocumentTag.class); . ((DocumentTag)docTag).addCitation(this.docID);. }
  • D、public void doStartTag() {. Tag docTag = findAncestor(this, DocumentTag.class); . ((DocumentTag)docTag).addCitation(this.docID);. }

正确答案:A

第10题:

Given the Tag:   Assuming the tag referenced by my Tags: get Advice uses the Classic event model,  which is true?()

  • A、 The do After Body method is called.
  • B、 The doEnd Tag method is NOT called.
  • C、 The type attribute may be specified in the TLD
  • D、 The do Start Tag Method must always return SKIP_BODY.
  • E、 The TLD for this tag must NOT include a  tag.

正确答案:C

更多相关问题