当前分类: Java认证考试
问题:下列哪项是String的字面量?() A、“Hello”B、‘world’C、/u2345D、new String(“good”)...
查看答案
问题:A developer is d...
问题:下列关于继承优点的叙述正确的是哪几项?() A、可以创建更为特殊的类型B、消除重复代码C、执行效率高D、便于维护...
问题:下列关于标识符的叙述正确的是哪项?() ...
问题:You are building your own layout mechanism by including dynamic content for the page’s header and footersections. The footer is always static, but the header generates the tag that requires the page name tobe specified dynamically when the header is impo...
问题:能够遍历泛型List〈Integer〉 al中的所有...
问题:Which of the f...
问题:Java中方法绑定有哪些形式?()A、编译时刻绑定B、运行时刻绑定C、静态绑定D、私有绑定...
问题:现有: public class Tester { public static void main (String[] args) { intx-5; Integer xl=x; Integer x2=x; int x3=new Integer(5); system..ut.print(x1.equals(x)); system..ut.print(xl==x); system..ut.print(x2.equals(xl)); system..ut.p...
问题:Given that a scoped attribute cart exists only in a user’s session, which two, taken independently, ensure the scoped attribute cart no longer exists?()A、 ${cart = null} B、 c:remove var="cart" / C、 c:remove var="${cart}" / D、 c:remove var="cart" scope="se...
问题:Under what two ...
问题:public class Foo { public void main (String [] args) { system.out.printIn(“Hello World.”); } } What is the result?() A、 An exception is thrown.B、 The code does no compile.C、 “Hello World.” Is printed to the terminal.D、 The program exits without prin...
问题:以下有关接口的叙述错误的是哪项?() ...
问题:下面有关java threadlocal说法正确的有()。...
问题:现有: 1. class Book { 2. private final void read() { System.out.print("book "); } 3. } 4. class Page extends Book { 5. public static void main(String [] args) { 6. // insert code here 7. } 8. private final void read() { Syst...
问题:1. class SuperFoo&ens...
问题:public classYippee{ public static void main(String[]args){ for(intx=1;xSystem.out.print(args[x]+""); } } } and two separate command line invocations:j avaYippee javaYippee1234 What is the result?()A、No output is produced. 123B、No output is produced. 234C、...
问题:Which statements concerning the event model of the AWT are true?() A、At most one listener of each type can be registered with a component.B、Mouse motion listeners can be registered on a List instance.C、There exists a class named ContainerEvent in package...
问题:You want to li...
问题:HTTP中的POST和GET在下列哪些方面有区别()。...