单选题The sl:shoppingList and sl:item tags output a shopping list to the response and are used as follows: 11. 12. 13. 14. 15. The tag handler for sl:shoppingList is ShoppingListTag and the tag handler for sl:item is ItemSimpleTag.ShoppingListTag extends Bod

题目
单选题
The sl:shoppingList and sl:item tags output a shopping list to the response and are used as follows: 11. 12. 13. 14. 15. The tag handler for sl:shoppingList is ShoppingListTag and the tag handler for sl:item is ItemSimpleTag.ShoppingListTag extends BodyTagSupport and ItemSimpleTag extends SimpleTagSupport.Which is true?()
A

ItemSimpleTag can find the enclosing instance of ShoppingListTag by calling getParent() and castingthe result to ShoppingListTag.

B

ShoppingListTag can find the child instances of ItemSimpleTag by calling super.getChildren() andcasting each to an ItemSimpleTag.

C

It is impossible for ItemSimpleTag and ShoppingListTag to find each other in a tag hierarchy becauseone is a Simple tag and the other is a Classic tag.

D

ShoppingListTag can find the child instances of ItemSimpleTag by calling getChildren() on thePageContext and casting each to an ItemSimpleTag.

E

ItemSimpleTag can find the enclosing instance of ShoppingListTag by calling findAncestorWithClass()on the PageContext and casting the result to ShoppingListTag.


