Q1
mcq
1 mark
__________ has five major components like text, images, sound, video and animation.
- A. Master item
- B. Multimedia
- C. Multi-word
- D. Master page
Solution hidden
Log in to view solution →
Q2
mcq
1 mark
A __________ is used for magnifying the particular portion of the area.
- A. Zoom tool
- B. Text tool
- C. Hand tool
- D. Line tool
Solution hidden
Log in to view solution →
Q3
mcq
1 mark
To select an entire document using the keyboard, press __________.
- A. Ctrl+C
- B. Ctrl+A
- C. Ctrl+D
- D. Ctrl+B
Solution hidden
Log in to view solution →
Q4
mcq
1 mark
Which operator is called “identical” ?
- A. ===
- B. =
- C. <>
- D. ==
Solution hidden
Log in to view solution →
Q5
mcq
1 mark
How many types of arrays are there in PHP ?
- A. 4
- B. 2
- C. 5
- D. 3
Solution hidden
Log in to view solution →
Q6
mcq
1 mark
What type of statement is the if...else statement ?
- A. Input
- B. Conditional
- C. Output
- D. Looping
Solution hidden
Log in to view solution →
Q7
mcq
1 mark
What is the output of the following code ?
$i = 4;
do
{
echo $i.“<br>”;
$i++;
} while ($i<=3);
- A. 3 2 1
- B. 1 2 3 4
- C. 1 2 3
- D. None of the above
Solution hidden
Log in to view solution →
Q8
mcq
1 mark
Which looping structure should be used to iterate over elements of an array in PHP ?
- A. do....while loop
- B. for loop
- C. foreach loop
- D. while loop
Solution hidden
Log in to view solution →
Q9
mcq
1 mark
What type of loop is “while loop” in PHP ?
- A. Counter loop
- B. Entry-check loop
- C. Iteration loop
- D. Exit-check loop
Solution hidden
Log in to view solution →
Q10
mcq
1 mark
A set of Computers connecting together is called as __________.
- A. Hub
- B. Network
- C. Node
- D. Server
Solution hidden
Log in to view solution →
Q11
mcq
1 mark
The expansion of FTP is :
- A. Folder Transfer Protocol
- B. File Transfer Protocol
- C. File Transfer Program
- D. File Transmission Protocol
Solution hidden
Log in to view solution →
Q12
mcq
1 mark
WWW was invented by :
- A. Blaise Pascal
- B. Tim Berners Lee
- C. John Napier
- D. Charles Babbage
Solution hidden
Log in to view solution →
Q13
mcq
1 mark
__________ host the e-books on their websites.
- A. Digital publishing websites
- B. Bulk-buying websites
- C. Licensing websites
- D. Community websites
Solution hidden
Log in to view solution →
Q14
mcq
1 mark
Which of the following system securely share business information with suppliers, vendors, partners and customers ?
- A. Arpanet
- B. Extranet
- C. Arcnet
- D. Intranet
Solution hidden
Log in to view solution →
Q15
mcq
1 mark
Which is the first industry-specific EDI Standard ?
- A. Master
- B. TDCC
- C. ANSI
- D. VISA
Solution hidden
Log in to view solution →
Q19
short answer
Write the syntax of file close function in PHP.
Solution hidden
Log in to view solution →
Q24
short answer
What is the output of the following php programme ?
<?php
function greeting($name)
{
echo “Hello, $name!”;
}
greeting (“world”);
?>
Solution hidden
Log in to view solution →
Q27
short answer
What is relationship in databases ? List its types.
Solution hidden
Log in to view solution →
Q29
short answer
What will be the output of the following in PHP code ?
<?php
$x=5;
switch ($x)
{
case 5:
echo “x is equal to 5”;
break;
case 10:
echo “x is equal to 10”;
break;
case 15:
echo “x is equal to 15”;
break;
default:
echo “x is not equal to 5, 10, or 15”;
}
?>
Solution hidden
Log in to view solution →
Q30
short answer
What are the layers available in TCP/IP Reference Model ?
Solution hidden
Log in to view solution →
Q32
short answer
Explain briefly the anatomy of a credit card.
Solution hidden
Log in to view solution →
Q33
short answer
Write the syntax of mysqli_query( ) function with example.
Solution hidden
Log in to view solution →