Control Instructions

Q1:
The C#.NET code snippet given below generates ____ numbers series as output?
int i = 1, j = 1, val;
while (i < 25)
{
    Console.Write(j + ' ');
    val = i + j;
    j = i;
    i = val;
}

A Prime

B Fibonacci

C Palindrome

D Odd

E Even

ANS:B - Fibonacci

No answer description is available. Let's discuss.



img not found
img

For help Students Orientation
Mcqs Questions

One stop destination for examination, preparation, recruitment, and more. Specially designed online test to solve all your preparation worries. Go wherever you want to and practice whenever you want, using the online test platform.