相似考题
更多“The sl:shoppingList and sl:item tags output a shopping list ”相关问题
  • 第1题:

    importjava.util.*;

    publicclassNameList{

    privateListnames=newArrayList();

    publicsynchronizedvoidadd(Stringname){names.add(name);}

    publicsynchronizedvoidprintAll(){

    for(inti=0;iSystem.out.print(names.get(i)+);

    }

    }

    publicstaticvoidmain(String[]args){

    finalNameListsl=newNameList();

    for(inti=0;i<2;i++){

    newThread(){

    publicvoidruin(){

    sl.add(”A”);

    sl.add(”B”);

    sl.add(”C”);

    sl.printAll();

    }

    }.start();

    }

    }

    }

    Whichtwostatementsaretrueifthisclassiscompiledandrun?()


    参考答案:E, F

  • 第2题:

    若有定义语句:

    char}sl=‘’0K”,:It s2=”ok”;

    以下选项中,能够输出“OK”的语句是( )。

    A.if(strcmp(sl,s2)!=0)puts(s2);

    B.if(strcmp(sl,s2)!=0)puts(s1);

    C.if(strcmp(sl,s2)==1)puts(s1);

    D.if(strcmp(sl,s2)==0)puts(s1);


    正确答案:B
    strcmp(sl,s2)是字符串比较函数,比较规则是两个字符串自左向右逐个字符相比(按照ASCIl码值大小),-以第一个不相同的字符的大小作为比较结果。因为。O。<10.,所以strcmp(sl,s2)为负值,只有B选项正确。

  • 第3题:

    目前我国水利水电工程施工质量检验与评定规程采用的标准是( )。

    A.SL380-2007

    B.SL176-2007

    C.SL381-2007

    D.SL385-2007


    正确答案:B

  • 第4题:

    机油品质的字母SL/SL和CF/CG分别表示什么?


    正确答案: 1、SL/SL表示汽油引擎车使用;
    2、CF/CG表示柴油引擎车使用。

  • 第5题:

    以下单板用在155/622扩展子架上时,需要进行跳线设置的是()。

    • A、SS24SL4
    • B、SS25SL4
    • C、SS26SL4
    • D、SS27SL4

    正确答案:A

  • 第6题:

    Which built-in copies values from a list item into a record group? ()

    • A、RETRIEVE_LIST 
    • B、RETRIEVE_GROUP 
    • C、RETRIEVE_LIST_ITEM 
    • D、RETRIEVE_GROUP_FROM_LIST 
    • E、RETRIEVE_GROUP_FROM_LIST_ITEM 

    正确答案:A

  • 第7题:

    下列哪个不是SSL现有的版本()

    • A、SL1.0
    • B、SL2.0
    • C、SL3.0
    • D、SL4.0

    正确答案:D

  • 第8题:

    import java.util.*;  public class NameList {  private List names = new ArrayList();  public synchronized void add(String name) { names.add(name); }  public synchronized void printAll() {  for (int i = 0; i System.out.print(names.get(i) +“ “); }  }  public static void main(String[] args) {  final NameList sl = new NameList();  for(int i=0;i<2;i++) {  new Thread() {  public void ruin() {  sl.add(”A”);  sl.add(”B”);  sl.add(”C”);  sl.printAll();  }  }.start();  }  }  }  Which two statements are true if this class is compiled and run?()

    • A、 An exception may be thrown at runtime.
    • B、 The code may run with no output, without exiting.
    • C、The code may rum with output “A B A B C C “, then exit.
    • D、The code may ruin with output “A A A B C A B C C “, then exit.
    • E、 The code may rum with output “A B C A B C A B C “, then exit.
    • F、The code may ruin with output “A B C A A B C A B C “, then exit.

    正确答案:E,F

  • 第9题:

    单选题
    顺风顺流情况下航行,船舶对水航程SL,对地航程SG,船速VE,航时t,则()。
    A

    SG<SL<VEt

    B

    SL>VEt,且SL>SG

    C

    SG>SL>VEt

    D

    SL<VEt,且SG>SL


    正确答案: A
    解析: 暂无解析

  • 第10题:

    单选题
    The sl:shoppingList and sl:item tags output a shopping list to the response and are used as follows: 11. 12. 13. 14. 15. The tag handler for sl:shoppingList is ShoppingListTag and the tag handler for sl:item is ItemSimpleTag.ShoppingListTag extends BodyTagSupport and ItemSimpleTag extends SimpleTagSupport.Which is true?()
    A

    ItemSimpleTag can find the enclosing instance of ShoppingListTag by calling getParent() and castingthe result to ShoppingListTag.

    B

    ShoppingListTag can find the child instances of ItemSimpleTag by calling super.getChildren() andcasting each to an ItemSimpleTag.

    C

    It is impossible for ItemSimpleTag and ShoppingListTag to find each other in a tag hierarchy becauseone is a Simple tag and the other is a Classic tag.

    D

    ShoppingListTag can find the child instances of ItemSimpleTag by calling getChildren() on thePageContext and casting each to an ItemSimpleTag.

    E

    ItemSimpleTag can find the enclosing instance of ShoppingListTag by calling findAncestorWithClass()on the PageContext and casting the result to ShoppingListTag.


    正确答案: E
    解析: 暂无解析

  • 第11题:

    多选题
    import java.util.*;  public class NameList {  private List names = new ArrayList();  public synchronized void add(String name) { names.add(name); }  public synchronized void printAll() {  for (int i = 0; i System.out.print(names.get(i) +“ “); }  }  public static void main(String[] args) {  final NameList sl = new NameList();  for(int i=0;i
    A

    An exception may be thrown at runtime.

    B

    The code may run with no output, without exiting.

    C

    The code may rum with output “A B A B C C “, then exit.

    D

    The code may ruin with output “A A A B C A B C C “, then exit.

    E

    The code may rum with output “A B C A B C A B C “, then exit.

    F

    The code may ruin with output “A B C A A B C A B C “, then exit.


    正确答案: A,E
    解析: 暂无解析

  • 第12题:

    单选题
    顺风顶流情况下航行,船舶对水航程SL,对地航程SG,船速VE,航时t,则()。
    A

    SG<SL<VEt

    B

    SL>VEt,且SL>SG

    C

    SG>SL>VEt

    D

    SL<VEt,且SG>SL


    正确答案: A
    解析: 暂无解析

  • 第13题:

    下列程序段执行后,内存变量sl的值是( )。 s1="network"sl=stuff(sl,4,4,"BIOS&quo

    下列程序段执行后,内存变量sl的值是( )。

    s1="network"

    sl=stuff(sl,4,4,"BIOS")

    ? s1

    A.network

    B.netBl0S

    C.net

    D.BIOS


    正确答案:B
    B。【解析】子串替换函数STUFF(<字符表达式1>,<起始位置>,<长度>,<字符串表达式2>)的含义如下:用<字符串表达式2>值替换<字符表达式1>中由<起始位置>和<长度>指明的一个子串。

  • 第14题:

    下列程序段执行后,内存变量sl的值是( )。 s1="network" sl=stuff(sl,4,4,"BIOS") ? s1

    A.network

    B.netBl0S

    C.net

    D.BIOS


    正确答案:B
    B。【解析】子串替换函数STUFF(<字符表达式1>,<起始位置>,<长度>,<字符串表达式2>)的含义如下:用<字符串表达式2>值替换<字符表达式1>中由<起始位置>和<长度>指明的一个子串。

  • 第15题:

    If Mary()shopping this afternoon, please ask her to write a shopping list first.

    Awill go

    Bgoes 

    Cwent

    Dhas gone


    B

  • 第16题:

    能插在第1板位的单板有()

    • A、SL1
    • B、PD1
    • C、SLE
    • D、SL4

    正确答案:A,B,C

  • 第17题:

    已知xml文档包含如下内容(list为根元素): <list> <item id="0001"> <price>18</price> </item> <item id="0002"> <price>15</price> </item> <item/> <product> <item id="01"></item> </product> </list> 使用xslt进行转换时,语句<xsl:template match=”/list/item[@id]”>能够匹配到()个item元素。

    • A、3
    • B、2
    • C、1
    • D、0

    正确答案:B

  • 第18题:

    OSN3500/2500中同时支持TCM特性和复用段共享的单板是()

    • A、SSN1SL16
    • B、SSN2SL4
    • C、SSN2SL64
    • D、SSN1SEP

    正确答案:C

  • 第19题:

    按姓名字段升序排序,形成名为SL的表文件,下列命令中错误的是()。

    • A、Sort to SL on 姓名
    • B、index to SL on 姓名
    • C、Sort to SL on 姓名/A /C
    • D、Sort to SL on 姓名/A

    正确答案:B

  • 第20题:

    You work as an application developer at Certkiller .com. You have recently created a custom collection class named ShoppingList for a local supermarket. This custom class will include ShoppinItem objects that have the public properties listed below. * Name * AisleNumber * OnDiscount You are required to enable users of your class to iterate through the ShoppingList collection, and to list each product name and aisle number using the foreach statement.You need to achieve this by declaring the appropriate code.What code should you use?()

    • A、 public class ShoppingList : ICollection {// Class implementation }
    • B、 public class ShoppingList : IEnumerator, IEnumerable {// Class implementation }
    • C、 public class ShoppingList : Ilist {// Class implementation }
    • D、 public class ShoppingList : Enum {// Class implementation }

    正确答案:B

  • 第21题:

    单选题
    Which built-in copies values from a record group into a list item? ()
    A

    POPULATE_LIST 

    B

    POPULATE_GROUP 

    C

    POPULATE_LIST_ITEM 

    D

    POPULATE_LIST_FROM_GROUP 

    E

    POPULATE_LIST_ITEM_FROM_GROUP


    正确答案: D
    解析: 暂无解析

  • 第22题:

    单选题
    ou are an enterprise administrator for Cer-tech .com. The company runs Windows Server 2008 on all theservers on the network. One of the servers, Server01 has the Web Server (IIS) role installed on it. Which of the following commands would you choose to create a virtual directory on the company website www.Cer-tech .com/sl for the Sales department?()
    A

    appcmd add site /name:sl /physicalPath:c:/websites/sl

    B

    appcmd set vdir /vdir.name:sl /path:/sl /physicalPath:c:/websites/sl

    C

    appcmd add app /app.name: Cer-tech /path:/sl /physicalPath:c:/websites/sl

    D

    appcmd add vdir /app.name: Cer-tech /path:/sl /physicalPath:c:/websites/sl

    E

    None of the above


    正确答案: E
    解析: 暂无解析

  • 第23题:

    单选题
    You work as an application developer at Certkiller .com. You have recently created a custom collection class named ShoppingList for a local supermarket. This custom class will include ShoppinItem objects that have the public properties listed below. * Name * AisleNumber * OnDiscount You are required to enable users of your class to iterate through the ShoppingList collection, and to list each product name and aisle number using the foreach statement.You need to achieve this by declaring the appropriate code.What code should you use?()
    A

     public class ShoppingList : ICollection {// Class implementation }

    B

     public class ShoppingList : IEnumerator, IEnumerable {// Class implementation }

    C

     public class ShoppingList : Ilist {// Class implementation }

    D

     public class ShoppingList : Enum {// Class implementation }


    正确答案: D
    解析: 暂无解析

  • 第24题:

    单选题
    The sl:shoppingList and sl:item tags output a shopping list to the response and are used as follows: 11. 12. 13. 14. 15. The tag handler for sl:shoppingList is ShoppingListTag and the tag handler for sl:item is ItemSimpleTag.ShoppingListTag extends BodyTagSupport and ItemSimpleTag extends SimpleTagSupport.Which is true?()
    A

    ItemSimpleTag can find the enclosing instance of ShoppingListTag by calling getParent() and castingthe result to ShoppingListTag.

    B

    ShoppingListTag can find the child instances of ItemSimpleTag by calling super.getChildren() andcasting each to an ItemSimpleTag.

    C

    It is impossible for ItemSimpleTag and ShoppingListTag to find each other in a tag hierarchy becauseone is a Simple tag and the other is a Classic tag.

    D

    ShoppingListTag can find the child instances of ItemSimpleTag by calling getChildren() on thePageContext and casting each to an ItemSimpleTag.

    E

    ItemSimpleTag can find the enclosing instance of ShoppingListTag by calling findAncestorWithClass()on the PageContext and casting the result to ShoppingListTag.


    正确答案: D
    解析: 暂无解析