Question
namespace CompSciBitsConsoleApplication
{
class Sample
{
int i;
Single j;
public void SetData(int i, Single j)
{
i = i;
j = j;
}
public void Display()
{
Console.WriteLine(i + " " + j);
}
}
class MyProgram
{
static void Main(string[ ] args)
{
Sample s1 = new Sample();
s1.SetData(10, 5.4f);
s1.Display();
}
}
}
a.
0 0
b.
10 5.4
c.
10 5.400000
d.
10 5
Posted under C# programming
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Which of the following will be the correct output for the C#.NET program given below?
Similar Questions
Discover Related MCQs
Q. The this reference gets created when a member function (non-shared) of a class is called.
View solution
Q. Which of the following statements are correct?
1. Data members ofa class are by default public.
2. Data members of a class are by default private.
3. Member functions of a class are by default public.
4. A private function of a class can access a public function within the same class.
5. Member function of a class are by default private.
View solution
Q. Which of the following statements are correct about objects of a user-defined class called Sample?
1. All objects of Sample class will always have exactly same data.
2. Objects of Sample class may have same or different data.
3. Whether objects of Sample class will have same or different data depends upon a Project Setting made in Visual Studio.NET.
4. Conceptually, each object of Sample class will have instance data and instance member functions of the Sample class.
5. All objects of Sample class will share one copy of member functions.
View solution
Q. Which of the following statements is correct about classes and objects in C#.NET?
View solution
Q. Which of the following is used to define the member of a class externally?
View solution
Q. The operator used to access member function of a class?
View solution
Q. What is the most specified using class declaration ?
View solution
Q. Which of following statements about objects in “C#” is correct?
View solution
Q. “A mechanism that binds together code and data in manipulates, and keeps both safe from outside interference and misuse.In short it isolates a particular code and data from all other codes and data. A well-defined interface controls the access to that particular code and data.”
View solution
Q. Correct way of declaration of object of the following class is ?
class name
View solution
Q. The data members of a class by default are ?
View solution
Q. What does the following code imply ?
csharp abc;
abc = new charp();
View solution
Q. Which refrence modifier is used to define reference variable?
View solution
Q. Select the wrong statement about ‘ref’ keyword in C#?
View solution
Q. Select correct differences between ‘=’ and ‘==’ in C#.
View solution
Q. What is output for the following set of expression?
int a+= (float) b/= (long)c
View solution
Q. Which of following statements are correct about functions?
View solution
Q. When a function fun() is to receive an int, a single & a double and it is to return a decimal, then the correct way of defining this function is?
View solution
Q. How many values does a function return?
View solution
Q. Which return statement correctly returns the output:
View solution
Suggested Topics
Are you eager to expand your knowledge beyond C# programming? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!