Please select a subject first
Advertisements
Advertisements
The ______ diagram gives a logical structure of the database graphically?
Concept: undefined >> undefined
List few disadvantages of the file processing system.
Concept: undefined >> undefined
Advertisements
What are the ACID properties?
Concept: undefined >> undefined
Explain on Evolution of DBMS.
Concept: undefined >> undefined
What is a relationship in databases? List its types.
Concept: undefined >> undefined
What will be the output of the following PHP code?
<?php
$x;
if ($x)
print “hi” ;
else
print “how are u”;
?>Concept: undefined >> undefined
What will be the output of the following PHP code?
<?php
$x = 0;
if ($x++)
print “hi”;
else
print “how are u”;
?>Concept: undefined >> undefined
What will be the output of the following PHP code?
<?php
$x;
if ($x == 0)
print “hi” ;
else
print “how are u”;
print “hello”
?>Concept: undefined >> undefined
What will be the output of the following PHP code?
<?php
$a = “”;
if ($a)
print “all”;
if ______
else
print “some”;
?>Concept: undefined >> undefined
What will be the output of the following PHP code?
<?php
$x = 10;
$y = 20;
if ($x > $y + $y != 3)
print “hi” ;
else
print “how are u”;
?>Concept: undefined >> undefined
Define Conditional Statements in PHP.
Concept: undefined >> undefined
List out Conditional Statements in PHP.
Concept: undefined >> undefined
Write the features Conditional Statements in PHP.
Concept: undefined >> undefined
Differentiate Switch and if else statement.
Concept: undefined >> undefined
Explain the Function of Conditional Statements in PHP.
Concept: undefined >> undefined
Explain the working of Conditional Statements in PHP?
Concept: undefined >> undefined
The loop exclusively used for arrays is _____.
Concept: undefined >> undefined
Loops that iterate for fixed number of times is called ______.
Concept: undefined >> undefined
Which loop evaluates condition expression as Boolean, if it is true, it executes statements and when it is false it will terminate?
Concept: undefined >> undefined
for ($ x=0; $ x<5; x++)
echo “Hai”
The above loop executes how many no of times?
Concept: undefined >> undefined
