12th Standard Syllabus & Materials
12th Standard
TN 12th Computer Applications மின்னணு தரவு பரிமாற்றம் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications மின் - வணிக பாதுகாப்பு அமைப்புகள் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications மின்னணு செலுத்தல் முறைகள் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications மின் - வணிகம் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications திறந்த மூல கருத்துருக்கள் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications வலையமைப்பு வடமிடல் Sample Question Papers Study Material - QB365 Set A

Published on: 06/01/2020
PHP Conditional Statements Publishing
Download Tamil Nadu 12th Standard Computer Applications question papers, model tests, one-mark questions, important questions, and public exam papers in PDF format. Free study materials and answer keys for TN State Board students.
Questions + Answers key
Take MCQ Computer Applications Test

1.
What will be the output of the following PHP code ?
< ?php
if (-100)
print “hi” ;
else
print “how are u”;
? >
how are u
hi
error
no output
2.
What will be the output of the following PHP code ?
< ?php
\($\)a = “”;
if (\($\)a)
print “all”;
else
print “some”;
? >
all
some
error
no output
3.
Statement which is used to make choice between two options and only option is to be performed is written as
if statement
if else statement
then else statement
else one statement
4.
What will be the output of the following PHP code ?
< ?php
\($\)x;
if (\($\)x == 0)
print “hi” ;
else
print “how are u”;
print “hello”
? >
how are uhello
hihello
hi
no output
5.
What will be the output of the following PHP code?
< ? php
\($\) x;
if (\($\)x)
print “hi” ;
else
print “how are u”;
? >
how are u
hi
error
no output
6.
Compare if and if else statement.
7.
Write the Syntax of Switch statement.
8.
What is the purpose of the if ... else statement?
9.
Write the syntax for an if statement in PHP.
10.
What are the different types of conditional statements in PHP?
11.
Write, a PHP program to display independenc day and republic day the greetings using If elseif else statement.
12.
Write a php program to check whether the given number is positive or negative.
13.
Differentiate if statement and if elseif else statement.
14.
Differentiate Switch and if else statement.
15.
Write the features Conditional Statements in PHP.
16.
Write a PHP program to display week days using switch case statement.
17.
Write a PHP code to display the days of weak using switch statement
18.
Explain if else statement in PHP. With an example.
19.
Explain the if elseif else statement. With suitable example.
1.
(b)
hi
2.
(b)
some
3.
(b)
if else statement
4.
(b)
hihello
5.
(a)
how are u
6.
| If Statement | If else Statement |
| if statement executes some code if one condition is true. | If statement executes some code if the condition is true and else part of code executes if the condition is false. |
7.
switch (n)
{
case label 1:
code to be executed if n=labeI1;
break;
case label 2:
code to be executed if n=labeI2;
break;
case label 3:
code to be executed if n=labeI3;
break;
...
default:
code to be executed if n is different from all labels;
}
8.
The if ... else statement is a conditional statement in PHP. It executes one block of code if a condition is true and another block of code if the condition is false.
9.
Syntax:
if (condition)
{
//code to be executed if condition is true;
}
10.
There are several types of conditional statements in PHP. They are
1. 'if' statement
2. 'if...else' statement
3. 'if...elseif...else' statement
4. 'switch' statement
11.
< ?php
$x = "August";
if ($x == "January'') {
echo "Happy Republic Day";
}
elseif ($x == "August'') {
echo "Happy Independence Day!!!";
}
else{
echo "Nothing to show";
}
? >
12.
< ?php
$x = -12;
if ($x > 0)
{
echo "The number is positive";
}
else{
echo "The number is negative";
}
? >
13.
| No. | if elseif else statement | if statement |
| 1 | If-elseif-else statement is a combination of if-else statement. | If statement executes a single statement |
| 2 | More than one statement can execute the condition based on user needs | Only one statement can execute |
| 3 | If the condition if false more alternatives are there. | If the condition is false, there is no alternative. |
14.
| Switch Statement | If else statement |
|---|---|
| Switch statement uses single expression for multiple choices. | if-else statement uses multiple statement for multiple choices. |
| It test only for equality. | It test for equality as well as for logical expression. |
| Statement will be executed is decided by user. | Evaluates any type |
| If switch statements does not match any cases, the default statements is executed. | If the condition fails, then by default the else statement is executed. |
15.
(i) Conditional statements are useful for writing decision making logics. It is the most important feature of many programming languages, including PHP.
(ii) When we write the code for conditional statements very often, we can perform different actions for different decisions in different business logic.
16.
< ?php
$n = "February";
switch($n) {
case "January":
echo "Its January";
break;
case "February":
echo "Its February";
break;
case "March":
echo "Its- March";
break;
case "April":
echo "Its April";
break;
case "May":
echo "Its May";
break;
case "June":
echo "Its June";
break;
case "July":
echo "Its July";
break;
case "August":
echo "Its August";
break;
case "September":
echo "Its September";
break;
case "October":
echo "Its October";
break;
case "November":
echo "Its November";
break;
case "December":
echo "Its December";
break;
default:
echo "Doesn't exist";
}
? >
17.
< ?php
$today=date("D'') ;
switch($today)
{
case"Mon":
echo"Today is Monday. ";
break;
case''Tue'':
echo''Today is Tuesday.";
break;
case''Wed'':
echo''Today is Wednesday.";
break;
case''Thu'':echo''Today is Thursday.";
break;
case"Fri":
echo''Today is Friday. Party tonight.";
break;
case"Sat":echo''Today is Saturday.";
break;
case"Sun":
echo''Today is Sunday.";
break;
default:
echo"No information available for that day.";
break;
}
? >
18.
If else statement in PHP:
If statement executes a statement or a group of statements if a specific condition is satisfied by the user expectation. When the condition gets false (fail) the else block is executed.
Syntax:
if (condition)
{
Execute statement(s) if condition is true;
}
else
{
Execute statement(s) if condition is false;
}
Example
$Pass_Mark=35;
$Student_Mark= 70;
if ($Student_Mark>= $Pass_Mark){
echo "The Student is eligible for the promotion";
}
else {
echo "The Student is not eligible for the promotion";
} ?>
19.
If elseif else statement in PHP:
If-elseif-else statement is a combination of if-else statement. More than one statement can execute the condition based on user needs.
Syntax:
if (1st condition)
{
Execute statement(s) if condition is true;
}
elseif(2nd condition)
{
Execute statement(s) if 2nd condition is true;
}
else
{
Execute statement(s) if both conditions are false;
}
Example Program:
$Pass_Mark=35;
$first_class=60;
$Student_Mark= 70;
if ($Student_Mark > = $first_ class){
echo "The Student is eligible for the promotion with First Class";
}
elseif ($Student_Mark >= $Pass_Mark){
echo "The Student is eligible for the promotion";
}
else {
echo "The Student is not eligible for the promotion";
} ?>
12th Standard Syllabus & Materials
12th Standard
TN 12th Computer Applications களப்பெயர் முறைமை (DNS) Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications வலையமைப்பு எடுத்துக்காட்டுகள் மற்றும் நெறிமுறைகள் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications கணினி வலையமைப்பு ஓர் அறிமுகம் Sample Question Papers Study Material - QB365 Set A
NEW12th Standard
TN 12th Computer Applications PHP-உடன் MySQL-ஐ இணைத்தல் Sample Question Papers Study Material - QB365 Set A
Tamilnadu Stateboard 12th Standard Subjects

Maths

Chemistry

Physics

Biology

Computer Science

Business Maths and Statistics

Economics

Commerce

Accountancy

History

Computer Applications

Biology

Computer Technology

Computer Applications

Computer Science

Business Maths and Statistics

Commerce

Economics

Maths

Chemistry

Physics

Computer Technology

History

Accountancy

Tamil

English

French
Tamilnadu Stateboard Standards