MCQOPTIONS
Bookmark
Saved Bookmarks
→
C++ Programming
→
Constructors And Destructors
→
How many types of loops are there?..
1.
How many types of loops are there?
A.
1
B.
2
C.
3
D.
4
E.
None of these
Answer» E. None of these
Show Answer
Discussion
No Comment Found
Post Comment
Related MCQs
What is the output of this program?<br><pre class="prettyprint lang-c">#include <iostream><br> using namespace std;<br> int main()<br> {<br> int k;<br> for (k = 0; k < 20; k++);<br> {<br> cout << k;<br> }<br> return 0;<br> }<br></iostream></pre>
What is the output of this program?<br><pre class="prettyprint lang-c">#include <iostream><br> using namespace std;<br> int main()<br> {<br> int num = 20;<br> for ( ; ;)<br> cout << num;<br> return 0;<br> }<br></iostream></pre>
How many types of loops are there?
Reply to Comment
×
Name
*
Email
*
Comment
*
Submit Reply