मराठी
Tamil Nadu Board of Secondary EducationHSC Science Class 12

Samacheer Kalvi solutions for Computer Applications [English] Class 12 TN Board chapter 7 - Looping Structure [Latest edition]

Advertisements

Chapters

Samacheer Kalvi solutions for Computer Applications [English] Class 12 TN Board chapter 7 - Looping Structure - Shaalaa.com
Advertisements

Solutions for Chapter 7: Looping Structure

Below listed, you can find solutions for Chapter 7 of Tamil Nadu Board of Secondary Education Samacheer Kalvi for Computer Applications [English] Class 12 TN Board.


Evaluation - PART – IEvaluation - PART – IIEvaluation - PART – IIIEvaluation - PART – IV
Evaluation - PART – I [Pages 116 - 117]

Samacheer Kalvi solutions for Computer Applications [English] Class 12 TN Board 7 Looping Structure Evaluation - PART – I [Pages 116 - 117]

Choose the correct answer

Evaluation - PART – I | Q 1. | Page 116

The loop exclusively used for arrays is _____.

  • While

  • Do While

  • For

  • for each

Evaluation - PART – I | Q 2. | Page 116

Loops that iterate for fixed number of times is called ______.

  • Unbounded loops

  • Bounded loops

  • While loops

  • For loops

Evaluation - PART – I | Q 3. | Page 116

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

Evaluation - PART – I | Q 4. | Page 116

for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?

  • 5

  • 4

  • 3

  • 2

Evaluation - PART – I | Q 5. | Page 117

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

Evaluation - PART – I | Q 6. | Page 117

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

Evaluation - PART – I | Q 7. | Page 117

PHP supports which types of looping techniques ______.

  • for loop

  • while loop

  • foreach loop

  • all the above

Evaluation - PART – I | Q 8. | Page 117

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

Evaluation - PART – I | Q 9. | Page 117

What will be the output of the following PHP code?

<?php
for ($x = 1; $x < 10;++$x)
{
print “*\t”;
}
?>
  • **********

  • *********

  • ***********

  • Infinite loop

Evaluation - PART – I | Q 10. | Page 117

What will be the output of the following PHP code?

<?php
for ($x = -1; $x < 10;--$x)
{
print $x;
}
?>
  • 123456713910412

  • 123456713910

  • 1234567139104

  • Infinite loop

Evaluation - PART – II [Page 118]

Samacheer Kalvi solutions for Computer Applications [English] Class 12 TN Board 7 Looping Structure Evaluation - PART – II [Page 118]

Short Answers

Evaluation - PART – II | Q 1. | Page 118

Define Looping Structure in PHP.

Evaluation - PART – II | Q 2. | Page 118

Define for loop in PHP.

Evaluation - PART – II | Q 3. | Page 118

What is For each loop in PHP?

Evaluation - PART – II | Q 4. | Page 118

List out Looping Structure in PHP.

Evaluation - PART – II | Q 5. | Page 118

Write Syntax of For loop in PHP.

Evaluation - PART – II | Q 6. | Page 118

Write Syntax of For each loop in PHP.

Evaluation - PART – II | Q 7. | Page 118

Write Syntax of while loop in PHP.

Evaluation - PART – II | Q 8. | Page 118

Write Syntax of Do while loop in PHP.

Evaluation - PART – II | Q 9. | Page 118

Compare for loop and for each loop.

Evaluation - PART – II | Q 10. | Page 118

Explain the use of for each loop in PHP.

Evaluation - PART – III [Page 118]

Samacheer Kalvi solutions for Computer Applications [English] Class 12 TN Board 7 Looping Structure Evaluation - PART – III [Page 118]

Explain in Brief Answer

Evaluation - PART – III | Q 1. | Page 118

Write the features Looping Structure.

Evaluation - PART – III | Q 2. | Page 118

Write the purpose of Looping Structure in PHP.

Evaluation - PART – III | Q 3. | Page 118

Differentiate For each and While loop.

Evaluation - PART – III | Q 4. | Page 118

Write short notes on Do while Loop.

Evaluation - PART – III | Q 5. | Page 118

Differentiate While and Do while loops.

Evaluation - PART – IV [Page 118]

Samacheer Kalvi solutions for Computer Applications [English] Class 12 TN Board 7 Looping Structure Evaluation - PART – IV [Page 118]

Explain in detail

Evaluation - PART – IV | Q 1. | Page 118

Explain Looping Structure in PHP.

Evaluation - PART – IV | Q 2. | Page 118

Discuss in detail about Foreach loop.

Evaluation - PART – IV | Q 3. | Page 118

Explain the process Do while loop.

Evaluation - PART – IV | Q 4. | Page 118

Explain concepts of for loop with example.

Evaluation - PART – IV | Q 5. | Page 118

Explain working of loops in array.

Solutions for 7: Looping Structure

Evaluation - PART – IEvaluation - PART – IIEvaluation - PART – IIIEvaluation - PART – IV
Samacheer Kalvi solutions for Computer Applications [English] Class 12 TN Board chapter 7 - Looping Structure - Shaalaa.com

Samacheer Kalvi solutions for Computer Applications [English] Class 12 TN Board chapter 7 - Looping Structure

Shaalaa.com has the Tamil Nadu Board of Secondary Education Mathematics Computer Applications [English] Class 12 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 Applications [English] Class 12 TN Board Tamil Nadu Board of Secondary Education 7 (Looping Structure) 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 Applications [English] Class 12 TN Board chapter 7 Looping Structure are Looping Structure.

Using Samacheer Kalvi Computer Applications [English] Class 12 TN Board solutions Looping Structure 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 Applications [English] Class 12 TN Board students prefer Samacheer Kalvi Textbook Solutions to score more in exams.

Get the free view of Chapter 7, Looping Structure Computer Applications [English] Class 12 TN Board additional questions for Mathematics Computer Applications [English] Class 12 TN Board Tamil Nadu Board of Secondary Education, and you can use Shaalaa.com to keep it handy for your exam preparation.

Share
Notifications

Englishहिंदीमराठी


      Forgot password?
Use app×