Class Vii Ict Annual Examrevision Questions
Class Vii Ict Annual Examrevision Questions
CHAPTER 1
NETWORK COMMUNICATION AND MOBILE OPERATING SYSTEM
12. __________cable is the cheapest and the most commonly used wire
based networking mediums.
(a) Co-axial
(b) Twisted-pair
(c) Fiber-optics
(d) Optical fiber
1. What is NIC?
Ans. A Network Interface Card(NIC) is a piece of hardware placed inside
the system unit. (1 mark)
2. What is a Server?
Ans. A Server is a computer that manages the network resources. (1
mark)
*********************************
CHAPTER 2
WORLD WIDE WEB
2. E-commerce is :
(a) Webpage
(b)Online trading
(c) ISP
(d) None of the above
3. Expand HTTP.
Ans. HTTP – Hypertext Transfer Protocol
for i= 10 to 1 step -2
print i
next i
(a) 10,8,6,4,2
(b) 10
(c) 10,9,8,7,6,5,4,3,2,1
(d) 2,4,6,8,10
FOR I= 11 TO 20 STEP 2
PRINT I
NEXT J
(a)FOR I
(b)STEP 2
(c)PRINT I
(d)NEXT J
Ans. (d)NEXT J
FOR I= 1 TO 10 STEP 1
PRINT I
NEXT I
(a) 0
(b) 1
(c)2
(d)10
Ans. (d)10
for x= 4 to 44 step________
print x
next x
(a)1
(b)2
(c)3
(d)4
Ans. (d)4
(a)DO WHILE
(b)WHILE …. WEND
(c) DO UNTIL…LOOP
(d)For Next
(a)0
(b)1
(c)5
(d)10
Ans. (a)0
(b)WHILE …. WEND
(c) DO UNTIL…LOOP
(d)For Next
Ans .
Cls
Rem 5 TABLE
For I = 5 To 50 Step 5
Print I
Next I
End
Ans .
Cls
For I = 2 To 40 Step 2
Print I
Next I
End
Ans .
Cls
For I = 11 To 51 Step 2
Print I
Next I
End
Cls
Rem REVERSE THE NUMBER 100 TO 50
Print I
Next I
End
Ans.
Syntax:
LOOP
Ans.
Cls
Rem 5 TABLE 5 TO 50
I=5
Do While I <= 50
Print I
I=I+5
Loop
End
10. Write a QBASIC program to print reversing the number between 100
to 50 Using DO WHILE loop
Ans.
Cls
Rem REVERSE 10 TO 1
I = 10
Do While I >= 1
Print I
I=I-1
Loop
End
Practice Questions:
1. What is looping?
2. What are the different types of loops available in QBasic?
3. Explain for loop with an example.
4. Write a QBASIC program to print the multiples of 5 using while loop
5. What is the difference between do while and do until loop
6. Write a QBASIC program to print the even numbers from 30 to 1.
7. Why do you use EXIT statement in QB64?
8. What is While Wend loop? Give an example program.
9. Define Infinite loop.
10. Write a QBASIC program to print the odd numbers from 1 to 15.
****************************************
CHAPTER 4
INTRODUCTION TO HTML
********************
CHAPTER 5
ELEMENTARY HTML
1. Write any one attribute for the following tags: (i) <OL> (ii)
<FONT>
Ans . (i) OL – type, start
(ii) FONT – Face, Size, Color
Ans.
<HTML>
<HEAD><TITLE> MY WEBPAGE</TITLE></HEAD>
<BODY>
<H1 ALIGN=”CENTER”><B> MY HOTEL MENU</B></H1>
<UL TYPE=CIRCLE>
<LI>COFFEE
<LI>TEA
<LI>MILK
</UL>
</BODY>
</HTML>
4. What are the different shapes mentioned in the Type attribute of the
unordered list?
Ans. Shapes can be either circle, a disc, or a square.
Ans.
Table tags: <TABLE> </TABLE>
Row tags: <TR> </TR>
Cell tags: <TD> </TD>
11. Create a website using HTML Coding with Nested list tags to display
the menu card as given below:
Coding:
<HTML>
<HEAD> <TITLE> NESTED LIST </TITLE> </HEAD>
<BODY>
<H1> DINE AND EAT </H1>
<DL>
<DT> ABOUT US
<DD> All Items are available.
<H1> <B> <U> MENU CARD </U> </B></H1>
<OL type ="I" START="1">
<LI>SOUTH INDIAN FOOD
<UL TYPE="SQUARE">
<LI> IDLI
<LI> PONGAL
<LI> VADA
<LI> APPAM
</UL>
3 4
<HTML>
<BODY>
<TABLE height=50% width=50% border=2 cellpadding=10
cellspacing=10>
<TR>
<TD align=center>1</TD>
<TD align=center>2</TD>
</TR>
<TR>
<TD align=center>3</TD>
<TD align=center>4</TD>
</TR>
</TABLE>
</BODY>
</HTML>
13. Write the HTML code to print the table on the Web page?
<HTML>
<HEAD> <TITLE> NESTED LIST </TITLE> </HEAD>
<BODY>
<TABLE HEIGHT="50%" WIDTH="50%" ALIGN="CENTER"
BGCOLOR="GREY" BORDER="1" BORDERCOLOR="RED"
CELLPADDING="10" CELLSPACING="25">
<CAPTION ALIGN="TOP"> VII A MARK LIST</CAPTION>
<TR>
<TH colspan="3"> STUDENT MARK LIST</TH>
<TH rowspan="4"> CLASS VII A </TH>
</TR>
<TR>
<TH> RNO </TD>
<TH> NAME </TD>
<TH> MT RANK </TD>
</TR>
<TR>
<TD> 001 </TD>
<TD> ABI </TD>
<TD> I </TD>
</TR>
<TR>
<TD> 002</TD>
<TD> BINU </TD>
<TD> IV</TD>
</TR>
</TABLE>
</BODY>
</HTML>
Note: Refer to all the Activity programs, fact files, glossary; and question
and answer.