C# Interview Questions

Showing Questions 1 - 20 of 28 Questions
First | Prev | Next | Last Page
Sort by: 
 | 
Jump to Page:
  •  

    How do you make a class not instantiable

    A) Making class as AbstractB) Having a Private constructorC) Making the class sealedD) Both A & B

    Naveen Kumar Shivanadri

    • Sep 8th, 2016

    Answer is A is always correct and B is also correct only the situation when the class does not have the static methods on it (in the question, there is no mentioned that there is no static method in it)
    So, only A is correct answer.

    Naveen Kumar Shivanadr.

    ramya

    • Oct 13th, 2015

    Making class as Abstract

  •  

    Is it possible to have different access modifiers on the get/set methods of a property? Justify

    S Manasa

    • Jul 8th, 2019

    Generally, the access modifier of the property is considered as the access modifier of both the accessors if no access modifier is specified for the accessors. Only one of the accessor can be specifi...

  •  

    Default Access Specifer

    What is default access specifer of a class in C#? Is it internal or private?class foo{ int Var; }In the above code snippet. What is the default access specifier for the variable Var.

    Star Read Best Answer

    Editorial / Best Answer

    phanish  

    • Member Since Jul-2010 | Jul 16th, 2010


    Default Access Specifier of a class is Internal and Default Access Specifier of Member Variable is Private

  •  

    Divide Two Numbers Without Using Division and Modulus Operator

    Write C# code to divide two numbers without using the division and modulus operator

    Sujit

    • Feb 18th, 2019

    Keep on subtracting divisor from dividend until dividend is 0 and return the count as quotient.

    Pushpa Sundar

    • Mar 16th, 2018

    "java import java.util.Scanner; public class Divition { public static void main(String[] args) { Scanner scn=new Scanner(System.in); System.out.println("Enter the Divi...

  •  

    Any process can be divided into multiple

    Skill/Topic: AdvancedA) ProgramsB) ThreadsC) Application domains

    Star Read Best Answer

    Editorial / Best Answer

    LordAlex  

    • Member Since Nov-2011 | Nov 5th, 2011


    Application domains are typically created by runtime host( i.e. Windows process/program). Application domains provide an isolation boundary for security,.... .NET program is an Assembly loading into an Application domain. Threads are the operating system construct used by the common language runtime to execute code in Application domains. Therefore, for .NET, Process (runtime host) -> Application Domains -> Assemblies (.NET programs)-> Managed Threads.

    Sivavt

    • Mar 25th, 2012

    App domains. This could be best understood by taking an example of a browser program. A browser may run multiple web applications simultaneously. All these could be run in separate app domains. So, i...

  •  

    Which statement is invalid with regards to Constant

    A) They must be initialized when they are declaredB) The value of the constant must be computable at compile timeC) Constants are not staticD) Constant is a variable whose value can be changed through out it’s life time when it is static.

    Elean0r

    • May 25th, 2011

    Statement D is definitely invalid. Statement C occupies a grey area, since:a) a const field will have the same value in each object of that class; so it appears to? have same effect as a static reado...

  •  

    In a multilevel hierarchy how are the constructors are called

    A) TopDownB) BottomUpC) None

    Sunil

    • Aug 31st, 2014

    TOPDOWN is the correct answer. Always base class constructor is called before a sub-class constructor gets called. So, if a class is higher in the class hierarchy, then it will always get called be...

    narendra

    • Aug 14th, 2014

    "c# class Program { public class BaseClass { public BaseClass() { Console.WriteLine("Base class constructor"); ...

  •  

    Public Members

    Why do we use properties rather than public members?

    Star Read Best Answer

    Editorial / Best Answer

    netdev  

    • Member Since Oct-2009 | Oct 10th, 2009


    To the user of an object, property and public member may not make much difference with respect to syntax. However, property provides the ability to combine both field and method via the get and set accessors.

    MS Help for C# presents the best answer for using properties:

    Properties have many uses: they can validate data before allowing a change; they can transparently expose data on a class where that data is actually retrieved from some other source, such as a database; they can take an action when data is changed, such as raising an event, or changing the value of other fields.

    ms-help://MS.VSCC.v90/MS.MSDNQTR.v90.en/dv_csref/html/f7f67b05-0983-4cdb-96af-1855d24c967c.htm

    azita2005

    • Apr 1st, 2010

    With Properties, we can implement validation.For example, if we have customer age and we want to add validation on  the age, we can do it with properties.Another benefits of properties is that we can protect a field in a class by reading and writing it through the properties.

    SeeSharp

    • Mar 7th, 2010

    Private data fields of class should not be exposed by making them public. Instead they can made visible using public properties in more controlled manner. Also we can make properties read only or read/write.

  •  

    AutoPostBack Property

    There is Cancel button and OK button on page. When we click Cancel button it skips all validation controls and goes to next page.(a)Page AutoPostback of Cancel is True.(b)Page AutoPostback of Cancel is False.(c)Page AutoPostback of OK is True.(d)Page AutoPostback of OK is False.Which option is correct?

    Star Read Best Answer

    Editorial / Best Answer

    solanki.hr  

    • Member Since Dec-2009 | Dec 10th, 2009


    A button control does not have AutoPostBack property it has click event. so once you click on cancel and if its CausesValidation Property is false it will skips all validations, and if it is true it will validate the controls on the page.

    AutoPostBack property is for say DropDown,textbox etc... whnever you change/enter value/keyed some caharcter in textbox or change your selection in drop down postback will happen if that control's is AutoPostBack property is true, depending on that postback you can fill values or set some values for other controls or you can do some validation against enterd or selcted values.

    e.g. say tehre are 2 drop down. DropDown1 and DropDown2
    DropDown2 is currently holding states of US country as in DropDown1 you have selcted US. Now you want to fill DropDown2 with state value of India.
    Now if
    DropDown1.AutopostBack = True;

    and you change DropDown1's value from Us to India. 
    Page will post back to server and you can fill DropDown2 with Indian States.

    Thanks,
    Solanki  

  •  

    C# Data Table Multiple Rows

    You have multiple rows in C# data table and you have to save it in database using just one call, How will you do it?

    Star Read Best Answer

    Editorial / Best Answer

    LordAlex  

    • Member Since Nov-2011 | Nov 5th, 2011


    In a typical multiple-tier implementation, the steps for creating and refreshing a DataSet, and in turn, updating the original data are to: 1. Build and fill each DataTable in a DataSet with data from a data source using a DataAdapter. 2. Change the data in individual DataTable objects by adding, updating, or deleting DataRow objects. 3. Invoke the GetChanges method to create a second DataSet that features only the changes to the data. 4. Call the Update method of the DataAdapter, passing the second DataSet as an argument. 5. Invoke the Merge method to merge the changes from the second DataSet into the first. 6. Invoke the AcceptChanges on the DataSet. Alternatively, invoke RejectChanges to cancel the changes.

    Vasu

    • Apr 10th, 2015

    Yes

    indrajith

    • Jan 22nd, 2015

    We can use SqlBulkCopy class here for example

    Code
    1. SqlBulkCopy  bulkCopy=new SqlBulkCopy  (sqlconn);
    2.  bulkCopy.DestinationTableName = "dbtablename";
    3.  bulkCopy.WriteToServer(datatable);
    4.  

  •  

    What are constructors in .Net

    Abinash Dinakaran

    • Dec 22nd, 2014

    Constructors are the member functions which has same name as class name. Constructors are used to initialize a value for a variable so that we can be able to avoid junk values thrown to a variable.

    sunil

    • Sep 24th, 2014

    Constructor is the special type of methods, which is called when we crate the object for the class.
    Constructor will have same name as class name.
    overloaded constructor can also be there.

  •  

    Object Oriented and Object Based Language

    Explain What are Object Oriented Language and Object Based Language

    Star Read Best Answer

    Editorial / Best Answer

    Aarthy_SP  

    • Member Since Dec-2008 | Dec 10th, 2008


    Any langauge based on encapsulation concpet and operations with the objects are called as Object Based language. Exmaple : VB is a Object based and not an Object oriented

    Any langauge based on encapsulation concept and operations with the objects and also dealing with the inheritance and polymorphism are called as Object Oriented language. Exmaple : C++,C#

    Arpit Mandloi

    • Nov 25th, 2015

    Object Based languages: 1. Object-based language doesn't support all the features of OOPs like Polymorphism and Inheritance 2. Object-based language has in-built object like JavaScript has window obje...

  •  

    What is the difference between const and static read-only?

    The difference is that static read-only can be modified by the containing class, but const can never be modified and must be initialized to a compile time constant. To expand on the static read-only case a bit, the containing class can only modify it:-- in the variable declaration (through a variable initializer).-- in the static constructor (instance constructors if it's not static).

    Star Read Best Answer

    Editorial / Best Answer

    Answered by: Eddie Quiroz

    • Sep 3rd, 2005


    A const must be initialized at the time of its creation. A readonly field can be assigned to once in the class constructor allowing you to pass in the value at run-time. Declaring fields as const protects both you and other programmers from accidentally changing the value of the field. Also note that with const fields, the compiler performs some optimization by not declaring any stack space for the field. The readonly keyword is similar to const, with two exceptions. First, the storage of a readonly field is the same as a regular read-write field, and thus there is no performance benefit. Secondly, readonly fields can be initialized in the constructor of the containing class.

    chandra_123

    • Apr 7th, 2009

    As static read-only variables must be initialized in the static constructor (static constructor cannot have parameters and it cannot be called manually), it is efficient to used const variables over static read-only variables if you know the values at creation of these variables.

  •  

    Which of the following is not a C# reserved keyword

    A) IsB) AsC) InD) Of

  •  

    Why strings are immutable?

    Jeevan

    • Apr 20th, 2012

    People, please read the question before answering, don't just answer "Why" is the question - not "how".

  •  

    The following code fails. Why?

    int a = 5; int b = 5; object oa = a; object ob = b; Debug.Assert(oa == ob, "oa is not equal ob");

    chidski

    • Oct 17th, 2013

    Given code fails bcoz. debug result is wrong.. Please see below int a = 5; int b = 5; object oa = a; object ob = b; Debug.Assert(oa != ob...

  •  

    Second maximum number

    how to find out second maximum number in C#?

    Roger Hyde

    • Feb 6th, 2016

    Linq makes this quite simple

    Code
    1. int GetSecondMax(int[] numbers)
    2. {
    3.         return numbers.Distinct().OrderByDescending(n => n).Skip(1).Take(1).FirstOrDefault();
    4. }

  •  

    Following are the collections in C#:

    Skill/Topic: AdvancedA) structsB) enumC) dictionariesExplanation: Ans. b & c. a isn’t a collection .

    Star Read Best Answer

    Editorial / Best Answer

    LordAlex  

    • Member Since Nov-2011 | Nov 5th, 2011


    All collections directly or indirectly should implement the ICollection interface or the ICollection(Of T) generic interface. If you check System.Array you will see ICollection interface in there. Correct answer is C, it doesn't matter that there are methods that can provide arrays of Names and Values. Because if you are reasoning like this, it means bject.ToString().ToCharArray() cause all classes are being collections.

    LordAlex

    • Nov 5th, 2011

    All collections directly or indirectly should implement the ICollection interface or the ICollection(Of T) generic interface. If you check System.Array you will see ICollection interface in there. Co...

  •  

    Advantage of avl tree over binary search tree.

    What is advantage using avl tree instead of using binary search tree ?

    simran

    • Nov 23rd, 2016

    In BST, the time complexity of search operation (average case) is taken to be O(log n). But in the worst case, i.e the degenerate trees/skewed trees time complexity of search operation is O(n) which c...

    kirubasri

    • Sep 8th, 2015

    Better search times for keys

  •  

    How do I create a Delegate/MulticastDelegate?

    C# requires only a single parameter for delegates: the method address. Unlike other languages, where the programmer must specify an object reference and the method to invoke, C# can infer both pieces of information by just specifying the method's name. For example, let's use System.Threading.ThreadStart: Foo MyFoo = new Foo();ThreadStart del = new ThreadStart(MyFoo.Baz);This means that delegates can...

    Star Read Best Answer

    Editorial / Best Answer

    Answered by: Raghu

    • Sep 29th, 2005


    This article is good.

    Introduction


    In this article I am going to share my knowledge on Delegates in C#.This would explain the Delegate using simple examples so that the beginner can understand the same.


    What is Delegate?


    Definition:

    Delegate is type which  holds the method(s) reference in an object.
    it is also reffered as a type safe function pointers.

    Advantages:
    .Encapsulating the method's call from caller
    .Effective use of Delegat improves the performance of application.
    .used to call a method asynchronously.

    Declaration:

    public delegate type_of_delegate delegate_name()

    Example : public delegate int mydelegate(int delvar1,int delvar2)

    Note:
    .you can use delegeate without parameter or with parameter list
    .you should follow the same syntax as in the method
    (if you are reffering the method with two int parameters and int return type the delegate which you are declaring should be the same format.This is how it
    is reffered as type safe function pointer)

    Sample Program using Delegate :

    public delegate double Delegate_Prod(int a,int b);

    class Class1
    {


    static double fn_Prodvalues(int val1,int val2)
      {
    return val1*val2;
      }
    static void Main(string[] args)
    {


    //Creating the Delegate Instance
    Delegate_Prod delObj = new Delegate_Prod(fn_Prodvalues);


    Console.Write("Please Enter Values");

    int v1 = Int32.Parse(Console.ReadLine());
    int v2 = Int32.Parse(Console.ReadLine());

    //use a delegate for processing

    double res = delObj(v1,v2);
    Console.WriteLine ("Result :"+res);
    Console.ReadLine();

    }
    }


    Explanation:

    Here I have used a small program which demonstrates the use of delegate.

    The delegate "Delegate_Prod" is declared with double return type and which accepts only two integer parameters.

    Inside the Class the method named fn_Prodvalues is defined with double return type and two integer parameters.(The delegate and method is having the same signature and parameters type)

    Inside the Main method the delegate instance is created and the function name is passed to the
    delegate instance as following.

    Delegate_Prod delObj = new Delegate_Prod(fn_Prodvalues);

    After this we are accepting the two values from the user and passing those values to the delegate as we do using method .

    delObj(v1,v2);

    Here  delegate object encapsulates the method functionalities and return the result as we specified
    in the method.


    Multicast Delegate


    What is Multicast Delegate? :
    It is a Delegate which holds the reference of more than one methods.
    Multicast delegates must contain only methods that return void, else there is a run-time exception.

    Simple Program using Multicast Delegate
    ----------------------------------------

    delegate void Delegate_Multicast(int x, int y);

    Class Class2

    {
    static void Method1(int x, int y) {
     Console.WriteLine("You r in Method 1");
    }
    static void Method2(int x, int y) {
     Console.WriteLine("You r in Method 2");
    }
    public static void Main()
    {
     Delegate_Multicast func = new Delegate_Multicast(Method1);

     func += new Delegate_Multicast(Method2);
     func(1,2);             // Method1 and Method2 are called
     func -= new Delegate_Multicast(Method1);
     func(2,3);             // Only Method2 is called
    }

    }
                               

    Explanation:

    In the above example you can see that two methods are defined named method1 and method2 which takes two integer parameters and return type as void.

    In the main method the Delegate object is created using the following statement


    Delegate_Multicast func = new Delegate_Multicast(Method1);

    Then the Delegate is added using the += operator and removed using -= operator.



    Naveen Kumar Shivanadri

    • Sep 8th, 2016

    Delegate is not type. It is just pointer method which is used to improve the performance. Suppose we want to execute a method 10 times by using calling method by using class name or instance, 10 time...

    Rajesh Muurya

    • Aug 9th, 2016

    I have some doubt.
    Raghus Says: Delegate is type which holds the method(s) reference in an object.
    My question is if Delegate is type then how we create a object of delegate? Because, we know that we can create object only struct and class.

Showing Questions 1 - 20 of 28 Questions
First | Prev | Next | Last Page
Sort by: 
 | 
Jump to Page: