Saved Bookmarks
| 1. |
22. What will be the output of the following programint a, b=4;for(a=6; a |
|
Answer» uired ANSWER:- Correct Code:int a, b=4; for(a=6;a<=24;a+=6) { if(a%b==0) break; } System.out.println(a); Output:Explanation:
See the attachment for output. •••♪ |
|