Logo

C- Questions Set 3:

Quiz Mode

Which class is used to define a group of constants?

1
2
3
4

Solution:

What is the process of activating a method called?

1
2
3
4

Solution:

What is Selenium?

1
2
3
4

Solution:

Which of the following is not an example of an entry-controlled loop?

1
2
3
4

Solution:

Which of the following classes is defined in the System.Collections namespace?

1
2
3
4

Solution:

Which of the following is known as automatic type conversion?

1
2
3
4

Solution:

Which of the following special values is supported by floating-point data types?

1
2
3
4

Solution:

Evaluate the output of the following code-snippet?

 class Abekus

  {

    static void Main(string[] args)

    {

      Console.WriteLine(Math.Min(6, 9));  

     }

  }

Solution:

Which statement about the Hashtable is true?

1
2
3
4

Solution:

What is the output of this code? 


using System;  

  public class Strng  

   {  

     public static void Main(string[] args)  

      {  


String s="Learn_With_Abekus";

int x=s.Length;

int y=s.IndexOf("W");


Console.Write(x%y);


     }  

  }  

Solution: