Practice CBSE Class 10 Computer Science loop control structure MCQs provided below. The MCQ Questions for Class 10 loop control structure Computers with answers and follow the latest CBSE/ NCERT and KVS patterns. Refer to more Chapter-wise MCQs for CBSE Class 10 Computers and also download more latest study material for all subjects
MCQ for Class 10 Computers loop control structure
Class 10 Computers students should review the 50 questions and answers to strengthen understanding of core concepts in loop control structure
loop control structure MCQ Questions Class 10 Computers with Answers
(1) What is offered by programming language to execute a statement or group of statement multiple times ?
(A) Loop control structure (B) Case control structure
(C) Array control structure (D) Process control structure
(2) Which of the given options show the looping part ?
(A) Body of loop (B) Control statement (C) Both (A) and (B) (D) None of these
(3) The main part of looping is known as what?
(A) Control of loop (B) Body of loop (C) Part of loop (D) Entry of loop
(4) Depending on the place of control statement in loop, it can be classified as what ?
(A) Entry-controlled (B) Exit-controlled (C) Process controlled (D) Both (A) and (B)
(5) Which of the following options show the example of entry controlled loop ?
(A) For loop (B) While loop (C) Do...while loop (D) Both (A) and (B)
(6) In which of the following loop it is possible that statements will not be executed even once before exiting from the loop ?
(A) Entry controlled loop (B) Exit controlled loop (C) Both (A) and (B) (D) None of these
(7) Which of the following options show example of exit-controlled loop ?
(A) For loop (B) While loop (C) Do...while loop (D) Both (A) and (B)
(8) In which of the following loop it is possible that statements will be executed at least once before exiting from the loop ?
(A) Entry-controlled loop (B) Exit-controlled loop (C) Both (A) and (B) (D) None of these
(9) In case of exit controlled loop, the statements can be executed at least minimum how many times ?
(A) One (B) More than one (C) Cannot be said (D) Zero
(10) C language provides how many basic loop control structure ?
(A) 3 (B) 4 (C) 5 (D) 6
(11) Which of the following options show the type of loop control structure ?
(A) For loop (B) While loop (C) Do...while loop (D) All of these
(12) Which of the following statement is used for looping ?
(A) if (B) from (C) for (D) where
(13) Which loop is used to execute block of statements for fixed number of times ?
(A) for loop(B) While loop (C) do...while loop (D) All of these
(14) For loop is an example of what ?
(A) Exit-controlled loop (B) Entry-controlled loop (C) Processing controlled loop (D) Process controlled loop
(15) For loop is made up of how many divisions ?
(A) 2 (B) 3 (C) 4 (D) 5
(16) A counter variable that is used to control the number of times a loop is to be executed is known by which name ?
(A) Process variable (B) Counter variable (C) Input variable (D) Output variable
(17) Which expression of For loop works as a test condition ?
(A) Statement-block (B) Expression-1 (C) Expression2 (D) Expression-3
(18) Which expression of For loop is tested every time ?
(A) Expression-1 (B) Expression-2 (C) Expression-3 (D) Statement-block
(19) What is used for checking loop terminating criteria ?
(A) Counter variable (B) Process variable (C) Input variable (D) Output variable
(20) Which expression is used for incrementing or decrementing value of control variable ?
(A) Statement-block (B) Expression-1 (C) Expression-2 (D) Expression-3
(21) Which of the following command can be given in expression-3 part of For loop ?
(A) i = i + 1; (B) i = 0; (C) Both (A) and (B) (D) None of these
(22) Which statement is used to display "*" on screen ?
(A) printf() (B) scanf() (C) int main() (D) anyone
(23) Which of the following option can be executed by incrementing value of count by 1 ?
(A) ++count (B) +count (C) count++ (D) count+
(24) What is known as using one for loop within another for loop ?
(A) Next for loop (B) Nested for loop (C) Inner for loop (D) Outer for loop
(25) In nested For loop, how many For loop can be used within another For loop ?
(A)One (B) Two (C) Three (D) Many
(26) In nested For loop, first of all what is executed ?
(A) First loop (B) Last loop (C) Inner loop (D) Outer loop
(27) Which of the following statement is used for looping ?
(A) why (B) when (C) while (D) where
(28) Which loop is used, when number of iteration cannot be pre-determined and when loop terminating condition is to be tested before entering the loop ?
(A) For (B) While (C) Do ... while (D) Anyone of them
(29) Under which of the following condition, while loop is to be used ?
(A) When the number of iteration cannot be pre-determined.
(B) When loop terminating condition is to be tested before entering the loop.
(C) Both (A) and (B) (D) None of these
(30) While loop is an example of which loop ?
(A) Entry-controlled loop(B) Exit-controlled loop (C) Process-controlled loop (D) Constant-controlled loop
(31)known as entry controlled loop ?
(A) As we check the condition after exit. (B) As we check the condition after entry.
(C) As we check the condition at the exit point (D) As we check the condition at the entry point
(32) What does program control evaluates first in while loop ?
(A) Test expression(B) Statement-block (C) Both (A) and (B) (D) None of these
(33) In while loop, what is evaluated first of all ?
(A) Statement-block (B) Test expression (C) (A) or (B) both (D) None of these
(34) What happen if in while loop test expression is evaluated to true ?
(A) Loop containing statement-block is executed (B) Loop containing statement-block is not executed
(C) Loop is terminated (D) Loop is repeated
(35) From the following, which statement is used for looping ?
(A) do ... while (B) for ... while (C) when ... while (D) if ... while
(36) Which loop is used, when the test expression is to be checked after executing body of loop ?
(A) for loop (B) while loop (C) do....while loop (D) anyone
(37) Do....while loop is which kind of loop ?
(A) Entry-controlled loop (B) Exit-controlled loop (C) Entrance-controlled loop (D) Both (A) and (B)
(38) For which of the reasons do....while loop is known as exit-controlled loop ?
(A) As condition is checked at the end of loop. (B) As condition is checked in starting of loop.
(C) As condition is checked in middle of loop. (D) As condition is checked everytime.
(39) In do....while loop, what is checked after execution of statements ?
(A) Statement-block (B) Test expression (C) Both (A) and (B) (D) None of these
(40) In do....while loop, how many times the execution of statement is done ?
(A) At least once (B) Sometime not even once (C) Can not be said (D) None of these
(41) In do....while loop , what is executed first ?
(A) Statement-block (B) Test expression (C) (A) and (B) both (D) None of these
(42) In do...while loop, what is done after the execution of statement-block ?
(A) Repetition of loop (B) Termination of loop (C) Test expression (D) Both (A) and (B)
(43) For every do clause, there must be what ?
(A) while (B) does (C) if (D) none of them are compulsory
(44) When there is a loop within another loop, it is known as what ?
(A) nested loop (B) next loop (C) nest loop (D) null loop
(45) To select the appropriate loop, which thing should be seen first ?
(A) Whether its entry-controlled or exit-controlled loop
(B) Its repeating how many statements
(C) Loop is infinite or not? (D) All of these
(46) What can be used for entry-controlled loop ?
(A) for loop (B) while loop (C) Both (A) and (B) (D) do....while loop
(47) What can be used for exit-controlled loop ?
(A) for loop (B) while loop (C) Both (A) and (B) (D) do....while loop
(48) By using what in C language, we may skip any part of loop ?
(A) break statement (B) continue statement (C) end statement (D) Both (A) and (b)
(49) What is done, when break statement comes in loop ?
(A) To terminate loop instantly
(B) Through program control executes the next statement following the loop
(C) Repetition of loop (D) Both (A) and (B)
(50) Which statement is used to come out from the loop control structure ?
(A) continue (B) break (C) Both (A) and (B) (D) end
(51) Which statement is used to terminate a case in the switch statement ?
(A) break statement(B) continue statement (C) end statement (D) anyone of these
(52) From the following under which statement program control executes the next statement following the loop ?
(A) break (B) end (C) stop (D) next
(53) From the following, which statement instead of forcing termination of loop, however, continue statement forces the next iteration of the loop to take place, skipping any code in between ?
(A) continue (B) break (C) Both (A) and (B) (D) None of these
(54) What is the role of continue statement ?
(A) To terminate the execution of another statement (B) To starts the execution of next iteration
(C) Both (A) and (B) (D) None of these
(55) in continue statement during loop, what is done if there is a execution of any condition?
(A) It leaves the other part of loop (B) The program control is repeated again (C) Both (A) and (B) (D) None of these
(56) which of the following option show the syntax of continue statement?
(A) Continue; (B) continue: (C) continue, (D) continue.
(57) If any loop runs forever and program control never comes out of it, then it is known as what ?
(A) Regular loop (B) Last loop (C) Control loop (D) Infinite loop
(58) Which of the following option is correct for infinite loop ?
(A) Infinite loop runs forever (B) Program control never comes out of it
(C) Both (A) and (b) (D) None of these
(59) when does loop become infinite?
(A) due to availability of exit condition in the logic of loop (B) Due to non-availability of exit condition in the logic of loop
(C) due to availability of entry condition in the logic of loop (D) due to non-availability of entry condition in the logic of loop
(60) Which shortcut key is used to terminate infinite loop ?
(A) Ctrl + A (B) Ctrl + B (C) Ctrl + C (D) Ctrl + D
| CBSE Class 10 Computer Science Charts in Calc MCQs |
| CBSE Class 10 Information Technology Communication Skills II MCQs |
| CBSE Class 10 Computer Science Computer Hardware MCQs |
| CBSE Class 10 Computer Science Computer Network MCQs |
| CBSE Class 10 Computer Vision MCQs |
| CBSE Class 10 Computer Science Data Editing and Formatting in Calc MCQs |
| CBSE Class 10 Data Science Artificial Intelligence MCQs |
| CBSE Class 10 Computer Science Data Types Operators And Expressions In C Language MCQs |
| CBSE Class 10 Computer Science Database Management System MCQs |
| CBSE Class 10 Information Technology Database Management System MCQs |
| CBSE Class 10 Computer Science Decision Structure MCQs |
| CBSE Class 10 Computer Science Digital Documentation Advanced MCQs |
| CBSE Class 10 Information Technology Digital Documentation Advanced MCQs |
| CBSE Class 10 Information Technology Electronic Spreadsheets Advanced MCQs |
| CBSE Class 10 Information Technology Entrepreneurial Skills II MCQs |
| CBSE Class 10 Computer Science Function in Calc MCQs |
| CBSE Class 10 Computer Science Fundamentals of Computer MCQs |
| CBSE Class 10 Information Technology Green Skills II MCQs |
| CBSE Class 10 Computer Science handling images in html MCQs |
| CBSE Class 10 Computer Science head and body sections MCQs |
| CBSE Class 10 Information Technology Information and Communication Technology Skills II MCQs |
| CBSE Class 10 Computer Science Internet Basics MCQs |
| CBSE Class 10 Computer Science Internet Services and Mobile Technologies MCQs |
| CBSE Class 10 Introduction to Artificial Intelligence MCQs |
| CBSE Class 10 Computer Science Introduction to C Language MCQs |
| CBSE Class 10 Computer Science Introduction to Calc MCQs |
| CBSE Class 10 Computer Science Links and CSS in HTML MCQs |
| CBSE Class 10 Computer Science List and Table Handling in HTML MCQs |
| CBSE Class 10 Computer Science loop control structure MCQs |
| CBSE Class 10 Natural Language Processing Artificial Intelligence MCQs |
| CBSE Class 10 Computer Science Problem and Problem Solving MCQs |
| CBSE Class 10 Information Technology Self-Management Skills II MCQs |
| CBSE Class 10 Computer Science Using I/O operations MCQs |
| CBSE Class 10 Computer Science Web Applications and Security MCQs |
| CBSE Class 10 Computer Science Working with Tables in HTML MCQs |
Important Practice Resources for Class 10 Computers
MCQs for loop control structure Computers Class 10
Students can use these MCQs for loop control structure to quickly test their knowledge of the chapter. These multiple-choice questions have been designed as per the latest syllabus for Class 10 Computers released by CBSE. Our expert teachers suggest that you should practice daily and solving these objective questions of loop control structure to understand the important concepts and better marks in your school tests.
loop control structure NCERT Based Objective Questions
Our expert teachers have designed these Computers MCQs based on the official NCERT book for Class 10. We have identified all questions from the most important topics that are always asked in exams. After solving these, please compare your choices with our provided answers. For better understanding of loop control structure, you should also refer to our NCERT solutions for Class 10 Computers created by our team.
Online Practice and Revision for loop control structure Computers
To prepare for your exams you should also take the Class 10 Computers MCQ Test for this chapter on our website. This will help you improve your speed and accuracy and its also free for you. Regular revision of these Computers topics will make you an expert in all important chapters of your course.
You can get most exhaustive CBSE Class 10 Computer Science loop control structure MCQs for free on StudiesToday.com. These MCQs for Class 10 Computers are updated for the 2025-26 academic session as per CBSE examination standards.
Yes, our CBSE Class 10 Computer Science loop control structure MCQs include the latest type of questions, such as Assertion-Reasoning and Case-based MCQs. 50% of the CBSE paper is now competency-based.
By solving our CBSE Class 10 Computer Science loop control structure MCQs, Class 10 students can improve their accuracy and speed which is important as objective questions provide a chance to secure 100% marks in the Computers.
Yes, Computers MCQs for Class 10 have answer key and brief explanations to help students understand logic behind the correct option as its important for 2026 competency-focused CBSE exams.
Yes, you can also access online interactive tests for CBSE Class 10 Computer Science loop control structure MCQs on StudiesToday.com as they provide instant answers and score to help you track your progress in Computers.