Explore topic-wise MCQs in C Sharp Programming.

This section includes 22 Mcqs, each offering curated multiple-choice questions to sharpen your C Sharp Programming knowledge and support exam preparation. Choose a topic below to get started.

1.

Which of the following statements are correct about the C#.NET program given below? namespace IndiabixConsoleApplication { class SampleProgram { static void Main(string[ ] args) { int a = 5; int s = 0, c = 0; s, c = fun(a); Console.WriteLine(s +" " + c) ; } static int fun(int x) { int ss, cc; ss = x * x; cc = x * x * x; return ss, cc; } } }An error will be reported in the statement s, c = fun(a); since multiple values returned from a function cannot be collected in this manner. It will output 25 125. It will output 25 0. It will output 0 125. An error will be reported in the statement return ss, cc; since a function cannot return multiple values.

A. 1, 3
B. 2, 4
C. 4, 5
D. 1, 5
E. None of these
Answer» E. None of these
2.

Which of the following statements are correct? C# allows a function to have arguments with default values. C# allows a function to have variable number of arguments. Omitting the return value type in method definition results into an exception. Redefining a method parameter in the method's body causes an exception. params is used to specify the syntax for a function with variable number of arguments.

A. 1, 3, 5
B. 3, 4, 5
C. 2, 5
D. 4, 5
Answer» D. 4, 5
3.

If a procedure fun() is to receive an int, a Single & a double and it is to return a decimal then which of the following is the correct way of defining this procedure?

A. fun(int i, Single j, double k) decimal { ... }
B. static decimal fun(int i, Single j, double k) { ... }
C. fun(int i, Single j, double k) { ... return decimal; }
D. static decimal fun(int i, Single j, double k) decimal { ... }
Answer» E.
4.

How many values is a function capable of returning?

A. 1
B. 0
C. Depends upon how many params arguments does it use.
D. Any number of values.
Answer» B. 0
5.

Which of the following statements are correct about the C#.NET program given below? namespace IndiabixConsoleApplication { class SampleProgram { static void Main(string[ ] args) { int a = 5; int s = 0, c = 0; s, c = fun(a); Console.WriteLine(s +" " + c) ; } static int fun(int x) { int ss, cc; ss = x * x; cc = x * x * x; return ss, cc; } } } An error will be reported in the statement s, c = fun(a); since multiple values returned from a function cannot be collected in this manner. It will output 25 125. It will output 25 0. It will output 0 125. An error will be reported in the statement return ss, cc; since a function cannot return multiple values.

A. 1, 3
B. 2, 4
C. 4, 5
D. 1, 5
Answer» E.
6.

Which of the following CANNOT occur multiple number of times in a program?

A. namespace
B. Entrypoint
C. Class
D. Function
Answer» C. Class
7.

What will be the output of the C#.NET code snippet given below? namespace IndiabixConsoleApplication { class SampleProgram { static void Main(string[ ] args) { int i = 10; double d = 34.340; fun(i); fun(d); } static void fun(double d) { Console.WriteLine(d + " "); } } }

A. 10.000000 34.340000
B. 10 34
C. 10 34.340
D. 10 34.34
Answer» E.
8.

If a function fun() is to receive an int, a Single & a double and it is to return a decimal then which of the following is the correct way of defining this function?

A. decimal static fun(int i, Single j, double k) { ... }
B. decimal fun(int i, Single j, double k) { ... }
C. static decimal fun(int i, Single j, double k) { ... }
D. static decimal fun(int i, Single j, double k) decimal { ... }
Answer» D. static decimal fun(int i, Single j, double k) decimal { ... }
9.

How many values is a subroutine capable of returning?

A. Depends upon how many params arguments does it use.
B. Any number of values.
C. Depends upon how many ref arguments does it use.
D. 0
Answer» E.
10.

What will be the output of the C#.NET code snippet given below? namespace IndiabixConsoleApplication { class SampleProgram { static void Main(string[ ] args) { object[] o = new object[] {"1", 4.0, "India", 'B'}; fun (o); } static void fun (params object[] obj) { for (int i = 0; i < obj.Length-1; i++) Console.Write(obj[i] + " "); } } }

A. 1 4.0 India B
B. 1 4.0 India
C. 1 4 India
D. 1 India B
Answer» D. 1 India B
11.

A function can be used in an expression, whereas a subroutine cannot be.

A. 1
B.
Answer» B.
12.

