Advertisements
Advertisements
________ refers to any type of application that involves more than one type of media such as text, graphics video animation and sound.
Concept: undefined >> undefined
You need hardware, software and ________ to make multimedia.
Concept: undefined >> undefined
Advertisements
DTP stands for _____.
Concept: undefined >> undefined
________ is a DTP software.
Concept: undefined >> undefined
Choose the correct statement.
Concept: undefined >> undefined
What is desktop publishing?
Concept: undefined >> undefined
Give some examples of DTP software.
Concept: undefined >> undefined
Which language is used to request information from a Database?
Concept: undefined >> undefined
The ______ diagram gives a logical structure of the database graphically?
Concept: undefined >> undefined
List few disadvantages of the file processing system.
Concept: undefined >> undefined
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
