Advertisements
Chapters
2: Number Systems
3: Computer Organization
4: Theoretical Concepts of Operating System
5: Working with Windows Operating System
6: Specification and Abstraction
7: Composition and Decomposition
8: Iteration and recursion
9: Introduction to C++
▶ 10: Flow of Control
11: Functions
12: Arrays and Structures
13: Introducton to Object Oriented Programming Techniques
14: Classes and objects
15: Polymorphism
16: Inheritance
17: Computer Ethics and Cyber Security
18: Tamil Computing
![Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board chapter 10 - Flow of Control Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board chapter 10 - Flow of Control - Shaalaa.com](/images/computer-science-english-class-11-tn-board_6:5f2b1b2038084cf381bfa42c826a928c.jpg)
Advertisements
Solutions for Chapter 10: Flow of Control
Below listed, you can find solutions for Chapter 10 of Tamil Nadu Board of Secondary Education Samacheer Kalvi for Computer Science [English] Class 11 TN Board.
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board 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
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board 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.
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board 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
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board 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:
Write a program to find the sum of the following series:
Write a program to find sum of the series
S = 1 + x + x2 +..... + xn
Solutions for 10: Flow of Control
![Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board chapter 10 - Flow of Control Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board chapter 10 - Flow of Control - Shaalaa.com](/images/computer-science-english-class-11-tn-board_6:5f2b1b2038084cf381bfa42c826a928c.jpg)
Samacheer Kalvi solutions for Computer Science [English] Class 11 TN Board chapter 10 - Flow of Control
Shaalaa.com has the Tamil Nadu Board of Secondary Education Mathematics Computer Science [English] Class 11 TN Board 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. Samacheer Kalvi solutions for Mathematics Computer Science [English] Class 11 TN Board 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. Samacheer Kalvi textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.
Concepts covered in Computer Science [English] Class 11 TN Board chapter 10 Flow of Control are Introduction to Flow of Control, Statements, Control Statements, Selection Statements, Iteration Statements, Jump Statements.
Using Samacheer Kalvi Computer Science [English] Class 11 TN Board 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 Samacheer Kalvi Solutions are essential questions that can be asked in the final exam. Maximum Tamil Nadu Board of Secondary Education Computer Science [English] Class 11 TN Board students prefer Samacheer Kalvi Textbook Solutions to score more in exams.
Get the free view of Chapter 10, Flow of Control Computer Science [English] Class 11 TN Board additional questions for Mathematics Computer Science [English] Class 11 TN Board Tamil Nadu Board of Secondary Education, and you can use Shaalaa.com to keep it handy for your exam preparation.