Computer Science Online Courses

Android MCQs

Android Frequently Asked Questions

C Programming Frequently Asked Questions MCQ with Answers PDF

C Programming Frequently Asked Questions Multiple Choice Questions (MCQ), Android quiz answers PDF to study android online course for android classes. if statement Multiple Choice Questions and Answers (MCQs), Android quiz questions for online degrees. "C Programming Frequently Asked Questions" PDF Book: learning c language with interactive questions and answers, introduction to computer questions and answers, c programming practice exercises with answers test prep for information and communication technology.

"By evaluating the following statement where x=25.0 and y=15.0 <code>if (y < 15.0 && y >= 0.0)<br>x = 5 * y;<br>else<br>x = 2 * y; </code>, the value of x is" MCQ PDF: c programming frequently asked questions with choices 30, 45, 60, and 75 for online degrees. Study c programming frequently asked questions quiz questions for merit scholarship test and certificate programs for associates in computer science.

MCQs on C Programming Frequently Asked Questions Quiz

MCQ: By evaluating the following statement where x=25.0 and y=15.0 if (y < 15.0 && y >= 0.0)
x = 5 * y;
else
x = 2 * y;
, the value of x is

30
45
60
75

MCQ: By evaluating the following statement where x=25.0 and y=15.0if (y < 15.0)
{
if (y >= 0.0)
x = 5 * y;
else
x = 2 * y;
}
else
x = 3 * y;
, the value of x is

15
30
45
75

MCQ: By evaluating the following statement if (12 < 12 )
printf("less");
else
printf("not less")};
, the output is

less
not less
LESS
NOT LESS

MCQ: By evaluating the following statement where var1=25.12 and var2=15.00 if (var1 <= var2)
printf("less or equal/n");
else
printf("Greater then\n")};
, the output is

less or equal
Greater then
less or equal Greater then
Compiler error

MCQ: By evaluating the following statement where x=25.0 and y=15.0 if (y!= (x-10.0))
x = x - 10.0;
else
x = x / 2.0;
, the value of x is

25
12
15
12.5