GOOD SAMARITAN PUBLIC SCHOOL
(Affiliated to Central Board of Secondary Education, New Delhi)
Sirkali, 609 111. Mayiladuthurai Dt., Contact No. 7675801198 / 6384444811 / 12
GRADE: VII ANNUAL EXAMINATION 2023-24 MARKS : 40
DATE : 20/03/2024 COMPUTER SCIENCE TIME : 2 Hrs.
SECTION-A
I. Choose the correct answer: 10x1=10
1. Which are embedded commands within a document that communicate to the browser.
a)Element b)Body c)Tag d)Head
2. In the HTML ____ Element defines superscripted text
a)Sup b)<Sup> c)Sub d)<Sub>
3. Which attribute of the anchor tag takes the URL of the linked file ?
a)Name b)href c)Altr d)Tittle
4. The default style of <UL> Tag is a ____?
a)Disc b)Square c)Circle d)Dot
5. Which of the following attributes merges two or more rows of a table into a single
row?
a) Rowspan b) Rmerge c) Rowmerge d) Mergerow
6. Which tag is used to create a hyperlink in the HTML document?
a) Link b) connect c) Anchor d) Hyper above
7. Header option is located under_____ menu?
a) File b) Insert c) Folder d) Imager
8. In ________ two or more computers and peripheral devices are connected within a
small area.
a) MAN b) WAN c)LAN d)NIC
foriinrange(len(x)):
print(i)
9. A computer network enables two or more computers to share __________ and resources.
a) Data b) information c) memory d) option
10. One of the major drawbacks of computer networks is the ______ issues.
a) Electricity b)password c)time d)security
SECTION-B
II. Fill in the blanks: 4x1=4
11. When you build web page , how many primary tags you need____.
12. <IMG> is an _____ element.
13. The attribute ____ is used to create a hyperlink between two or more HTML codes.
14. _______ is a central connection point in a network.
SECTION-C
III. Find the given statement is True or False: 4x1=4
15. To insert Header, click on Insert->Folder.
16. The contains data of a cell.
17. Star topology is mostly used in Local Area Networks.
18.The default value of <OL> is a filled circle.
SECTION-D
V. Answer the following Questions: (Any 5) 5x2=10
19. Differentiate between <BR> tag and <HR> tag.
20. What is table tag? Explain its attributes.
21. What are local link? Explain with example?
22. What is use of Hyperlink?
23. List any five container tags.
24. Difference between wired and wireless connection with suitable example.
SECTION-E
VI. Long Answer Questions:(Any 3) 3x3=9
25. Explain the following Tags.
a) <li> b) <ul> c) <ol> d) <a>
26. Is it possible to change the link colors and styles? If so what should be done?
27. Write a Structure of HTML program.
28. What is topology? Explain the types of topology.
SECTION-F
VI. Application Based Question.(HTML code) 3x1=3
29. Find the output for the give HTML code.
<!DOCTYPE html>
<html>
<style>
Table,
th,
td{
border: 1px solid black;
}
</style>
</head>
<body>
<table style=”width:100%”>
<tr>
<th>Name</th>
<th>Age</th>
<th>Salary</th>
</tr>
<tr>
<th>John</th>
<th>22</th>
<th>10,000</th>
</tr>
<tr>
<th>Roy</th>
<th>23</th>
<th>12,000</th>
</tr>
<tr>
<th>Maya</th>
<th>24</th>
<th>15,000</th>
</tr>
</table>
</body>
</html>
<html>
<head>
<title>www.bgcolor.com<
/title>
</head>
<body>
<table border="1"
align="center"
width=500>
<caption><b>Student
Records</caption></b>
<tr>
<td><b>Name</td></b>
<td><b>Subect</td></b>
<td><b>Marks</td></b>
</tr>
<tr>
<td>Arun</td>
<td>Java</td>
<td>70</td>
</tr>
<tr>
<td></td>
<td>c</td>
<td>80</td>
</tr>
<tr>
<td>Ashish</td>
<td>Java</td>
<td>75</td>
</tr>
<tr>
<td></td>
<td>c</td>
<td>69</td>
</tr>
<html>
<head>
<title>www.bgcolor.com<
/title>
</head>
<body>
<table border="1"
align="center"
width=500>
<caption><b>Student
Records</caption></b>
<tr>
<td><b>Name</td></b>
<td><b>Subect</td></b>
<td><b>Marks</td></b>
</tr>
<tr>
<td>Arun</td>
<td>Java</td>
<td>70</td>
</tr>
<tr>
<td></td>
<td>c</td>
<td>80</td>
</tr>
<tr>
<td>Ashish</td>
<td>Java</td>
<td>75</td>
</tr>
<tr>
<td></td>
<td>c</td>
<td>69</td>
</tr>