You are not logged in.

#1 2015-09-15 05:47:29

hasnain
Administrator
From: Chichawatni
Registered: 2014-10-13
Posts: 8,355
Website

C Language Control Structures Executed:

C Programming Quizzes C Language Control Structures

Directions:
What will be the value of sum after the following program is executed?

Question:
void main()
{
   int sum=1, index = 9;
   do{
      index = index  1;
      sum *= 2;
   }while( index > 9 );
}

Option A):
2
Option B):
1.2
Option C):
4
Option D):
1

Correct Answer is Option A):
2


Failure is the first step towards seccess.

2015-09-15 05:47:29

Advertisement
Ads By Google

Re: C Language Control Structures Executed:



\n

Board footer