adplus-dvertising
frame-decoration

Question

What will be the output of the following set of code?
class sum   
 {
     public int x;
     public int y;
     public  int add (int a,  int b)
     {
         x = a + b;
         y = x + b;
         return 0;
     }
 }    
 class Program
 {
     static void Main(string[] args)
     {
         sum obj1 = new sum();
         sum obj2 = new sum();   
         int a = 2;
         obj1.add(a,  a + 1);
         obj2.add(5,  a);
         Console.WriteLine(obj1.x + "  " + obj2.y);     
         Console.ReadLine();
     }
 }

a.

6, 9

b.

5, 9

c.

9, 10

d.

3, 2

Posted under C# programming

Answer: (b).5, 9

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What will be the output of the following set of code?

Similar Questions

Discover Related MCQs

Q. Accessibility modifier defined in a class are?

Q. Choose the statements which are false in nature:

Q. Which of these access specifiers must be used for main() method?

Q. What is output for the following code snippet?

Q. True Statement about ‘ref’ keyword used in C#.NET are?

Q. Keyword used to define call by reference parameter in C# .NET?

Q. Which statement is/are correct?

Q. The method in which large or variable number of arguments are handled is known as:

Q. The modifiers used to define an array of parameters or list of arguments:

Q. Select the correct declaration of the defining array of parameters:

Q. What are strings in C#?

Q. Select the namespace in which string class is built?

Q. Select the interfaces defined by the string class?

Q. Choose the constructor type used to build strings from character array:

Q. Select the operators used for checking the equality in strings:

Q. What does the given code set specifies?

public static int Compare(string strA, string strB)

Q. Which string operation does the below mentioned method define?

public static string Concat(string str0, string str1)

Q. Method used to remove white space from string?

Q. Which of these constructors is used to create an empty String object?

Q. Which of these method of class String is used to obtain length of String object?