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 23
Ngày làm bài: Hôm nay lúc 00:22:46 (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 statement is true for the class java.util.HashSet?
  A - 
The elements in the collection are ordered.
  B - 
The collection is guaranteed to be immutable.
  C - 
The elements in the collection are guaranteed to be unique.
  D - 
The elements in the collection are accessed using a unique key.
2-
Which of the following statements about the hashcode() method are incorrect?
  1. The value returned by hashcode() is used in some collection classes to help locate objects.
  2. The hashcode() method is required to return a positive int value.
  3. The hashcode() method in the String class is the one inherited from Object.
  4. Two new empty String objects will produce identical hashcodes.
  A - 
1 and 2
  B - 
2 and 3
  C - 
3 and 4
  D - 
1 and 4
3-
What two statements are true about properly overridden hashCode() and equals() methods?
  1. hashCode() doesn't have to be overridden if equals() is.
  2. equals() doesn't have to be overridden if hashCode() is.
  3. hashCode() can always return the same value, regardless of the object that invoked it.
  4. equals() can be true even if it's comparing different objects.
  A - 
1 and 2
  B - 
2 and 3
  C - 
3 and 4
  D - 
1 and 3
4-
Which two statements are true about comparing two instances of the same class, given that the equals() and hashCode() methods have been properly overridden?
  1. If the equals() method returns true, the hashCode() comparison == must return true.
  2. If the equals() method returns false, the hashCode() comparison != must return true.
  3. If the hashCode() comparison == returns true, the equals() method must return true.
  4. If the hashCode() comparison == returns true, the equals() method might return true.
  A - 
1 and 4
  B - 
2 and 3
  C - 
3 and 4
  D - 
1 and 3
5-
x = 0;
if (x1.hashCode() != x2.hashCode() )  x = x + 1;
if (x3.equals(x4) )  x = x + 10;
if (!x5.equals(x6) ) x = x + 100;
if (x7.hashCode() == x8.hashCode() )  x = x + 1000;
System.out.println("x = " + x);
and assuming that the equals() and hashCode() methods are property implemented, if the output is "x = 1111", which of the following statements will always be true?
  A - 
x2.equals(x1)
  B - 
x3.hashCode() == x4.hashCode()
  C - 
x5.hashCode() != x6.hashCode()
  D - 
x8.equals(x7)
6-
Which of the following are true statements?
  1. The Iterator interface declares only three methods: hasNext, next and remove.
  2. The ListIterator interface extends both the List and Iterator interfaces.
  3. The ListIterator interface provides forward and backward iteration capabilities.
  4. The ListIterator interface provides the ability to modify the List during iteration.
  5. The ListIterator interface provides the ability to determine its position in the List.
  A - 
2, 3, 4 and 5
  B - 
1, 3, 4 and 5
  C - 
3, 4 and 5
  D - 
1, 2 and 3
7-
Which statement is true for the class java.util.ArrayList?
  A - 
The elements in the collection are ordered.
  B - 
The collection is guaranteed to be immutable.
  C - 
The elements in the collection are guaranteed to be unique.
  D - 
The elements in the collection are accessed using a unique key.
8-
public class Outer 
{ 
    public void someOuterMethod() 
    {
        //Line 5 
    } 
    public class Inner { } 
    
    public static void main(String[] argv) 
    {
        Outer ot = new Outer(); 
        //Line 10
    } 
} 

Which of the following code fragments inserted, will allow to compile?

  A - 
new ot.Inner(); //At line 10
  B - 
new Inner(); //At line 10
  C - 
new Inner(); //At line 5
  D - 
new Outer.Inner(); //At line 10
9-
What will be the output of the program?
interface Count 
{
    short counter = 0;
    void countUp();
}
public class TestCount implements Count 
{
    public static void main(String [] args) 
    {
        TestCount t = new TestCount();
        t.countUp();
    }
    public void countUp() 
    {
        for (int x = 6; x>counter; x--, ++counter) /* Line 14 */
        {
            System.out.print(" " + counter);
        }
    }
}

  A - 
1 2 3
  B - 
0 1 2 3
  C - 
1 2 3 4
  D - 
Compilation fails
10-
/* Missing statements ? */
public class NewTreeSet extends java.util.TreeSet
{
    public static void main(String [] args) 
    {
        java.util.TreeSet t = new java.util.TreeSet();
        t.clear();
    }
    public void clear() 
    {
        TreeMap m = new TreeMap();
        m.clear();
    }
}
which two statements, added independently at beginning of the program, allow the code to compile?
  1. No statement is required
  2. import java.util.*;
  3. import.java.util.Tree*;
  4. import java.util.TreeSet;
  5. import java.util.TreeMap;
  A - 
3 and 4
  B - 
3 and 4
  C - 
1 only
  D - 
2 and 5
 
[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 Ngôn Ngữ Lập Trình C - Bài 07
Trắc nghiệm Linux ( English ) - Bài 32
Trắc Nghiệm Java - Bài 43
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 05
Trắc Nghiệm ASP.NET (English) - Bài 05
Trắc nghiệm XML - Bài 13
Trắc Nghiệm Java - Bài 23
Trắc nghiệm Linux - Bài 39
Trắc Nghiệm Thiết Kế Web Và Flash - Bài 27
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 11
Trắc Nghiệm Java - Bài 16
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 04
Trắc Nghiệm Visual Foxpro - Bài 10
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 44
Trắc Nghiệm Pascal - Bài 03
Trắc Nghiệm Pascal - Bài 15
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 16
Trắc nghiệm Linux - Bài 54
Trắc nghiệm XML - Bài 33
Trắc Nghiệm C Sharp - Bài 11
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