Logo

C- Questions Set 4:

Quiz Mode

How many types of errors can a program contain at compile time?

1
2
3
4

Solution:

Identify the single-character literal from the following options:

1
2
3
4

Solution:

What is a class inside another class called?

1
2
3
4

Solution:

What is the full form of GAC?

1
2
3
4

Solution:

What is the object-oriented programming concept that allows reusing existing code?

1
2
3
4

Solution:

What is the full form of LINQ?

1
2
3
4

Solution:

Why do we use the System.IO namespace?

1
2
3
4

Solution:

Evaluate the output of the following code-snippet?

class Abekus

  {

    static void Main(string[] args)

    {

      Console.WriteLine(Math.Abs(-3.6));  

     }

  }

Solution:

Why do we use the modulo operator?

1
2
3
4

Solution:

The region of code where a particular variable is accessible known as:-

1
2
3
4

Solution: