Chapters
Chapter 2: Number Systems
Chapter 3: Computer Organization
Chapter 4: Theoretical Concepts of Operating System
Chapter 5: Working with Windows Operating System
Chapter 6: Specification and Abstraction
Chapter 7: Composition and Decomposition
Chapter 8: Iteration and recursion
Chapter 9: Introduction to C++
Chapter 10: Flow of Control
Chapter 11: Functions
Chapter 12: Arrays and Structures
Chapter 13: Introducton to Object Oriented Programming Techniques
Chapter 14: Classes and objects
Chapter 15: Polymorphism
Chapter 16: Inheritance
Chapter 17: Computer Ethics and Cyber Security
Chapter 18: Tamil Computing

Solutions for Chapter 10: Flow of Control
Below listed, you can find solutions for Chapter 10 of Tamil Nadu Board of Secondary Education Tamil Nadu Board Samacheer Kalvi for Class 11th Computer Science Answers Guide.
Tamil Nadu Board Samacheer Kalvi solutions for Class 11th Computer Science Answers Guide Chapter 10 Flow of Control Evaluation - Section - A [Pages 177 - 178]
Choose the correct answer
What is the alternate name of the null statement?
No statement
Empty statement
Void statement
Zero statement
In C++, the group of statements should be enclosed within: ______
{ }
[ ]
( )
< >
The set of statements that are executed again and again in iteration is called ______
condition
loop
statement
body of loop
The multi-way branch statement ______
if
if … else
switch
for
How many types of iteration statements?
2
3
4
5
How many times the following loop will execute? for (int i = 0; i < 10; i++)
0
10
9
11
Which of the following is the exit control loop?
for
while
do…while
if…else
Identify the odd one from the keywords of jump statements?
break
switch
goto
continue
Which of the following is called the entry control loop?
do-while
for
while
if-else
A loop that contains another loop inside its body: ______
Nested loop
Inner loop
Inline loop
Nesting of loop
Tamil Nadu Board Samacheer Kalvi solutions for Class 11th Computer Science Answers Guide Chapter 10 Flow of Control Evaluation - Section - B [Page 178]
Very Short Answers
What are a null statement and compound statement?
What is a selection statement? write its types?
Correct the following code sigment:
if (x = 1)
p = 100;
else
p = 10;
What will be the output of the following code:
int year;
cin >> year;
if (year % 100 == 0)
if ( year % 400 == 0)
cout << "Leap";
else
cout << "Not Leap year";
If the input given is 2000?
What will be the output of the following code:
int year;
cin >> year;
if (year % 100 == 0)
if ( year % 400 == 0)
cout << "Leap";
else
cout << "Not Leap year";
If the input given is 2003?
What will be the output of the following code:
int year;
cin >> year;
if (year % 100 == 0)
if ( year % 400 == 0)
cout << "Leap";
else
cout << "Not Leap year";
If the input given is 2010?
What is the output of the following code?
for (int i=2; i<=10 ; i+=2)
cout << i;
Write a for loop that displays the number from 21 to 30.
Write a while loop that displays numbers 2, 4, 6, 8.......20.
Compare an if and a ? : operator.
Tamil Nadu Board Samacheer Kalvi solutions for Class 11th Computer Science Answers Guide Chapter 10 Flow of Control Evaluation - Section - C [Page 178]
Convert the following if-else to a single conditional statement:
if (x >= 10)
a = m + 5;
else
a = m;
Rewrite the following code so that it is functional:
v = 5;
do;
{
total += v;
cout << total;
while v <= 10
Write a C++ program to print the multiplication table of a given number.
Write the syntax and purpose of the switch statement.
Write a short program to print the following series:
(a) 1 4 7 10...... 40
Tamil Nadu Board Samacheer Kalvi solutions for Class 11th Computer Science Answers Guide Chapter 10 Flow of Control Evaluation - Section - D [Pages 178 - 179]
Explain in detail
Explain the control statement with a suitable example.
What is an entry control loop? Explain any one of the entry-controlled loops with a suitable example.
Write a program to find the LCM and GCD of two numbers.
Write a program to find the sum of the following series:
`x – x^2/(2!) + x^3/(3!) + x^4/(4!) + x^5/(5!) – x^6/(6!)`
Write a program to find the sum of the following series:
`x + x^2/2 + x^3/3 + ……… + x^n/n`
Write a program to find sum of the series
S = 1 + x + x2 +..... + xn
Solutions for Chapter 10: Flow of Control

Tamil Nadu Board Samacheer Kalvi solutions for Class 11th Computer Science Answers Guide chapter 10 - Flow of Control
Shaalaa.com has the Tamil Nadu Board of Secondary Education Mathematics Class 11th Computer Science Answers Guide Tamil Nadu Board of Secondary Education solutions in a manner that help students grasp basic concepts better and faster. The detailed, step-by-step solutions will help you understand the concepts better and clarify any confusion. Tamil Nadu Board Samacheer Kalvi solutions for Mathematics Class 11th Computer Science Answers Guide Tamil Nadu Board of Secondary Education 10 (Flow of Control) include all questions with answers and detailed explanations. This will clear students' doubts about questions and improve their application skills while preparing for board exams.
Further, we at Shaalaa.com provide such solutions so students can prepare for written exams. Tamil Nadu Board Samacheer Kalvi textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.
Concepts covered in Class 11th Computer Science Answers Guide chapter 10 Flow of Control are Introduction to Flow of Control, Statements, Control Statements, Selection Statements, Iteration Statements, Jump Statements.
Using Tamil Nadu Board Samacheer Kalvi Class 11th Computer Science Answers Guide solutions Flow of Control exercise by students is an easy way to prepare for the exams, as they involve solutions arranged chapter-wise and also page-wise. The questions involved in Tamil Nadu Board Samacheer Kalvi Solutions are essential questions that can be asked in the final exam. Maximum Tamil Nadu Board of Secondary Education Class 11th Computer Science Answers Guide students prefer Tamil Nadu Board Samacheer Kalvi Textbook Solutions to score more in exams.
Get the free view of Chapter 10, Flow of Control Class 11th Computer Science Answers Guide additional questions for Mathematics Class 11th Computer Science Answers Guide Tamil Nadu Board of Secondary Education, and you can use Shaalaa.com to keep it handy for your exam preparation.