Srinivas Pabballa

Srinivas Pabballa

  • NA
  • 263
  • 32.1k

Test your skills:

Aug 27 2015 8:03 AM
Q: 
Which of the following will be the correct output for the C#.NET program given below?

namespace IndiabixConsoleApplication
{
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) 00
B) 10.5
C) 10 5.400
D) 10 5


Answers (7)