SlideShare a Scribd company logo
Copyright © 2018, edureka and/or its affiliates. All rights reserved.
C# Interview Questions
www.edureka.co/
C# Beginner Interview
Questions
Question 1
List down the differences between
Public, Static and Void Keywords.
www.edureka.co/
C# Beginner Interview
Questions
Question 1
List down the differences between
Public, Static and Void Keywords.
keyword Description
Static
It is a keyword used for declaring a member
of a type, specific to that type
Void
It states that the method does not return any
value
Public
It is an access specifier which states that the
method of a class can be accessed publicly
www.edureka.co/
C# Interview
Questions
Define C# and list the features.
Question 2
www.edureka.co/
C# Interview
Questions
Define C# and list the features.
Question 2
Object Oriented
Managed language
Type Safe
Part of the .NET Framework and
was developed by Microsoft
Developed for all kinds of
Software
Used my million developers
www.edureka.co/
C# Interview
Questions
Define C# and list the features?
Question 2
Constructors and Destructors
Easy to grasp
Object Oriented
www.edureka.co/
C# Interview
Questions
List down the reason behind the
usage of C# Language.
Question 3
Question 3
www.edureka.co/
C# Interview
Questions
List down the reason behind the
usage of C# Language.
Easy To Pickup
Component Oriented
Structured Approach
Code readability is easy
Question 3
www.edureka.co/
C# Interview
Questions
What are the advantages of using
C#?
Question 4
www.edureka.co/
C# Interview
Questions
What are the advantages of using
C#?
Question 4
Simple & Fast
No BufferingCross Platform
High Scalability
www.edureka.co/
C# Interview
Questions
What are the different types of
comments in C#?
Question 5
www.edureka.co/
C# Interview
Questions
What are the different types of
comments in C#?
Question 5
// hello, this is a single line
comment
///hello this is a XML
comment
/*hello this is multi line
Comment/*
Single Line Comments
XML Comments
Multi Line Comments
www.edureka.co/
C# Interview
Questions
Illustrate the process of Code
compilation in C#.
Question 6
www.edureka.co/
C# Interview
Questions
Illustrate the process of Code
compilation in C#.
Question 6
Compilation of Source Code
Clubbing newly created code
Executing assembly
CLR(Common Language RunTime)
www.edureka.co/
C# Interview
Questions
List down the Access Modifiers
available in C#.
Question 7
Private
www.edureka.co/
C# Interview
Questions
List down the Access Modifiers
available in C#.
Question 7
Protected
PrivateInternal
Protected
Internal
Public
www.edureka.co/
C# Interview
Questions
Question 8
List down the different IDE’s
provided by MICROSOFT for C#
Development.
www.edureka.co/
C# Interview
Questions
Question 8
List down the different IDE’s
provided by MICROSOFT for C#
Development.
Visual Studio
Visual Web
Developer
www.edureka.co/
C# Interview
Questions
Distinguish between Continue and
Break Statement?
Question 9
www.edureka.co/
C# Interview
Questions
Distinguish between Continue and
Break Statement?
Question 9
Using Break Statement you can jump out of the loop while using Continue
Statement you can jump over an iteration and continue the execution
using System;
using System.Collections;
using System.Linq;
using System.Text;
namespace break_example{
Class break_Stmnt{
public static void main(String args[]){
for(int i=0;i<=6;i++)
{
if(i==5)
{
break;
}
Console.Readline("The number is +i");
}
}
}
using System;
using System.Collections;
using System.Linq;
using System.Text;
namespace continue_example{
Class continue_Stmnt{
public static void main(String args[]){
for(int i=0;i<=6;i++)
{
if(i==5)
{
continue;
}
Console.Readline("The number is +i");
}
}
}
Break Continue
www.edureka.co/
C# Interview
Questions
What are the different approaches
of Passing Parameters to a
method?
Question 10
www.edureka.co/
C# Interview
Questions
What are the different approaches
of Passing Parameters to a
method?
Question 10
Value Parameters
Reference Parameters
Output Parameters
www.edureka.co/pmpPMP® CERTIFICATION EXAM TRAINING
C# Intermediate
Interview Questions
www.edureka.co/
C# Intermediate
Interview Questions
Distinguish between finally and
finalize block?
Question 11
www.edureka.co/
C# Intermediate
Interview Questions
Distinguish between finally and
finalize block?
Question 11
finally block is called after the execution of try and catch blocks. Finalize
method is called just before garbage collection
Try
{
//statement
}
Catch(Exception statement)
{
//error
}
www.edureka.co/
C# Interview
Questions
What is MANAGED and UNMANAGED
code?
Question 12
www.edureka.co/
C# Interview
Questions
What is MANAGED and UNMANAGED
code?
Question 12 Managed Code
Unmanaged Code
▪ It is executed by CLR(Common Language Runtime)
▪ All the application code is dependent on .NET Platform
▪ It is executed by runtime application of some other
structure
▪ The runtime application deals with memory, security and
other execution activities
www.edureka.co/
C# Interview
Questions
What is an Object?
Question 13
www.edureka.co/
C# Interview
Questions
What is an Object?
Question 13
An Object is an instance of a class
Created by New keyword in C#
www.edureka.co/
C# Interview
Questions
What is a class?
Question 14
www.edureka.co/
C# Interview
Questions
What is a class?
Question 14
Blueprint of an Object
1
Defines different platforms for object
2
www.edureka.co/
C# Interview
Questions
Define an abstract class.
Question 15
www.edureka.co/
C# Interview
Questions
Define an abstract class.
Question 15
Objects can’t be instantiated
Follows a single approach
www.edureka.co/
C# Interview
Questions
Define Sealed classes in C#.
Question 16
www.edureka.co/
C# Interview
Questions
Define Sealed classes in C#.
Question 16 Sealed Classes
Created when you want to restrict the class being inherited
Makes use of Sealed modifiers
www.edureka.co/
C# Interview
Questions
Define a Partial class.
Question 17
www.edureka.co/
C# Interview
Questions
Question 17
• Makes use of split function
• It spilts the definition of the class into multiple classes
in either same source code files or multiple code files
• One can create a class definition in multiple files but it
is compiled as one class at run-time
• When an instance of such a class is created a user can
access all the methods from every source file
Define a Partial class.
www.edureka.co/
C# Interview
Questions
List down the fundamental OOPs
concepts?
Question 18
www.edureka.co/
C# Interview
Questions
Question 18
List down the fundamental OOPs
concepts?
Inheritance Abstraction
Polymorphism Encapsulation
www.edureka.co/
C# Interview
Questions
Explain the process of Inheriting
the class into another class.
Question 19
www.edureka.co/
C# Interview
Questions
Explain the process of Inheriting
the class into another class.
Question 19
Colon is used as an inheritance operator in C#. Place the colon and class name
Public class Derivedclass: childclass
www.edureka.co/
C# Interview
Questions
Define method Overloading in C#.
Question 20
www.edureka.co/
C# Interview
Questions
❑ Creates multiple methods with the same name and
class but unique signatures
❑ Makes use of overload resolution
Define Method Overloading in C#.
Question 20
www.edureka.co/
C# Interview
Questions
List the differences between
Method Overriding and Method
Overloading.
Question 21
www.edureka.co/
C# Interview
Questions
Question 21
List the differences between
method overriding and method
overloading.
Method Overriding Method Overloading
The definition of the derived class is changed
which in turn changes the method behavior
Simply creates a method with name and class
being same but has different and unique
signatures
Occurs in two classes It is performed within class
Parameter must be different Parameter must be same
www.edureka.co/
C# Interview
Questions
Explain
StreamReader/StreamWriter
class.
Question 22
www.edureka.co/
C# Interview
Questions
Question 22
Explain
StreamReader/StreamWriter
class.
They are classes of namespace.System.IO
Class Testprogram
{
using(StreamReader sr = new StreamReader("C:Readme.txt")
{
// Any code to read//
}
using(StreamWriter sr = new StreamWriter("C:Readme.txt")
{
// Any code to write//
}
}
www.edureka.co/
C# Interview
Questions
What is an Interface?
Question 23
www.edureka.co/
C# Interview
Questions
Question 23
What is an Interface?
• It is basically a class with no implementation
• It contains only the declaration of Properties, attributes and behaviors
www.edureka.co/
C# Interview
Questions
Distinguish between a class and
struct?
Question 24
www.edureka.co/
C# Interview
Questions
Question 24
Distinguish between a class and
struct?
Class Struct
It supports Inheritance It does not support Inheritance
It is pass by reference It is pass by value
Members are by default Private Members are public by default
www.edureka.co/
C# Interview
Questions
Question 25
List the difference between Virtual
and Abstract method.
www.edureka.co/
C# Interview
Questions
Question 25
List the difference between Virtual
and Abstract method.
Virtual Abstract
It must always have a default implementation It does not have any implementation by default
It is overridden by the keyword override
It forces the derived class to override the
method
Virtual methods have code They don’t have actual code in them
www.edureka.co/
C# Interview
Questions
Illustrate Namespaces in C#.
Question 26
www.edureka.co/
C# Interview
Questions
Illustrate Namespaces in C#.
Question 26
Namespaces are used for organizing large code projects. “System” is
one of the most popular and widely used namespace in C#
www.edureka.co/
C# Interview
Questions
Define using statement in C#.
Question 27
www.edureka.co/
C# Interview
Questions
Question 27
Define using statement in C#.
“Using” keyword denotes that the particular namespace is being used by
program.
The class console is defined under system.
www.edureka.co/
C# Interview
Questions
Define an Escape Sequence, Name
a few strings in Escape Sequence.
Question 28
www.edureka.co/
C# Interview
Questions
Question 28
An Escape Sequence is denoted by a backslash().
An Escape Sequence is a single character
Few Escape Sequence are as follows:
4n- newline
character
b- backspace‘- Single quote - backlash
Define an Escape Sequence, Name
a few strings in Escape Sequence.
www.edureka.co/
C# Interview
Questions
Define Boxing and Unboxing in C#.
Question 29
www.edureka.co/
C# Interview
Questions
Question 29
Define Boxing and Unboxing in C#.
Converting a value type to reference type is called boxing
Explicit conversion of the same reference type is called unboxing
int value=10
//-------------Boxing---------//
Object boxedvalue=value1;
//-----------Unboxing---------//
int UnBoxing=int(boxedvalue)
www.edureka.co/
C# Interview
Questions
Define an array.
Question 30
www.edureka.co/
C# Interview
Questions
Question 30
Define an array.
An array is used to store multiple variables of the same datatype.
www.edureka.co/
C# Interview
Questions
Define a Jagged Array in C#.
Question 31
www.edureka.co/
C# Interview
Questions
Define a Jagged Array in C#.
Question 31
03
Int[][] jagArray = new int[5][];
A Jagged Array is referred to as an “array of arrays”
• It is a nested array whose elements are arrays
• The elements can be of different size and dimension
www.edureka.co/
C# Interview
Questions
Distinguish between Array and
Arraylist in C#.
Question 32
www.edureka.co/
C# Interview
Questions
Question 32
Distinguish between Array and
Arraylist in C#.
Array ArrayList
Array uses the vector array for storing
elements
It uses LinkedList to store elements
Size of array must be defined There is no need for specifying storage
Typecasting is not necessary Typecasting is necessary
www.edureka.co/
C# Interview
Questions
Define Collections.
Question 33
www.edureka.co/
C# Interview
Questions
Question 33
Define Collections.
A collection essentially works like a container for instances of other classes.
Every class implements Collection interface.
www.edureka.co/
C# Interview
Questions
Write a short note on Interface.
Question 34
www.edureka.co/
C# Interview
Questions
Question 34
Write a short note on Interface.
An Interface is a class with no implementation. It consists
of a declaration of methods, parameters and values.
C# Advance Interview
Questions
www.edureka.co/
C# Advance Level
Interview Questions
Illustrate Serialization.
Question 35
www.edureka.co/
C# Interview
Questions
Question 35
Illustrate Serialization.
A Process that involves converting some code into its
binary format is known as serialization.
Binary Serialization XML Serialization SOAP
www.edureka.co/
C# Interview
Questions
Define Parsing. Explain how to
parse a Datetime String.
Question 36
www.edureka.co/
C# Interview
Questions
Define Parsing. Explain how to
parse a Datetime String.
Question 36
A method of converting string into another data type is called Parsing
To parse a DateTime string code is given below:
String text = “200”
int.num = int.Parse(text)
string dateTime = "Aug 26,2019"; Datetime parsedvalue =
Datetime.Parse(dateTime);
www.edureka.co/
C# Interview
Questions
Define Delegate.
Question 37
www.edureka.co/
C# Interview
Questions
Question 37
A Delegate is a variable that holds the reference to a method. It is a
function pointer of the reference type
Define Delegate.
public Delegate int myDel(int number); //declaring a delegate
public class Program
{
public int SubstractNumbers(int a) //Class Program has the method same signature as delegate called
{
int difference = a - 10;
return difference;
}
public void start()
{
myDel DelegateExample = SubstractNumbers;
}
}
Example:
www.edureka.co/
C# Interview
Questions
Distinguish between System.String
and System.Text.StringBuilder
classes?
Question 38
www.edureka.co/
C# Interview
Questions
Question 38
Distinguish between System.String
and System.Text.StringBuilder
classes?
System.String System.Text.StringBuilder
It is immutable It is mutable
Cannot perform variety of operations Supports variety of operations
A new memory is allocated to the new value
and previous memory is released
New memory is not allocated
www.edureka.co/
C# Interview
Questions
Illustrate the differences between
the System.Array.CopyTo() and
System.Array.Clone().
Question 39
www.edureka.co/
C# Interview
Questions
Question 39
Illustrate the differences between
the System.Array.CopyTo() and
System.Array.Clone().
Using the clone() method, a new array object is created containing all elements
of the original array.
Using the copyto() method all the elements of the existing array gets copied into
another existing array
www.edureka.co/
C# Interview
Questions
Write the Syntax for catching an
exception in C#.
Question 40
www.edureka.co/
C# Interview
Questions
Question 40
Write the Syntax for catching an
exception in C#.
• To catch an exception we make use of try-catch block.
• The catch block has a parameter of the system.Exception type.
try
{
GetAllData();
}
catch(Exception ex){
}
www.edureka.co/
C# Interview
Questions
Explain about generics in C#.NET
Question 41
www.edureka.co/
C# Interview
Questions
Question 41
Generics are used to make reusable code classes that
decrease the code redundancy
Explain about generics in C#.NET
Generics create collection
Increase type safety, performance and optimization
www.edureka.co/
C# Interview
Questions
List down the differences between
finalize and dispose() methods.
Question 42
www.edureka.co/
C# Interview
Questions
List down the differences between
finalize and dispose() methods.
Question 42
Dispose releases unmanaged resources
Finalize doesn’t give assurance of garbage collection
Finalize releases unmanaged resources too
www.edureka.co/
C# Interview
Questions
Define C# I/O classes . List the
commonly used classes.
Question 43
www.edureka.co/
C# Interview
Questions
Define C# I/O classes . List the
commonly used classes.
Question 43
C# consists of System.Io namespace which consists of classes that compute
various operations on files like creation, deletion, opening and closing etc.
StreamWriter StreamReader File
www.edureka.co/
C# Interview
Questions
Define Thread. Explain about
Multithreading.
Question 44
www.edureka.co/
C# Interview
Questions
Thread is a set of instructions that when executed enables the program
to perform concurrent processing.
When you execute more than one process/task at a time then it is called
multithreading.
Define Thread. Explain about
Multithreading.
Question 44
By default C# consists of only one thread.
Thread follows a lifecycle where it starts whenever a thread is created and gets
terminated immediately after execution.
www.edureka.co/
C# Interview
Questions
Question 45
What are Events?
www.edureka.co/
C# Interview
Questions
Question 45
Events in C# follow a concept where it consists of a
Publisher, Subscriber, Notification and a handler
You can think of an event as an encapsulated delegateWhat are Events?
public Delegate void TestEvent();
public TestEvent TestEvent1
www.edureka.co/
C# Interview
Questions
Explain Synchronous and
Asynchronous Operations.
Question 46
www.edureka.co/
C# Interview
Questions
Synchronization is a way of creating a thread-safe code where only a single thread will
access the code in a given time.
Question 46
A synchronous call waits for completion of method and then continuous the program
flow.
Synchronous Programming adversely affects the UI operations
In Asynchronous Operation, the method call immediately returns allowing the
program to perform other operations
Explain Synchronous and
Asynchronous Operations.
www.edureka.co/
C# Interview
Questions
Explain Async and Await.
Question 47
www.edureka.co/
C# Interview
Questions
Question 47
Async and Await keywords are mostly used for creating asynchronous methods
in C#.
Explain Async and Await.
public async Task>CalculateCount()
{
await Task.Delay(2000);
return 1;
}
public async task mytestmethod()
{
Task> count = CalculateCount();
int result = await count;
}
www.edureka.co/
C# Interview
Questions
Explain Deadlock.
Question 48
www.edureka.co/
C# Interview
Questions
A Deadlock is a situation that arises when a process isn’t able to complete its execution because
two or more than two processes are waiting for each other to get finished.
Question 48
A shared resource is held up by a process and hence in turn other
processes are waiting causing a Deadlock.
Explain Deadlock.
www.edureka.co/
C# Interview
Questions
Illustrate Race Condition.
Question 49
www.edureka.co/
C# Interview
Questions
Question 49
Race Condition
A Race condition occurs when two threads access the same resource and try to change it
at the same time.
The thread that access the resource first cannot be predicted.
Illustrate Race Condition.
www.edureka.co/
C# Interview
Questions
What is Thread Pooling?
Question 50
www.edureka.co/
C# Interview
Questions
Question 50
What is Thread Pooling? A Thread Pool is a collection of threads that perform tasks without disturbing
the primary thread. Once the task is completed by a thread it returns to the
primary thread.
www.edureka.co/pmpPMP® CERTIFICATION EXAM TRAINING
PMP® CERTIFICATION EXAM TRAINING
www.edureka.co

More Related Content

What's hot

XML Schema
XML SchemaXML Schema
XML Schema
yht4ever
 
Time and work questions and answers
Time and work questions and answersTime and work questions and answers
Time and work questions and answers
Mydear student
 
Garbage collection
Garbage collectionGarbage collection
Garbage collection
Somya Bagai
 
Introduction to Ruby
Introduction to RubyIntroduction to Ruby
Introduction to Ruby
kim.mens
 
Garbage collection
Garbage collectionGarbage collection
Garbage collection
Mudit Gupta
 
React js basics
React js basicsReact js basics
React js basics
Maulik Shah
 
Switch statement
Switch statementSwitch statement
Switch statement
Patrick John McGee
 
Functional programming with Java 8
Functional programming with Java 8Functional programming with Java 8
Functional programming with Java 8
Talha Ocakçı
 
INTRODUCTION TO C PROGRAMMING
INTRODUCTION TO C PROGRAMMINGINTRODUCTION TO C PROGRAMMING
INTRODUCTION TO C PROGRAMMING
Abhishek Dwivedi
 
Clean Code I - Best Practices
Clean Code I - Best PracticesClean Code I - Best Practices
Clean Code I - Best Practices
Theo Jungeblut
 
C# programming language
C# programming languageC# programming language
C# programming language
swarnapatil
 
Java string handling
Java string handlingJava string handling
Java string handling
Salman Khan
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
Amit Tyagi
 
Functions in C
Functions in CFunctions in C
Functions in C
Kamal Acharya
 
C programming | Class 8 | III Term
C programming  | Class 8  | III TermC programming  | Class 8  | III Term
C programming | Class 8 | III TermAndrew Raj
 
Function in C
Function in CFunction in C
Function in C
Dr. Abhineet Anand
 
Array ppt
Array pptArray ppt
Array ppt
Kaushal Mehta
 
Constructors and destructors
Constructors and destructorsConstructors and destructors
Constructors and destructors
Nilesh Dalvi
 
Lec 04 function
Lec 04   functionLec 04   function
Lec 04 function
Naosher Md. Zakariyar
 

What's hot (20)

XML Schema
XML SchemaXML Schema
XML Schema
 
Time and work questions and answers
Time and work questions and answersTime and work questions and answers
Time and work questions and answers
 
Garbage collection
Garbage collectionGarbage collection
Garbage collection
 
Introduction to Ruby
Introduction to RubyIntroduction to Ruby
Introduction to Ruby
 
Garbage collection
Garbage collectionGarbage collection
Garbage collection
 
React js basics
React js basicsReact js basics
React js basics
 
Switch statement
Switch statementSwitch statement
Switch statement
 
Functional programming with Java 8
Functional programming with Java 8Functional programming with Java 8
Functional programming with Java 8
 
INTRODUCTION TO C PROGRAMMING
INTRODUCTION TO C PROGRAMMINGINTRODUCTION TO C PROGRAMMING
INTRODUCTION TO C PROGRAMMING
 
Clean Code I - Best Practices
Clean Code I - Best PracticesClean Code I - Best Practices
Clean Code I - Best Practices
 
C# programming language
C# programming languageC# programming language
C# programming language
 
Java string handling
Java string handlingJava string handling
Java string handling
 
Introduction to Javascript
Introduction to JavascriptIntroduction to Javascript
Introduction to Javascript
 
Functions in C
Functions in CFunctions in C
Functions in C
 
C programming | Class 8 | III Term
C programming  | Class 8  | III TermC programming  | Class 8  | III Term
C programming | Class 8 | III Term
 
Function in C
Function in CFunction in C
Function in C
 
Array ppt
Array pptArray ppt
Array ppt
 
Html intro
Html introHtml intro
Html intro
 
Constructors and destructors
Constructors and destructorsConstructors and destructors
Constructors and destructors
 
Lec 04 function
Lec 04   functionLec 04   function
Lec 04 function
 

Similar to C# Interview Questions | Edureka

Mit4021–%20 c# and .net
Mit4021–%20 c# and .netMit4021–%20 c# and .net
Mit4021–%20 c# and .net
smumbahelp
 
Mit4021–%20 c# and .net
Mit4021–%20 c# and .netMit4021–%20 c# and .net
Mit4021–%20 c# and .net
smumbahelp
 
Speculative analysis for comment quality assessment
Speculative analysis for comment quality assessmentSpeculative analysis for comment quality assessment
Speculative analysis for comment quality assessment
Pooja Rani
 
Journey's diary developing a framework using tdd
Journey's diary   developing a framework using tddJourney's diary   developing a framework using tdd
Journey's diary developing a framework using tdd
eduardomg23
 
21UCAC61 C# and .Net Programming.pdf(MTNC)(BCA)
21UCAC61 C# and .Net Programming.pdf(MTNC)(BCA)21UCAC61 C# and .Net Programming.pdf(MTNC)(BCA)
21UCAC61 C# and .Net Programming.pdf(MTNC)(BCA)
ssuser7f90ae
 
Devry CIS 247 Full Course Latest
Devry CIS 247 Full Course LatestDevry CIS 247 Full Course Latest
Devry CIS 247 Full Course Latest
Atifkhilji
 
C# Reference Guide
C# Reference GuideC# Reference Guide
C# Reference Guide
GlowTouch
 
OOP interview questions & answers.
OOP interview questions & answers.OOP interview questions & answers.
OOP interview questions & answers.
Questpond
 
Top 50 .NET Interview Questions and Answers 2019 | Edureka
Top 50 .NET Interview Questions and Answers 2019 | EdurekaTop 50 .NET Interview Questions and Answers 2019 | Edureka
Top 50 .NET Interview Questions and Answers 2019 | Edureka
Edureka!
 
C# c# for beginners crash course master c# programming fast and easy today
C# c# for beginners crash course master c# programming fast and easy todayC# c# for beginners crash course master c# programming fast and easy today
C# c# for beginners crash course master c# programming fast and easy today
Afonso Macedo
 
Design Patterns- Course for students .pptx
Design Patterns- Course for students  .pptxDesign Patterns- Course for students  .pptx
Design Patterns- Course for students .pptx
khaledmohamedadelkam
 
Desenvolvendo um Framework com TDD - Um Diário de Bordo - Agile Trends 2014
Desenvolvendo um Framework com TDD - Um Diário de Bordo - Agile Trends 2014Desenvolvendo um Framework com TDD - Um Diário de Bordo - Agile Trends 2014
Desenvolvendo um Framework com TDD - Um Diário de Bordo - Agile Trends 2014
eduardomg23
 
C Sharp Developer Roadmap By Scholarhat PDF
C Sharp Developer Roadmap By Scholarhat PDFC Sharp Developer Roadmap By Scholarhat PDF
C Sharp Developer Roadmap By Scholarhat PDF
Scholarhat
 
Introduction of C# & MVC
Introduction of C# & MVCIntroduction of C# & MVC
Introduction of C# & MVC
Kalpesh Satasiya
 
Introduction to C3.net Architecture unit
Introduction to C3.net Architecture unitIntroduction to C3.net Architecture unit
Introduction to C3.net Architecture unit
Kotresh Munavallimatt
 
C#.net, C Sharp.Net Online Training Course Content
C#.net, C Sharp.Net Online Training Course ContentC#.net, C Sharp.Net Online Training Course Content
C#.net, C Sharp.Net Online Training Course Content
SVRTechnologies
 
The tests are trying to tell you something@VoxxedBucharest.pptx
The tests are trying to tell you something@VoxxedBucharest.pptxThe tests are trying to tell you something@VoxxedBucharest.pptx
The tests are trying to tell you something@VoxxedBucharest.pptx
Victor Rentea
 
C programming interview questions
C programming interview questionsC programming interview questions
C programming interview questions
adarshynl
 

Similar to C# Interview Questions | Edureka (20)

Mit4021–%20 c# and .net
Mit4021–%20 c# and .netMit4021–%20 c# and .net
Mit4021–%20 c# and .net
 
csharp.docx
csharp.docxcsharp.docx
csharp.docx
 
Mit4021–%20 c# and .net
Mit4021–%20 c# and .netMit4021–%20 c# and .net
Mit4021–%20 c# and .net
 
Speculative analysis for comment quality assessment
Speculative analysis for comment quality assessmentSpeculative analysis for comment quality assessment
Speculative analysis for comment quality assessment
 
Journey's diary developing a framework using tdd
Journey's diary   developing a framework using tddJourney's diary   developing a framework using tdd
Journey's diary developing a framework using tdd
 
21UCAC61 C# and .Net Programming.pdf(MTNC)(BCA)
21UCAC61 C# and .Net Programming.pdf(MTNC)(BCA)21UCAC61 C# and .Net Programming.pdf(MTNC)(BCA)
21UCAC61 C# and .Net Programming.pdf(MTNC)(BCA)
 
Devry CIS 247 Full Course Latest
Devry CIS 247 Full Course LatestDevry CIS 247 Full Course Latest
Devry CIS 247 Full Course Latest
 
C# Reference Guide
C# Reference GuideC# Reference Guide
C# Reference Guide
 
OOP interview questions & answers.
OOP interview questions & answers.OOP interview questions & answers.
OOP interview questions & answers.
 
Top 50 .NET Interview Questions and Answers 2019 | Edureka
Top 50 .NET Interview Questions and Answers 2019 | EdurekaTop 50 .NET Interview Questions and Answers 2019 | Edureka
Top 50 .NET Interview Questions and Answers 2019 | Edureka
 
C# c# for beginners crash course master c# programming fast and easy today
C# c# for beginners crash course master c# programming fast and easy todayC# c# for beginners crash course master c# programming fast and easy today
C# c# for beginners crash course master c# programming fast and easy today
 
Design Patterns- Course for students .pptx
Design Patterns- Course for students  .pptxDesign Patterns- Course for students  .pptx
Design Patterns- Course for students .pptx
 
C# chap 1
C# chap 1C# chap 1
C# chap 1
 
Desenvolvendo um Framework com TDD - Um Diário de Bordo - Agile Trends 2014
Desenvolvendo um Framework com TDD - Um Diário de Bordo - Agile Trends 2014Desenvolvendo um Framework com TDD - Um Diário de Bordo - Agile Trends 2014
Desenvolvendo um Framework com TDD - Um Diário de Bordo - Agile Trends 2014
 
C Sharp Developer Roadmap By Scholarhat PDF
C Sharp Developer Roadmap By Scholarhat PDFC Sharp Developer Roadmap By Scholarhat PDF
C Sharp Developer Roadmap By Scholarhat PDF
 
Introduction of C# & MVC
Introduction of C# & MVCIntroduction of C# & MVC
Introduction of C# & MVC
 
Introduction to C3.net Architecture unit
Introduction to C3.net Architecture unitIntroduction to C3.net Architecture unit
Introduction to C3.net Architecture unit
 
C#.net, C Sharp.Net Online Training Course Content
C#.net, C Sharp.Net Online Training Course ContentC#.net, C Sharp.Net Online Training Course Content
C#.net, C Sharp.Net Online Training Course Content
 
The tests are trying to tell you something@VoxxedBucharest.pptx
The tests are trying to tell you something@VoxxedBucharest.pptxThe tests are trying to tell you something@VoxxedBucharest.pptx
The tests are trying to tell you something@VoxxedBucharest.pptx
 
C programming interview questions
C programming interview questionsC programming interview questions
C programming interview questions
 

More from Edureka!

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | Edureka
Edureka!
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
Edureka!
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
Edureka!
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
Edureka!
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
Edureka!
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
Edureka!
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
Edureka!
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
Edureka!
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
Edureka!
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
Edureka!
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
Edureka!
 

More from Edureka! (20)

What to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | EdurekaWhat to learn during the 21 days Lockdown | Edureka
What to learn during the 21 days Lockdown | Edureka
 
Top 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | EdurekaTop 10 Dying Programming Languages in 2020 | Edureka
Top 10 Dying Programming Languages in 2020 | Edureka
 
Top 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | EdurekaTop 5 Trending Business Intelligence Tools | Edureka
Top 5 Trending Business Intelligence Tools | Edureka
 
Tableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | EdurekaTableau Tutorial for Data Science | Edureka
Tableau Tutorial for Data Science | Edureka
 
Python Programming Tutorial | Edureka
Python Programming Tutorial | EdurekaPython Programming Tutorial | Edureka
Python Programming Tutorial | Edureka
 
Top 5 PMP Certifications | Edureka
Top 5 PMP Certifications | EdurekaTop 5 PMP Certifications | Edureka
Top 5 PMP Certifications | Edureka
 
Top Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | EdurekaTop Maven Interview Questions in 2020 | Edureka
Top Maven Interview Questions in 2020 | Edureka
 
Linux Mint Tutorial | Edureka
Linux Mint Tutorial | EdurekaLinux Mint Tutorial | Edureka
Linux Mint Tutorial | Edureka
 
How to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| EdurekaHow to Deploy Java Web App in AWS| Edureka
How to Deploy Java Web App in AWS| Edureka
 
Importance of Digital Marketing | Edureka
Importance of Digital Marketing | EdurekaImportance of Digital Marketing | Edureka
Importance of Digital Marketing | Edureka
 
RPA in 2020 | Edureka
RPA in 2020 | EdurekaRPA in 2020 | Edureka
RPA in 2020 | Edureka
 
Email Notifications in Jenkins | Edureka
Email Notifications in Jenkins | EdurekaEmail Notifications in Jenkins | Edureka
Email Notifications in Jenkins | Edureka
 
EA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | EdurekaEA Algorithm in Machine Learning | Edureka
EA Algorithm in Machine Learning | Edureka
 
Cognitive AI Tutorial | Edureka
Cognitive AI Tutorial | EdurekaCognitive AI Tutorial | Edureka
Cognitive AI Tutorial | Edureka
 
AWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | EdurekaAWS Cloud Practitioner Tutorial | Edureka
AWS Cloud Practitioner Tutorial | Edureka
 
Blue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | EdurekaBlue Prism Top Interview Questions | Edureka
Blue Prism Top Interview Questions | Edureka
 
Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka Big Data on AWS Tutorial | Edureka
Big Data on AWS Tutorial | Edureka
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | EdurekaA star algorithm | A* Algorithm in Artificial Intelligence | Edureka
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
 
Kubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | EdurekaKubernetes Installation on Ubuntu | Edureka
Kubernetes Installation on Ubuntu | Edureka
 
Introduction to DevOps | Edureka
Introduction to DevOps | EdurekaIntroduction to DevOps | Edureka
Introduction to DevOps | Edureka
 

Recently uploaded

To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
Sri Ambati
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
Laura Byrne
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
Product School
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Product School
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
Product School
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
DianaGray10
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
g2nightmarescribd
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Jeffrey Haguewood
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
ThousandEyes
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
Elena Simperl
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
BookNet Canada
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
UiPathCommunity
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 

Recently uploaded (20)

To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdfFIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
FIDO Alliance Osaka Seminar: Passkeys at Amazon.pdf
 
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
GenAISummit 2024 May 28 Sri Ambati Keynote: AGI Belongs to The Community in O...
 
The Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and SalesThe Art of the Pitch: WordPress Relationships and Sales
The Art of the Pitch: WordPress Relationships and Sales
 
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
AI for Every Business: Unlocking Your Product's Universal Potential by VP of ...
 
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
Unsubscribed: Combat Subscription Fatigue With a Membership Mentality by Head...
 
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
De-mystifying Zero to One: Design Informed Techniques for Greenfield Innovati...
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Connector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a buttonConnector Corner: Automate dynamic content and events by pushing a button
Connector Corner: Automate dynamic content and events by pushing a button
 
Generating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using SmithyGenerating a custom Ruby SDK for your web service or Rails API using Smithy
Generating a custom Ruby SDK for your web service or Rails API using Smithy
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
Slack (or Teams) Automation for Bonterra Impact Management (fka Social Soluti...
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
Assuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyesAssuring Contact Center Experiences for Your Customers With ThousandEyes
Assuring Contact Center Experiences for Your Customers With ThousandEyes
 
When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...When stars align: studies in data quality, knowledge graphs, and machine lear...
When stars align: studies in data quality, knowledge graphs, and machine lear...
 
FIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdfFIDO Alliance Osaka Seminar: Overview.pdf
FIDO Alliance Osaka Seminar: Overview.pdf
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...Transcript: Selling digital books in 2024: Insights from industry leaders - T...
Transcript: Selling digital books in 2024: Insights from industry leaders - T...
 
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
Dev Dives: Train smarter, not harder – active learning and UiPath LLMs for do...
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 

C# Interview Questions | Edureka