int i=0; int j=0; loop: if(i = 0) i++; i++; j++; if(j<= 25) goto loop xxx: How many times is the loop entered?

Showing Answers 1 - 7 of 7 Answers

shirsangshu dutta

  • Jun 16th, 2006
 

25

note i=0

  Was this answer useful?  Yes

Shilpi

  • Jun 18th, 2006
 

26 times

  Was this answer useful?  Yes

Shilpi

  • Jun 18th, 2006
 

26 times it will enter the loop for j=0 to j=25 since it depends only on the value of j and not i.

  Was this answer useful?  Yes

Shilpi

  • Jun 18th, 2006
 

26 times as it depends only on the value of j and not on i

  Was this answer useful?  Yes

nikhil

  • Oct 11th, 2006
 

answer:-  26 since j starts from 0 and it will count upto 25 .... so number of count value is 26.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions