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 52
Ngày làm bài: Hôm nay lúc 19:03:54 (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-
If 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;

  A - 
1, 3
  B - 
2, 4, 5
  C - 
4 only
  D - 
3, 5
6-
If a 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 - 
2, 3
  C - 
3, 4
  D - 
3, 5
7-
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.Length = 20;
  D - 
Sample m = new Sample();  m.Length = 10;
8-
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;
9-
An Employee class has a property called age and emp is reference to a Employee object and we want the statement Console.WriteLine(emp.age) to fail. Which of the following options will ensure this functionality?
  A - 
Declare age property with only get accessor.
  B - 
Declare age property with only set accessor.
  C - 
Declare age property with both get and set accessors.
  D - 
Declare age property with get, set and normal accessors.
10-
Which of the following statements is correct about properties used in C#.NET?
  A - 
Every property must have a set accessor and a get accessor.
  B - 
Properties cannot be overloaded.
  C - 
Properties of a class are actually methods that work like data members.
  D - 
A property has to be either read only or a write only.
 
[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 XML - Bài 28
Trắc Nghiệm Visual Basic - Bài 15
Trắc Nghiệm Java - Bài 34
Trắc Nghiệm Ngôn Ngữ Lập Trình C - Bài 01
Trắc Nghiệm Thiết Kế Web (English) - Bài 24
Trắc Nghiệm ASP.NET - Bài 05
Trắc nghiệm XML - Bài 30
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 51
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 44
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 08
Trắc nghiệm XML - Bài 32
Trắc Nghiệm Visual Basic - Bài 23
Trắc Nghiệm Thiết Kế Web Và Flash - Bài 03
Trắc nghiệm C++ - Bài 16
Trắc Nghiệm Visual Basic - Bài 03
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 21
Trắc Nghiệm Visual Basic - Bài 42
Trắc Nghiệm Pascal - Bài 35
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 14
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 43
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