50 C# Coding Interview Questions Every Developer Should Know.
50 C# Coding Interview Questions Every Developer Should Know.
50 Must Know C# Coding Interview Questions for Developers Example: Python sockets
SPONSORED SEARCHES
basic coding
program python
c# programming
Presenting today is 50 C# coding interview questions every developer should know. All questions contain
a unique coding snippet.
AMCAT Job
Assessment
Try to attempt each question carefully and test your C# programming skills. Solving these coding Test
questions should be fun for you.
Also, we’ve listed down some quick C# coding tips which could be quite handy while programming.
2000+ Top Companies
Recognise AMCAT Test
So do read these tips to get the most out of this post.
Write header comments and place them at the top of files and functions to explain the objective,
author, and change history.
Use single line comments to define specific statements or code and indent them accordingly.
You can also use trailing comments on the same line as code and put a space or a tab to separate
them.
While naming a class, use a noun or a noun phrase. Also, follow the Pascal case – write the first
letter of the class name and each subsequent concatenated words in Capital case.
Don’t use keywords or reserved names while defining namespaces to avoid clashes.
Instead of using ToUpper(), call the Equals() method to do a comparison of a case sensitive string.
Note – ToUpper() will create a second temporary string object.
Create a String as a verbatim string. Any verbatim string starts with the @ symbol.
Note – The @ symbol notifies the string constructor to ignore escape characters and line breaks.
You can also read some more posts on C# and excel your programming skills.
☛ Check out 15 C# Questions – For, While Loops and If Else Statements.
☛ C# Programming Test with 15 Questions on Classes.
using System;
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine(Math.Round(6.5));
Console.WriteLine(Math.Round(11.5));
}
}
a) 6 12
b) 6 11
c) 7 12
d) 7 11
using System;
public class Program
{
public static void Main(string[] args)
{
int[] i = new int[0];
Console.WriteLine(i[0]);
}
}
a) 0
b) IndexOutOfRangeException
c) Nothing is printed as array is empty
d) 1
a) Error
b) System.Byte
System.Byte
c) System.Byte
System.Int32
d) System.Int32
System.Int32
using System;
public class Program
{
public static void Main(string[] args)
{
#if (!pi)
Console.WriteLine("i");
#else
Console.WriteLine("PI undefined");
#endif
Console.WriteLine("ok");
Console.ReadLine();
}
}
a) ok
b) i
ok
c) PI undefined
ok
d) Error
Option – b)
TOP
using System;
public class Program
{
public static void Main(string[] args)
{
int[] arr = new int[2];
arr[1] = 10;
Object o = arr;
int[] arr1 = (int[])o;
arr1[1] = 100;
Console.WriteLine(arr[1]);
((int[])o)[1] = 1000;
((int[])o)[1] 1000;
Console.WriteLine(arr[1]);
}
}
a) 10
10
b) 10
100
c) 10
1000
d) 100
1000
Option – d)
using System;
public class Program
{
public static void Main(string[] args)
{
String a = "TechBeamers";
String b = "TECHBEAMERS";
int c;
c = a.CompareTo(b);
Console.WriteLine(c);
}
}
a) -1
b) 1
c) 0
d) Error
using System;
public class Program
{
static void arrayMethod(int[] a)
{
int[] b = new int[5];
a = b;
}
public static void Main(string[] args)
{
int[] arr = new int[10];
arrayMethod(arr);
Console.WriteLine(arr.Length);
}
}
a) 5
b) 10
c) 15
d) Error
using System;
public class Program
{
public static void Main(string[] args)
{
Program p = new Program();
p.print(2, 3, 8);
int[] arr = { 2, 11, 15, 20 };
p.print(arr);
Console.ReadLine();
}
public void print(params int[] b)
{
foreach (int i in b)
{
Console.WriteLine(i);
}
}
}
a) 2 3 8
2 11 15 20
b) 2 3 8 11 15 20
c) 2 11 15 20
d) Error
C# Threading
Basic concepts
Easy to learn threading and other
concepts
thinkminds.in
OPEN
using System;
public class Program
{
public static void Main(string[] args)
{
char x = 'A';
int i = 0;
Console.WriteLine (true ? x : 0);
Console.WriteLine(false ? i : x);
}
}
a) 65
65
b) true
false
c) 1
0
d) Error
Check correct answer.
using System;
public class Program
{
a) 20,30
b) 0,20
c) 20,10
d) 10,50
TOP
using System;
public class Program
{
public static void Main(string[] args)
{
char[] num = { '1', '2', '3' };
Console.WriteLine(" char array: " + num);
}
using System;
public class Program
{
public static void Main(string[] args)
{
Program obj = null;
Console.WriteLine(Program.print());
}
private static String print()
{
return "Hi, I am a Tech-savvy!!";
}
}
a) Hi, I am a Tech-savvy!!
b) Error
c) The program compiled successfully and nothing is printed
d) None of the above
using System;
using System.Collections.Generic;
public class Program
{
public static void Main(string[] args)
{
string[] strings = { "abc", "def", "ghi" };
var actions = new List();
foreach (string str in strings)
actions.Add(() => { Console.WriteLine(str); });
using System;
using System.Collections.Generic;
public class Program
{
public static void Main(string[] args)
{
var actions = new List();
for (int i = 0; i < 4; i++) actions.Add(() => Console.WriteLine
foreach (var action in actions)
action();
}
}
a) 0 1 2 3
b) 1 2 3 4
c) 4 4 4 4
d) Error
using System;
using System.Collections.Generic;
namespace TechBeamers
{
delegate string del(string str);
class sample
{
public static string DelegateSample(string a)
{
return a Replace(' ' '*');
return a.Replace( , , );
}
}
public class InterviewProgram
{
public static void Main(string[] args)
{
del str1 = new del(sample.DelegateSample);
string str = str1("Welcome,,friends,,to,,TechBeamers");
Console.WriteLine(str);
}
}
}
a) Welcome,friends,to,TechBeamers
b) Welcome**friends**to**TechBeamers
c) Welcome*friends*to*TechBeamers
d) Welcome friends to TechBeamers
using System;
using System.Collections.Generic;
namespace TechBeamers
{
public delegate void sampleDelegate(int num);
public class testDelegate
{
public void checkEven(int num)
{
if(num%2 ==0)
Console.WriteLine("This number is an even number");
else
Console.WriteLine("This number is an odd number");
}
class sample
{
public static void Main( )
{
testDelegate obj = new testDelegate();
sampleDelegate delegateObj = new sampleDelegate(obj.checkEven);
delegateObj += new sampleDelegate(obj.squareNumber);
delegateObj(25);
}
}
}
a) Error
b) This number is an odd number
c) Square of this number is: 625
d) This number is an odd number
Square of this number is: 625
using System;
using System Collections ObjectModel;
using System.Collections.ObjectModel;
using System.Collections.Generic;
public class Program
{
public static void Main()
{
var arr = new List { 20, 40, 35, 85, 70 };
var collection = new Collection(arr);
arr.Add(60);
arr.Sort();
Console.WriteLine(String.Join(",", collection));
}
}
using System;
public class Program
{
public static void Main()
{
Nullable number = 0;
int num = 1;
Console.WriteLine(number.GetType() == num.GetType());
}
}
a) True
b) False
c) Null
d) Error
using System;
using System.Collections.ObjectModel;
using System.Collections.Generic;
namespace TechBeamers
{
delegate void A(ref string str);
public class sample
{
public static void StringMarker(ref string a)
{
a = a.Substring(0, a.Length - 6);
}
}
public class Program
{
public static void Main(string[] args)
{
A str1;
string str = "Let's Learn CSharp";
str1 = sample.StringMarker;
str1(ref str);
Console.WriteLine(str);
}
}
}
}
a) Learn CSharp
b) Let’s Learn
c) Let’s Learn CSharp
d) Null
using System;
public class Program
{
public static void Main(string[] args)
{
bool a = true;
bool b = false;
a ^= b;
Console.WriteLine(a);
Console.ReadLine();
}
}
a) True
b) False
c) Null
d) Error
TOP
using System;
public class Program
{
public static void Main(string[] args)
{
bool a = true;
bool b = false;
a |= b;
Console.WriteLine(a);
Console.ReadLine();
}
}
a) True
b) False
c) Null
d) Error
using System;
public class Program
{
public static void Main()
{
classA a = new classC();
Console.WriteLine(a.Print());
Console.WriteLine(a.Print());
}
a) ClassA
b) ClassB
c) ClassC
d) Error
using System;
public class Program
{
public static void Main(string[] args)
{
{
try
{
throw new NullReferenceException("C");
Console.WriteLine("A");
}
catch (ArithmeticException e)
{
Console.WriteLine("B");
}
Console.ReadLine();
}
}
}
a) C A
b) C A B
c) B
d) NullReferenceException: C
a) 2 1
b) 1 1
c) Compilation error (y is inaccessible due to its protection level)
d) program compiled successfully and nothing is printed
using System;
public class Program
{
public static void Main(string[] args)
{
int n = 5;
int x = 4;
int z, c, k;
z = 3 * x * x + 2 * x + 4 / x + 8;
for (c = 1; c <= n; c++)
{
for (k = 1; k <= c; k++)
{
Console.Write(Convert.ToString(Convert.ToChar(z)));
z++;
}
Console.WriteLine("\n");
}
Console.ReadLine();
}
}
a) A
BC
DEF
GHIJ
KLMNO
b) A
AA
AAA
AAAA
AAAAA
c) A
AB
ABC
ABCD
ABCDE
d) A
AB
BC
BCD
BCDE
TOP
using System;
public class Program
{
public static void Main(string[] args)
{
int i, j = 1, k;
for (i = 0; i < 5; i++)
{
k = j++ + ++j;
Console.Write(k + " ");
}
}
}
a) 8 4 16 12 20
b) 4 8 12 16 20
c) 2 4 6 8 10
d) 4 8 16 32 64
using System;
namespace TechBeamers
{
class Sample
{
public int num;
public int[] arr = new int[10];
class Program
{
static void Main(string[] args)
{
Sample s = new Sample();
s.num = 100;
Sample.assign(0, 10);
s.assign(0, 9);
Console.WriteLine(s.arr[0]);
}
}
}
a) 10
b) 9
b) 9
c) Compilation Error: an object reference required to access non-static member
d) 100
using System;
class Program
{
static void Main(string[] args)
{
String s1 = "TechBeamers";
String s2 = "Welcomes its readers";
String s3 = s2;
Console.WriteLine((s3 == s2) + " " + s2.Equals(s3));
Console.ReadLine();
}
}
a) True True
b) True False
c) False True
d) False False
using System;
public class Program
{
static void Main(string[] args)
{
using System;
public class Program
{
public static void Main()
{
int[] arr = { 1, 2, 3 };
int i = 1;
arr[i++] = arr[i] + 10;
Console.WriteLine(String.Join(",", arr));
}
}
a) 1,13,3
b) 1,2,3
c) 11,12,13
d) 10,20,30
TOP
using System;
class Program
{
public static int i = 0;
public static void Main()
{
(i++).Assign();
}
}
a) 1 0
b) 1 1
c) 0 1
d) 0 0
using System;
class Program
{
enum Color: int
{
red, green, blue = 5, cyan, magenta = 10, yellow
}
public static void Main()
{
Console.WriteLine( (int) Color.green + ", " );
Console.WriteLine( (int) Color.yellow );
}
}
a) 4,11
b) 1,11
c) 4,7
d) 1,7
Check correct answer.
Q-33. What Will Be The Output Of The Following Code Snippet:
using System;
public class Program
{
public static void Main(string[] args)
{
int i = 3;
int j = 2;
func1(ref i);
func2(out j);
Console.WriteLine(i + " " + j);
}
a) 6 4
b) Compilation error: usage of unassigned out parameter
c) 3 2
d) Compilation Error: function call without creating an object
using System;
class Program
{
public static void Main()
{
var test = SingletonB.Test;
}
}
class SingletonB
{
static readonly SingletonB _instance = new SingletonB();
private SingletonB()
{
Console.WriteLine("Default Constructor");
}
static SingletonB()
{
Console.WriteLine("Static Constructor");
}
}
a) Static Constructor
b) Program compiles successfully and nothing is printed
c) Default Constructor
Static Constructor
d) Default Constructor
Check correct answer.
Q-35. What Will Be The Output Of The Following Code Snippet:
using System;
public class Program
{
public static void Main(string[] args)
{
try
{
Console.WriteLine("TechBeamers Welcomes Its Readers");
Environment.Exit(0);
}
finally
{
Console.WriteLine("To the World of C# !!");
}
}
}
TOP
using System;
public class Calculation
{
int sum = 0;
int count = 0;
float average;
public void CalAverage()
{
if ( count == 0)
throw ( new CountIsZeroException ("Zero count in DoAverage"));
{
average = sum / count;
Console.WriteLine( "Program executed successfully" );
}
}
}
class Program
{
static void Main ( string[ ] args )
{
Calculation c = new Calculation();
try
{
c.CalAverage();
}
catch ( CountIsZeroException e )
{
Console.WriteLine( "CountIsZeroException : {0}",e );
}
Console.ReadLine();
Co so e. ead e();
}
}
using System;
public class Program
{
static void Main(string[] args)
{
Derived d = new Derived();
int i = 10;
d.Func(i);
Console.ReadKey();
}
}
public class Base
{
public virtual void Func(int x)
{
Console.WriteLine("Base.Func(int)");
}
}
public class Derived : Base
{
public override void Func(int x)
{
Console.WriteLine("Derived.Func(int)");
}
public void Func(object o)
{
Console.WriteLine("Derived.Func(object)");
}
}
a) Derived.Func(object)
b) Derived.Func(int)
c) Derived.Func(int)
Base.Func(int)
d) Base.Func(int)
using System;
public class Program
{
public static void Main(string[] args)
{
string str1 = "TechBeamers";
string str2 = "Techbeamers";
if (str1 == str2)
Console.WriteLine("Both Strings are Equal");
else
Console.WriteLine("Both Strings are Unequal");
if (str1.Equals(str2))
Console.WriteLine("Both Strings are Equal");
else
Console WriteLine("Both Strings are Unequal");
Console.WriteLine( Both Strings are Unequal );
Console.ReadLine();
}
}
using System;
class Program
{
public static void Main()
{
Sample s = new Sample();
s.Print();
ISample i = s;
i.Print();
}
a) Class Executed
Interface Executed
b) Class Executed
c) Interface Executed
d) Error
using System;
class Program
{
public static void Main()
{
int num = 0;
(num++);
Console.WriteLine(num);
}
}
a) 0
b) 1
c) Error: wrong use as statement
d) Nothing gets printed.
TOP
using System;
public class Program
{
public static void Main(string[] args)
{
int val = (byte)+(char)-(int)+(long)-2;
Console.WriteLine(val);
}
}
a) Error
b) -2
c) 2
d) 0
using System;
public class Program
{
public static void Main(string[] args)
{
Boolean b1 = true, b2 = false;
if ((b2 = true) | (b1 ^ b2))
{
Console.WriteLine("execution success");
}
else
{
Console.WriteLine("execution failure");
}
}
}
a) execution failure
b) execution success
c) Error
d) Null
using System;
class Program
{
public static void Main()
{
string str1 = "\U0010FADE";
string str2 = "\U0000FADE";
Console.WriteLine(str1.Length);
Console.WriteLine(str2.Length);
( g );
}
}
a) 9
9
b) 10
10
c) 2
1
d) 1
0
using System;
class Program
{
public static void Main()
{
int[] singleDimArray = { 1, 2, 3, 4 };
int[,] multiDimArray = { { 1, 2 }, { 3, 4 } };
int[][] jaggedArray = { new int[] { 1, 2 }, new int[] { 3, 4 }
Console.WriteLine(singleDimArray.Length);
Console.WriteLine(multiDimArray.Length);
Console.WriteLine(jaggedArray.Length);
}
}
a) 4
4
2
b) 4
2
2
c) 4
4
4
d) 4
2
4
using System;
class Program
{
public static void Main()
{
float num = 56, div = 0;
try
{
Console.WriteLine(num / div);
}
catch (DivideByZeroException)
{
Console.WriteLine("Division By Zero");
}
}
}
}
a) Runtime Error
b) Compile time Error
c) Division By Zero
d) Infinity
TOP
using System;
class Program
{
public static void Main()
{
for (int x = 0; x < 10; x++)
{
Console.Write(x + ' ');
}
}
}
a) 0 1 2 3 4 5 6 7 8 9
b) 0
1
2
3
4
5
6
7
8
9
c) 32333435363738394041
d) Compile time Error
using System;
class Program
{
static void Main(string[] args)
{
double num1 = 1.000001;
double num2 = 0.000001;
Console.WriteLine((num1 - num2) == 1.0);
}
}
a) True
b) False
c) Null
d) Error
a) Object argument
b) double array argument
c) Object argument
double array argument
d) The Program compiles successfully but nothing gets printed.
using System;
public class Program
{
public static void Main(string[] args)
{
Console.WriteLine("H" + 'I');
Console.WriteLine('h' + 'i');
}
}
a) HI
hi
b) 145
209
c) HI
209
d) 145
hi
using System;
using System.Text;
public class Program
{
public static void Main(string[] args)
{
String str = "";
a) 12345
b) 135
c) 1345
d) Nothing gets printed
TOP
Next, if you wish to share any feedback or like us to write on a topic of your interest, then do use the
comment box to let us know.
Hope, our posts would keep helping you in transforming into a great programmer. Please don’t forget to
like or follow on facebook or twitter.
Keep Learning,
TechBeamers.
RELATED
C# Programming Interview C# Exception Handling – 35
Questions For Freshers Questions Programmers Should
Not Miss
Tutorials Interviews Questions Web Development Quick Info
☛ About Us
Python Tutorial Python Interview Questions AngularJS Questions ☛ Privacy Policy
☛ Disclaimer
Selenium Python Tutorial SQL Interview Questions JavaScript Questions
☛ Contact Us
Selenium Webdriver Tutorial Selenium Interview Questions Web Developer Questions
Python Tips & Tricks Linux Interview Questions PHP Interview Questions-2
© 2019 TechBeamers.com