易搜题 > 资格证大类 > 计算机编程 > 问题详情
问题详情

Which method in the Thread class is used to create and launch a new thread of execution?()

A、 Run();

B、 Start();

C、 Execute();

D、 Run(Runnable r);

E、 Start(Runnable r);

F、 Execute(Thread t);

未找到的试题在搜索页框底部可快速提交,在会员中心"提交的题"查看可解决状态。 收藏该题
查看答案

相关问题推荐

  • What is the result?()

    A、 b,3

    B、 b,8

    C、 b,13

    D、 f,3

    E、 f,8

    F、 f,13

    G、 Compilation fails.

    H、 An exception is thrown at runtime.

  • What is the result?()

    A、 Compilation of class A fails.

    B、 Line 28 prints the value 3 to System.out.

    C、 Line 28 prints the value 1 to System.out.

    D、 A runtime error occurs when line 25 executes.

    E、 Compilation fails because of an error on line 28.

  • Given that the current directory is empty, and that the user has read and write privileges to the current directory, and the following: Which statement is true?()

    A、 Compilation fails.

    B、 Nothing is added to the file system.

    C、 Only a new file is created on the file system.

    D、 Only a new directory is created on the file system.

    E、 Both a new file and a new directory are created on the file system.

  • 10. interface Foo { int bar(); }  11. public class Sprite {  12. public int fubar( Foo foo) { return foo.bar(); }  13. public void testFoo() {  14. fubar(  15. // insert code here  16.);  17. }  18. }  Which code, inserted at line 15, allows the class Sprite to compile?() 

    A、 Foo { public int bar() { return 1; } }

    B、 new Foo { public int bar() { return 1; } }

    C、 newFoo() { public int bar(){return 1; } }

    D、 new class Foo { public int bar() { return 1; } }

  • Which statements about Java code security are true?() 

    A

     The bytecode verifier loads all classes needed for the execution of a program.

    B

     Executing code is performed by the runtime interpreter.

    C

     At runtime the bytecodes are loaded, checked and run in an interpreter.

    D

     The class loader adds security by separating the namespaces for the classes of the local file system from those imported from network sources.

联系客服 会员中心
TOP