Home / C# Programming / Classes and Objects :: Discussion

Discussion :: Classes and Objects

  1. Which of the following statements is correct about the C#.NET code snippet given below?

    class Sample 
    {   
       private int i;   
       public Single j;    
       private void DisplayData()   
       {
          Console.WriteLine(i + " " + j); 
       } 
       public void ShowData() 
       {      
          Console.WriteLine(i + " " + j);  
       }   
    }
    

  2. A.

    j cannot be declared as public.

    B.

    DisplayData() cannot be declared as private.

    C.

    DisplayData() cannot access j.

    D.

    ShowData() cannot access to i.

    E.

    There is no error in this class.

    View Answer

    Workspace

    Answer : Option E

    Explanation :

    No answer description available for this question.


Be The First To Comment