Register Now

Login

Lost Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

What will be the output of the following C# code?
static void Main(string[] args)
{
int i, s = 0, a = 1, d;
i = Convert.ToInt32(Console.ReadLine());
do
{
d = i % (2 * 4);
s = s + d * a;
}while ((Convert.ToInt32(i = i / (2 * 4))) != 0 && (Convert.ToBoolean(Convert.ToInt32((a) = (a * 10)))));
Console.WriteLine(s);
Console.ReadLine();
}
enter i = 342.

What will be the output of the following C# code?
static void Main(string[] args)
{
int i, s = 0, a = 1, d;
i = Convert.ToInt32(Console.ReadLine());
do
{
d = i % (2 * 4);
s = s + d * a;
}while ((Convert.ToInt32(i = i / (2 * 4))) != 0 && (Convert.ToBoolean(Convert.ToInt32((a) = (a * 10)))));
Console.WriteLine(s);
Console.ReadLine();
}
enter i = 342.
a) It finds binary equivalent of i
b) It finds octal equivalent of i
c) It finds sum of digits of i
d) It finds reverse of i

Answer: b
Explanation: Output :
i = 342.
s = 526.

Join The Discussion