Tìm kiếm:
TRANG NHÀ
Giới thiệu VNEDU.ORG
Điều khoản và bản quyền
Liên lạc VNEDU
TRẮC NGHIỆM TRỰC TUYẾN
---Công Cụ:---
Soạn Biểu thức
Bảng màu HTML
Ký hiệu đặc biệt 01
Ký hiệu đặc biệt 02
Ký hiệu đặc biệt 03
Ký hiệu đặc biệt 04
Ký hiệu đặc biệt 05
Ký hiệu đặc biệt 06
Ký hiệu đặc biệt 07
Ký hiệu đặc biệt [Toán]
Tin Học   ||  Căn Bản    Văn Phòng    Hệ Thống - Mạng    Phần Mềm Ứng Dụng    Kỹ thuật số    Lập trình    SQL  

Trắc Nghiệm Java - Bài 26
Ngày làm bài: Hôm nay lúc 05:32:29 (Server time)
Số câu hỏi: 10.   Tổng điểm: 10
Yêu cầu hoàn thành: 60 phút.
Thời gian còn lại: 
Cỡ chữ câu hỏi:  Cỡ chữ đáp án:


1-
Which method registers a thread in a thread scheduler?
  A - 
run();
  B - 
construct();
  C - 
start();
  D - 
register();
2-
Assume the following method is properly synchronized and called from a thread A on an object B:
wait(2000);
After calling this method, when will the thread A become a candidate to get another turn at the CPU?
  A - 
After thread A is notified, or after two seconds.
  B - 
After the lock on B is released, or after two seconds.
  C - 
Two seconds after thread A is notified.
  D - 
Two seconds after lock B is released.
3-
Which of the following will not directly cause a thread to stop?
  A - 
notify()
  B - 
wait()
  C - 
InputStream access
  D - 
sleep()
4-
Which class or interface defines the wait(), notify(),and notifyAll() methods?
  A - 
Class
  B - 
Runnable
  C - 
Thread
  D - 
Object
5-
public class MyRunnable implements Runnable 
{
    public void run() 
    {
        // some code here
    }
}
which of these will create and start this thread?
  A - 
new Runnable(MyRunnable).start();
  B - 
new Thread(MyRunnable).run();
  C - 
new Thread(new MyRunnable()).start();
  D - 
new MyRunnable().start();
6-
What will be the output of the program?
class MyThread extends Thread 
{
    MyThread() 
    {
        System.out.print(" MyThread");
    }
    public void run() 
    {
        System.out.print(" bar");
    }
    public void run(String s) 
    {
        System.out.println(" baz");
    }
}
public class TestThreads 
{
    public static void main (String [] args) 
    {
        Thread t = new MyThread() 
        {
            public void run() 
            {
                System.out.println(" foo");
            }
        };
        t.start();
    }
}

  A - 
foo
  B - 
MyThread foo
  C - 
MyThread bar
  D - 
foo bar
7-
What will be the output of the program?
class MyThread extends Thread 
{
    public static void main(String [] args) 
    {
        MyThread t = new MyThread();
        t.start();
        System.out.print("one. ");
        t.start();
        System.out.print("two. ");
    }
    public void run() 
    {
        System.out.print("Thread ");
    }
}

  A - 
Compilation fails
  B - 
An exception occurs at runtime.
  C - 
It prints "Thread one. Thread two."
  D - 
The output cannot be determined.
8-
What will be the output of the program?
class MyThread extends Thread 
{ 
    MyThread() {} 
    MyThread(Runnable r) {super(r); } 
    public void run() 
    { 
        System.out.print("Inside Thread ");
    } 
} 
class MyRunnable implements Runnable 
{ 
    public void run() 
    { 
        System.out.print(" Inside Runnable"); 
    } 
} 
class Test 
{  
    public static void main(String[] args) 
    { 
        new MyThread().start(); 
        new MyThread(new MyRunnable()).start(); 
    } 
}

  A - 
Prints "Inside Thread Inside Thread"
  B - 
Prints "Inside Thread Inside Runnable"
  C - 
Does not compile
  D - 
