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 C# - Bài 53
Ngày làm bài: Hôm nay lúc 22:35:05 (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 of the following statements are correct about an enum used in C#.NET?
  1. An enum can be declared inside a class.
  2. An enum can take Single, Double or Decimal values.
  3. An enum can be declared outside a class.
  4. An enum can be declared inside/outside a namespace.
  5. An object can be assigned to an enum variable.
  A - 
1, 3, 4
  B - 
2, 5
  C - 
3, 4
  D - 
2, 4, 5
2-
Which of the following statements is correct about properties used in C#.NET?
  A - 
A property can simultaneously be read only or write only.
  B - 
A property can be either read only or write only.
  C - 
A write only property will have only get accessor.
  D - 
A write only property will always return a value.
3-
A Student class has a property called rollNo and stu is a reference to a Student object and we want the statement stu.RollNo = 28 to fail. Which of the following options will ensure this functionality?
  A - 
Declare rollNo property with both get and set accessors.
  B - 
Declare rollNo property with only set accessor.
  C - 
Declare rollNo property with get, set and normal accessors.
  D - 
Declare rollNo property with only get accessor.
4-
Which of the following statements are correct?
  1. The signature of an indexer consists of the number and types of its formal parameters.
  2. Indexers are similar to properties except that their accessors take parameters.
  3. Accessors of interface indexers use modifiers.
  4. The type of an indexer and the type of its parameters must be at least as accessible as the indexer itself.
  5. An interface accessor contains a body.
  A - 
1, 3, 5
  B - 
1, 2, 4
  C - 
3, 5
  D - 
2, 4
5-
Sample class has a Length property with get and set accessors then which of the following statements will work correctly?
  1. Sample.Length = 20;
  2. Sample m = new Sample(); 
    m.Length = 10;
  3. Console.WriteLine(Sample.Length);
  4. Sample m = new Sample(); 
    int len;
    len = m.Length;
  5. Sample m = new Sample(); 
    m.Length = m.Length + 20;

  A - 
1, 3
  B - 
2, 4, 5
  C - 
4 only
  D - 
3, 5
6-
Which of the following is the correct way to implement a write only property Length in a Sample class?
  A - 
class Sample
{
public int Length
{
set
{
Length = value;
}
}
}
  B - 
class Sample
{
int len;
public int Length
{
get
{
return len;
}
set
{
len = value;
}
}
}
  C - 
class Sample
{
int len;
public int Length
{
WriteOnly set
{
len = value;
}
}
}
  D - 
class Sample
{
int len;
public int Length
{
set
{
len = value;
}
}
}
7-
Student class has an indexed property which is used to store or retrieve values to/from an array of 5 integers, then which of the following are the correct ways to use this indexed property?
  1. Student[3] = 34;
  2. Student s = new Student(); 
    s[3] = 34;
  3. Student s = new Student(); 
    Console.WriteLine(s[3]);
  4. Console.WriteLine(Student[3]);
  5. Student.this s = new Student.this(); 
    s[3] = 34;

  A - 
1, 2
  B - 
3, 5
  C - 
2, 3
  D - 
3, 4
8-
If Sample class has a Length property with set accessor then which of the following statements will work correctly?
  A - 
Sample m = new Sample();  int l; l = m.Length;
  B - 
Sample m = new Sample();  m.Length = m.Length + 20;
  C - 
Sample m = new Sample();  m.Length = 10;
  D - 
Console.WriteLine (Sample.Length);
9-
If Sample class has a Length property with get accessor then which of the following statements will work correctly?
  A - 
Sample m = new Sample();  m.Length = 10;
  B - 
Sample m = new Sample();  m.Length = m.Length + 20;
  C - 
">
Sample m = new Sample();  int l; l = m.Length;
  D - 
Sample.Length = 20;
10-
Account class has a property called accountNo and acc is a reference to a bank object and we want the C#.NET code snippet given below to work. Which of the following options will ensure this functionality?
acc.accountNo = 10; 
Console.WriteLine(acc.accountNo);

  A - 
Declare accountNo property with both get and set accessors.
  B - 
Declare accountNo property with only get accessor.
  C - 
Declare accountNo property with get, set and normal accessors.
  D - 
Declare accountNo property with only set accessor.
 
[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 29
Trắc Nghiệm C Sharp - Bài 15
Trắc Nghiệm Visual Basic - Bài 33
Trắc Nghiệm ASP.NET (English) - Bài 01
Trắc nghiệm C++ - Bài 15
Trắc Nghiệm Java - Bài 17
Trắc Nghiệm Visual Basic - Bài 07
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 15
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 29
Trắc Nghiệm Thiết Kế Web Và Flash - Bài 19
Trắc Nghiệm Visual Basic - Bài 13
Trắc Nghiệm Java - Bài 08
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 51
Trắc Nghiệm Thiết Kế Web Và Flash - Bài 16
Trắc Nghiệm Thiết Kế Web Và Flash - Bài 26
Trắc Nghiệm C Sharp - Bài 30
Trắc Nghiệm ASP.NET (English) - Bài 23
Trắc Nghiệm Visual Basic - Bài 27
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 23
Trắc Nghiệm Java - Bài 23
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