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 48
Ngày làm bài: Hôm nay lúc 01:58:24 (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-
If s1 and s2 are references to two strings, then which of the following is the correct way to compare the two references?
  A - 
s1 = s2
  B - 
s1 == s2
  C - 
strcmp(s1, s2)
  D - 
s1.Equals(s2)
2-
What will be the output of the C#.NET code snippet given below?
namespace IndiabixConsoleApplication
{
    class SampleProgram
    {
        static void Main(string[ ] args)
        {
            string str= "Hello World!";
            Console.WriteLine( String.Compare(str, "Hello World?" ).GetType() );
        }
    }
}

  A - 
1
  B - 
String
  C - 
Hello World?
  D - 
System.Int32
3-
Which of the following snippets are the correct way to convert a Single into a String?
  1. Single f = 9.8f; 
    String s;
    s = (String) (f);
  2. Single f = 9.8f; 
    String s;
    s = Convert.ToString(f);
  3. Single f = 9.8f; 
    String s;
    s = f.ToString();
  4. Single f = 9.8f; 
    String s;
    s = Clnt(f);
  5. Single f = 9.8f; 
    String s;
    s = CString(f);

  A - 
1, 2
  B - 
2, 3
  C - 
1, 3, 5
  D - 
2, 4
4-
Which of the following will be the correct output for the C#.NET code snippet given below?
String s1="Kicit";
Console.Write(s1.IndexOf('c') + " "); 
Console.Write(s1.Length);

  A - 
3 6
  B - 
2 5
  C - 
3 5
  D - 
2 6
5-
Which of the following is correct way to convert a String to an int?
  1. String s = "123"; 
    int i;
    i = (int)s;
  2. String s = "123";
    int i;
    i = int.Parse(s);
  3. String s = "123"; 
    int i;
    i = Int32.Parse(s);
  4. String s = "123"; 
    int i;
    i = Convert.ToInt32(s);
  5. String s = "123"; 
    int i;
    i = CInt(s);

  A - 
1, 3, 5
  B - 
2, 4
  C - 
3, 5
  D - 
2, 3, 4
6-
Which of the following statements about a String is correct?
  A - 
Whether a String is created on the stack or the heap depends on the length of the String.
  B - 
A String is a primitive.
  C - 
A String can be created by using the statement String s1 = new String;
  D - 
A String is created on the heap.
7-
Which of the following statement is correct about a String in C#.NET?
  A - 
A String has a zero-based index.
  B - 
A number CANNOT be represented in the form of a String.
  C - 
Methods of the String class can be used to modify the string.
  D - 
A String is mutable because it can be modified once it has been created.
8-
Which of the following will be the correct output for the C#.NET code snippet given below?
String s1 = "Five Star";
String s2 = "FIVE STAR";
int c;
c = s1.CompareTo(s2);
Console.WriteLine(c);

  A - 
0
  B - 
1
  C - 
2
  D - 
-1
9-
If s1 and s2 are references to two strings then which of the following are the correct ways to find whether the contents of the two strings are equal?
  1. if(s1 = s2)
  2. if(s1 == s2)
  3. int c;
    c = s1.CompareTo(s2);
  4. if( strcmp(s1, s2) )
  5. if (s1 is s2)

  A - 
1, 2
  B - 
2, 3
  C - 
4, 5
  D - 
3, 5
10-
Which of the following statements are correct about the String Class in C#.NET?
  1. Two strings can be concatenated by using an expression of the form s3 = s1 + s2;
  2. String is a primitive in C#.NET.
  3. A string built using StringBuilder Class is Mutable.
  4. A string built using String Class is Immutable.
  5. Two strings can be concatenated by using an expression of the form s3 = s1&s2;
  A - 
1, 2, 5
  B - 
2, 4
  C - 
1, 3, 4
  D - 
3, 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 Java - Bài 55
Trắc Nghiệm Java - Bài 22
Trắc nghiệm Linux - Bài 58
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 20
Trắc Nghiệm Visual Basic - Bài 28
Trắc Nghiệm Pascal - Bài 31
Trắc nghiệm CSS - Bài 02
Trắc nghiệm Linux - Bài 65
Trắc Nghiệm Thiết Kế Web (English) - Bài 26
Trắc nghiệm Ngôn Ngữ Lập Trình C++ - Bài 16
Trắc nghiệm Linux - Bài 57
Trắc Nghiệm Ngôn Ngữ Lập Trình C - Bài 19
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 57
Trắc Nghiệm ASP.NET - Bài 14
Trắc Nghiệm Thiết Kế Web (English) - Bài 14
Trắc Nghiệm Thiết Kế Web Và Flash - Bài 15
Trắc nghiệm XML - Bài 29
Trắc Nghiệm Ngôn Ngữ Lập Trình C ( English ) - Bài 21
Trắc nghiệm XML - Bài 07
Trắc Nghiệm ASP.NET - Bài 21
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