Throws exception at runtime
9-
What will be the output of the program?
class s1 implements Runnable 
{ 
    int x = 0, y = 0; 
    int addX() {x++; return x;} 
    int addY() {y++; return y;} 
    public void run() { 
    for(int i = 0; i < 10; i++) 
        System.out.println(addX() + " " + addY()); 
} 
    public static void main(String args[]) 
    { 
        s1 run1 = new s1(); 
        s1 run2 = new s1(); 
        Thread t1 = new Thread(run1); 
        Thread t2 = new Thread(run2); 
        t1.start(); 
        t2.start(); 
    } 
}

  A - 
Compile time Error: There is no start() method
  B - 
Will print in this order: 1 1 2 2 3 3 4 4 5 5...
  C - 
Will print but not exactly in an order (e.g: 1 1 2 2 1 1 3 3...)
  D - 
Will print in this order: 1 2 3 4 5 6... 1 2 3 4 5 6...
10-
What will be the output of the program?
public class Q126 implements Runnable 
{ 
    private int x; 
    private int y; 

    public static void main(String [] args) 
    { 
        Q126 that = new Q126(); 
        (new Thread(that)).start( ); /* Line 8 */
        (new Thread(that)).start( ); /* Line 9 */
    } 
    public synchronized void run( ) /* Line 11 */
    { 
        for (;;) /* Line 13 */
        { 
            x++; 
            y++; 
            System.out.println("x = " + x + "y = " + y); 
        } 
    } 
}

  A - 
An error at line 11 causes compilation to fail
  B - 
Errors at lines 8 and 9 cause compilation to fail.
  C - 
The program prints pairs of values for x and y that might not always be the same on the same line (for example, "x=2, y=1")
  D - 
The program prints pairs of values for x and y that are always the same on the same line (for example, "x=1, y=1". In addition, each value appears once (for example, "x=1, y=1" followed by "x=2, y=2")
 
[Người đăng: Thành Lãm - ST]
Ghé thăm Kênh của Vị Sư "hai lần chết đi sống lại"
Tu Si Chau Soc Thon

https://www.youtube.com/channel/UCoyC9WTTVR-M3qpTKKEXGnQ

Chau Soc Thon Official Channel


Phong Bảo Official
Phong Bao Official
Xem Nhiều nhất
Trắc Nghiệm Pascal - Bài 20
Trắc Nghiệm ASP.NET - Bài 12
Trắc Nghiệm Ngôn Ngữ Lập Trình C - Bài 16
Trắc Nghiệm ASP.NET - Bài 01
Trắc Nghiệm ASP.NET - Bài 03
Trắc nghiệm C++ - Bài 18
Trắc Nghiệm C# - Bài 53
Trắc Nghiệm ASP.NET - Bài 02
Trắc Nghiệm C# - Bài 42
Trắc Nghiệm Java - Bài 01
Trắc Nghiệm ASP.NET - Bài 04
Trắc Nghiệm Pascal - Bài 22
Trắc Nghiệm ASP.NET - Bài 13
Trắc Nghiệm ASP.NET - Bài 09
Trắc Nghiệm ASP.NET - Bài 08
Trắc nghiệm PHP - Bài 01
Trắc Nghiệm ASP.NET - Bài 06
Trắc Nghiệm ASP.NET - Bài 11
Trắc Nghiệm ASP.NET - Bài 05
Trắc Nghiệm ASP.NET - Bài 23
Đề Xuất
Trắc Nghiệm Thiết Kế Web (English) - Bài 42
Trắc nghiệm PHP - Bài 01
Trắc Nghiệm ASP.NET (English) - Bài 04
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 33
Trắc nghiệm Linux - Bài 43
Trắc Nghiệm Visual Foxpro - Bài 04
Trắc Nghiệm Java - Bài 25
Trắc Nghiệm Java - Bài 29
Trắc Nghiệm Ngôn Ngữ Lập Trình C - Bài 07
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 49
Trắc Nghiệm Visual Foxpro - Bài 06
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 50
Trắc Nghiệm Ngôn Ngữ Lập Trình C - Bài 17
Trắc Nghiệm C Sharp - Bài 29
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 11
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 42
Trắc Nghiệm Thiết Kế Web - Bài 08
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 26
Trắc nghiệm XML - Bài 08
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 46
Phát triển hệ thống: TRƯƠNG HỮU ĐỨC - Phiên bản 3.0 - © Copyright 2013 - 2024 - VNEDU.ORG

free counters