Q1
mcq
1 mark
Which of the following is a raster image file format ?
- A. CDR
- B. JPEG
- C. SVG
- D. EPS
Solution hidden
Log in to view solution →
Q2
mcq
1 mark
Place option is present in __________ menu.
- A. Layout
- B. File
- C. Window
- D. Edit
Solution hidden
Log in to view solution →
Q3
mcq
1 mark
__________ Command is used to modify the existing structure of database or table.
- A. DROP
- B. CREATE
- C. RENAME
- D. ALTER
Solution hidden
Log in to view solution →
Q4
mcq
1 mark
What is the extension of PHP file ?
- A. .php
- B. .html
- C. .ph
- D. .xml
Solution hidden
Log in to view solution →
Q5
mcq
1 mark
A __________ is a block of code that performs a specific task.
- A. class
- B. parameter
- C. label
- D. function
Solution hidden
Log in to view solution →
Q6
mcq
1 mark
Which of the following is used to terminate the switch statement ?
- A. goto
- B. return
- C. break
- D. continue
Solution hidden
Log in to view solution →
Q7
mcq
1 mark
What is the purpose of the ‘increment’ part of a for loop ?
- A. To check the condition
- B. To initialize variables
- C. To execute the code block
- D. To update variables
Solution hidden
Log in to view solution →
Q8
mcq
1 mark
What form control allows the user to select multiple values ?
- A. check boxes
- B. text inputs
- C. radio buttons
- D. buttons
Solution hidden
Log in to view solution →
Q9
mcq
1 mark
Which version of PHP supports MySQLi functions ?
- A. Version 4.0
- B. Version 2.0
- C. Version 5.0
- D. Version 3.0
Solution hidden
Log in to view solution →
Q10
mcq
1 mark
Which one of the following is not the social media ?
- A. Twitter
- B. Gmail
- C. Linkedin
- D. Facebook
Solution hidden
Log in to view solution →
Q11
mcq
1 mark
Wi-Fi stands for __________.
- A. Wired Optic Fibre
- B. Wireless Fidelity
- C. Wireless Optic Fibre
- D. Wired Fidelity
Solution hidden
Log in to view solution →
Q12
mcq
1 mark
Which of the following connector is called as Champ Connector ?
- A. RJ61
- B. RJ11
- C. RJ45
- D. RJ21
Solution hidden
Log in to view solution →
Q13
mcq
1 mark
G2G systems are classified into :
- A. First wave and Second wave
- B. Internal facing and External facing
- C. Left facing and Right facing
- D. Internet and Extranet
Solution hidden
Log in to view solution →
Q15
mcq
1 mark
How many Layers are specified in EDI architecture ?
- A. 6
- B. 5
- C. 3
- D. 4
Solution hidden
Log in to view solution →
Q16
short answer
2 marks
Give some examples of DTP Software.
Solution hidden
Log in to view solution →
Q17
short answer
2 marks
Define Single and Multi valued attributes.
Solution hidden
Log in to view solution →
Q18
short answer
2 marks
How do you create an indexed array in PHP ?
Solution hidden
Log in to view solution →
Q19
short answer
2 marks
What is node in Computer network ?
Solution hidden
Log in to view solution →
Q20
short answer
2 marks
Expand :
(i) GPRS
(ii) TCP
(iii) GSM
(iv) IP
Solution hidden
Log in to view solution →
Q24
short answer
What will be the output for the following PHP Code ?
<?php
$x=1;
switch($x)
{
Case 2:
echo ''x is equal to 2'';
break;
Case 3:
echo ''x is equal to 3'';
break;
default:
echo ''x is not equal to 2, 3 '';
}
?>
Solution hidden
Log in to view solution →
Q26
short answer
How do you insert page numbers in Master pages ?
Solution hidden
Log in to view solution →
Q28
short answer
Write the output of the following PHP Snippet.
$a= 'Hello';
$b= 'World';
$c=$a.$b;
Solution hidden
Log in to view solution →
Q29
short answer
Write the syntax for a switch statement in PHP.
Solution hidden
Log in to view solution →
Q30
short answer
Write MySQLi connection syntax with example.
Solution hidden
Log in to view solution →
Q31
short answer
What is meant by null modem cable ? Give example.
Solution hidden
Log in to view solution →
Q33
short answer
What is the output of the following Code snippet ?
for ($i=5; $i>1; $i–
–)
{
echo $i
.''<br>'';
}
Solution hidden
Log in to view solution →
Q34
long answer
5 marks
(a)Write in detail about Production team roles and responsibilities.
OR
(b)Explain the tools in PageMaker tool box.
Solution hidden
Log in to view solution →
Q35
long answer
5 marks
(a)List the basic concepts of ER Model with suitable example.
OR
(b)Explain ‘foreach’ loop with example.
Solution hidden
Log in to view solution →
Q36
long answer
5 marks
(a)Describe about OSI model with its layers.
OR
(b)Explain IP address and its classification.
Solution hidden
Log in to view solution →
Q37
long answer
5 marks
(a)What is meant by Registered Jack ? Explain briefly about the types of Jacks.
OR
(b)Explain the key players of a credit card payment system.
Solution hidden
Log in to view solution →
Q38
long answer
5 marks
(a)Write the advantages and disadvantages of E-Commerce.
OR
(b)What will be the output for the following operators ?
(i)a%b ($a=5; $b=2;)
(ii)5==5.0
(iii)5===5.0
(iv)(5>3) && (5>7)
(v)! (5>3)
Solution hidden
Log in to view solution →