Chapters
Chapter 2: An Introduction to Adobe Pagemaker
Chapter 3: Introduction to Database Management System
Chapter 4: Introduction to Hypertext Pre-Processor
Chapter 5: PHP Function and Array
Chapter 6: PHP Conditional Statements
Chapter 7: Looping Structure
Chapter 8: Forms and Files
Chapter 9: Connecting PHP and MYSQL
Chapter 10: Introduction to Computer Networks
Chapter 11: Network Examples and Protocols
Chapter 12: DNS (Domain Name System)
Chapter 13: Network Cabling
Chapter 14: Open Source Concepts
Chapter 15: E-Commerce
Chapter 16: Electronic Payment Systems
Chapter 17: E-Commerce Security Systems
Chapter 18: Electronic Data Interchange-EDI

Chapter 7: Looping Structure
Tamil Nadu Board Samacheer Kalvi solutions for Class 12th Computer Application Answers Guide Chapter 7 Looping Structure Evaluation - PART – I [Pages 116 - 117]
Choose the correct answer
The loop exclusively used for arrays is _____.
While
Do While
For
for each
Loops that iterate for fixed number of times is called ______.
Unbounded loops
Bounded loops
While loops
For loops
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
For loop
For each loop
While loop
All of them
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
5
4
3
2
What will be displayed in a browser when the following PHP code is executed:
<?php
for (Scounter = 20; $counter< 10;
$counter++)
{
echo “Welcome to Tamilnadu “;
}
echo “Counter is: Scounter”;
?>
Welcome to Tamilnadu
Counter is: 20
Welcome to Tamilnadu Counter is: 22
Welcome to Tamilnadu Welcome to Tamilnadu Counter is: 22
What will be displayed in a browser when the following PHP code is executed;
<?php
for ($counter = 10; $counter < 10;
$counter = $counter + 5){
echo “Hello”;
}
?>
Hello Hello Hello Hello Hello
Hello Hello Hello
Hello
None of the above
PHP supports which types of looping techniques ______.
for loop
while loop
foreach loop
all the above
Consider the following code
<? php
$count=12;
do{
printf(“%d squared=%d<br/>”,
$count, pow($count,2));
} while($count<4);
?>
What will be the output of the code.
12 squared 141
12 squared=141
“12 squared=141”
Execution error
What will be the output of the following PHP code?
<?php
for ($x = 1; $x < 10;++$x)
{
print “*\t”;
}
?>
**********
*********
***********
Infinite loop
What will be the output of the following PHP code?
<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
123456713910412
123456713910
1234567139104
Infinite loop
Tamil Nadu Board Samacheer Kalvi solutions for Class 12th Computer Application Answers Guide Chapter 7 Looping Structure Evaluation - PART – II [Page 118]
Short Answers
Define Looping Structure in PHP.
Define for loop in PHP.
What is For each loop in PHP?
List out Looping Structure in PHP.
Write Syntax of For loop in PHP.
Write Syntax of For each loop in PHP.
Write Syntax of while loop in PHP.
Write Syntax of Do while loop in PHP.
Compare for loop and for each loop.
Explain the use of for each loop in PHP.
Tamil Nadu Board Samacheer Kalvi solutions for Class 12th Computer Application Answers Guide Chapter 7 Looping Structure Evaluation - PART – III [Page 118]
Explain in Brief Answer
Write the features Looping Structure.
Write the purpose of Looping Structure in PHP.
Differentiate For each and While loop.
Write short notes on Do while Loop.
Differentiate While and Do while loops.
Tamil Nadu Board Samacheer Kalvi solutions for Class 12th Computer Application Answers Guide Chapter 7 Looping Structure Evaluation - PART – IV [Page 118]
Explain in detail
Explain Looping Structure in PHP.
Discuss in detail about Foreach loop.
Explain the process Do while loop.
Explain concepts of for loop with example.
Explain working of loops in array.
Chapter 7: Looping Structure

Tamil Nadu Board Samacheer Kalvi solutions for Class 12th Computer Application Answers Guide chapter 7 - Looping Structure
Tamil Nadu Board Samacheer Kalvi solutions for Class 12th Computer Application Answers Guide chapter 7 (Looping Structure) include all questions with solution and detail explanation. This will clear students doubts about any question and improve application skills while preparing for board exams. The detailed, step-by-step solutions will help you understand the concepts better and clear your confusions, if any. Shaalaa.com has the Tamil Nadu Board of Secondary Education Class 12th Computer Application Answers Guide solutions in a manner that help students grasp basic concepts better and faster.
Further, we at Shaalaa.com provide such solutions so that students can prepare for written exams. Tamil Nadu Board Samacheer Kalvi textbook solutions can be a core help for self-study and acts as a perfect self-help guidance for students.
Concepts covered in Class 12th Computer Application Answers Guide chapter 7 Looping Structure are Looping Structure.
Using Tamil Nadu Board Samacheer Kalvi Class 12th solutions Looping Structure exercise by students are an easy way to prepare for the exams, as they involve solutions arranged chapter-wise also page wise. The questions involved in Tamil Nadu Board Samacheer Kalvi Solutions are important questions that can be asked in the final exam. Maximum students of Tamil Nadu Board of Secondary Education Class 12th prefer Tamil Nadu Board Samacheer Kalvi Textbook Solutions to score more in exam.
Get the free view of chapter 7 Looping Structure Class 12th extra questions for Class 12th Computer Application Answers Guide and can use Shaalaa.com to keep it handy for your exam preparation