Which of the following statements are correct about subroutines used in C#.NET? If we do not return a value from a subroutine then a value -1 gets returned. Subroutine definitions cannot be nested. Subroutine can be called recursively. To return the control from middle of a subroutine exit subroutine should be used. Subroutine calls can be nested.

A. 1, 2, 3
B. 2, 3, 5
C. 3, 5
D. 3, 4
Answer» C. 3, 5
13.

If a function fun() is to sometimes receive an int and sometimes a double then which of the following is the correct way of defining this function?

A. static void fun(object i) { ... }
B. static void fun(int i) { ... }
C. static void fun(double i, int j) { ... }
D. static void fun(int i, double j) { ... }
Answer» B. static void fun(int i) { ... }
14.

Which of the following statements are correct about functions and subroutines used in C#.NET? A function cannot be called from a subroutine. The ref keyword causes arguments to be passed by reference. While using ref keyword any changes made to the parameter in the method will be reflected in that variable when control passes back to the calling method. A subroutine cannot be called from a function. Functions and subroutines can be called recursively.

A. 1, 2, 4
B. 2, 3, 5
C. 3, 5
D. 4, 5
Answer» C. 3, 5
15.

What will be the output of the C#.NET code snippet given below? namespace IndiabixConsoleApplication { class SampleProgram { static void Main(string[ ] args) { int i; int res = fun(out i); Console.WriteLine(res); } static int fun (out int i) { int s = 1; i = 7; for(int j = 1; j

A. 1
B. 7
C. 8
D. 720
Answer» E.
16.

Which of the following statements are correct about functions used in C#.NET? Function definitions cannot be nested. Functions can be called recursively. If we do not return a value from a function then a value -1 gets returned. To return the control from middle of a function exit function should be used. Function calls can be nested.

A. 1, 2, 5
B. 2, 3, 5
C. 2, 3
D. 4, 5
Answer» B. 2, 3, 5
17.

What will be the output of the C#.NET code snippet given below? namespace IndiabixConsoleApplication { class SampleProgram { static void Main(string[] args) { int[]arr = newint[]{ 1, 2, 3, 4, 5 }; fun(ref arr); } static void fun(ref int[] a) { for (int i = 0; i < a.Length; i++) { a[i] = a[i] * 5; Console.Write(a[ i ] + " "); } } } }

A. 1 2 3 4 5
B. 6 7 8 9 10
C. 5 10 15 20 25
D. 5 25 125 625 3125
Answer» D. 5 25 125 625 3125
18.

Which of the following will be the correct output for the C#.NET program given below? namespace IndiabixConsoleApplication { class SampleProgram { static void Main(string[] args) { int a = 5; int s = 0, c = 0; Proc(a, ref s, ref c); Console.WriteLine(s + " " + c); } static void Proc(int x, ref int ss, ref int cc) { ss = x * x; cc = x * x * x; } } }

A. 0 0
B. 25 25
C. 125 125
D. 25 125
Answer» E.
19.

A function returns a value, whereas a subroutine cannot return a value.

A. 1
B.
Answer» B.
20.

Which of the following statements are correct? An argument passed to a ref parameter need not be initialized first. Variables passed as out arguments need to be initialized prior to being passed. Argument that uses params keyword must be the last argument of variable argument list of a method. Pass by reference eliminates the overhead of copying large data items. To use a ref parameter only the calling method must explicitly use the ref keyword.

A. 1, 2
B. 2, 3
C. 3, 4
D. 4, 5
Answer» D. 4, 5
21.

What will be the output of the C#.NET code snippet given below? namespace IndiabixConsoleApplication { class SampleProgram { static void Main(string[ ] args) { int i = 5; int j; fun1(ref i); fun2(out j); Console.WriteLine(i + ", " + j); } static void funl(ref int x) { x = x * x; } static void fun2(out int x) { x = 6; x = x * x; } } }

A. 5, 6
B. 5, 36
C. 25, 36
D. 25, 0
Answer» D. 25, 0
22.

Which of the following will be the correct output for the C#.NET program given below? namespace IndiabixConsoleApplication { class SampleProgram { static void Main(string[] args) { int num = 1; funcv(num); Console.Write(num + ", "); funcr(ref num); Console.Write(num + ", "); } static void funcv(int num) { num = num + 10; Console.Write(num + ", "); } static void funcr (ref int num) { num = num + 10; Console.Write(num + ", "); } } }

A. 1, 1, 1, 1,
B. 11, 1, 11, 11,
C. 11, 11, 11, 11,
D. 11, 11, 21, 11,
Answer» C. 11, 11, 11, 11,