What will be the output of the following C# code snippet?
class equality
{
int x;
int y;
boolean isequal()
{
return(x == y);
}
}
class Output
{
public static void main(String args[])
{
equality obj = new equality();
obj.x = 5;
obj.y = 5;
Console.WriteLine(obj.isequal());
}
}
class equality
{
int x;
int y;
boolean isequal()
{
return(x == y);
}
}
class Output
{
public static void main(String args[])
{
equality obj = new equality();
obj.x = 5;
obj.y = 5;
Console.WriteLine(obj.isequal());
}
}
A. false
B. true
D. 1
Answer: Option B
Join The Discussion