0% found this document useful (0 votes)
22 views

SOALMAHYUNIHTML

The document is an English final exam for 8th grade students at Gandhi Shool Ancol Junior High School. It contains instructions for the exam, which has two sections - an essay section worth 60 marks and a multiple choice question section worth 40 marks. The multiple choice section contains 40 questions testing students' knowledge of HTML tags, attributes, and syntax.

Uploaded by

tristanveasna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
22 views

SOALMAHYUNIHTML

The document is an English final exam for 8th grade students at Gandhi Shool Ancol Junior High School. It contains instructions for the exam, which has two sections - an essay section worth 60 marks and a multiple choice question section worth 40 marks. The multiple choice section contains 40 questions testing students' knowledge of HTML tags, attributes, and syntax.

Uploaded by

tristanveasna
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 6

GANDHI SHOOL ANCOL

SMP – J JUNIOR HIGH SCHOOL ACADEMIC YEAR 2021 – 2022


2ND SEMESTER ENGLISH FINAL EXAMINATION

NAME : DAY/DATE : FRIDAY/27 MAY 2022 SUBJECT :COMPUTER


GRADE : 8A/8B NP TIME : 7.00 – 9.00 (HTML)
TEACHER : Mahyuni
MARKS : 100

Instruction to candidates: DO YOUR ANSWER ON THIS PAPERS.


1. Answer all questions ( All are 3 pages ).
2. If working is needed for any question, it must be shown with the answer.
3. Report to the test invigilator if there is any missing page, damage or unclear printing.
I. ESSAY [MARKS : 60]
II. MULTIPLE CHOICE QUESTIONS (MCQ) [MARKS : 40]

1. Source code to make a form with html

<!DOCTYPE html>
<html>
<head>
<title>Belajar Form di HTML</title>
</head>
<body>
<form action="proses.php" method="POST">
<label> Tipe text: </label>
<input type="text" name="nama"><br />

<label> Tipe email: </label>


<input type="email" name="email"><br />

<label> Tipe password: </label>


<input type="password" name="password"><br />

<label> Tipe radio: </label>


<input type="radio" name="gender">Pria
<input type="radio" name="gender">Wanita<br />

<label> Tipe checkbox: </label>


<input type="checkbox" name="hobi">Sepak Bola
<input type="checkbox" name="hobi">Bulutangkis
<input type="checkbox" name="hobi">Basket
<input type="checkbox" name="hobi">Renang <br />

<label> Tipe number: </label>


<input type="number" name="usia"><br />

<label> Tipe date: </label>


<input type="date" name="tanggal"><br />

<label> Tipe file: </label>


<input type="file" name="berkas"><br />
<label> Tipe submit: </label>
<input type="submit" name="simpan">
</form>
</body>
</html>

II. MULTIPLE CHOICE QUESTIONS [Marks : 40]

1..<b> are tag for


a.bold
b.italic
c.effect bold
d.underline

2.<i> are tag for


a.bold
b.italic
c.effect bold
d.underline

3.<u> are tag for


a.bold
b.italic
c.effect bold
d.underline
4. HTML stands for
a. HyperLink Markup League
b. HyperText Markup Language
c. Hyper Tool Markup Laguage
d. Hyper Test Markup Laguage

5. A. ECMAN ( European Computer Manufacturers Association )


b. W3C ( World Wide Web Consortium )
c. Google
d. PSR ( PHP Standards Recommendation )

6. The following are tags for creating headings, except


a. <h4>
b. <h5>
c. <h6>
d. <h7>

7. To create a new line using the ?


a. <br>
b. <newline>
c. <break>
d. <hr>

8. Tag to create a flat line (horizontal)?


a. <br>
b. <newline>
c. <break>
d. <hr>

9. Correct syntax to add background color?


a. <body ='background:green'>
b. <body style='background-color:green'>
c. <body color='green'>
d. <background>green</background>

10. The tag for bolding is


a. <bold>
b. <b>
c. <i>
d. <important>

11. The character used for the end tag ?


a. <>
b. /
c. *
d. \

12. To create a table using the ?


a. <table>
b. <tables>
c. <tb>
d. <tab>

13. When creating a table the <tr> tag works for ?


a. Make a row
b. Create column
c. Creating table headers
d. create table body
14. The <ol> tag is used to create a list ?
a. Sorted list
b. List Unordered
c. Single List
d. Plural List

15. There are 2 types of lists in HTML, namely order lists and unordered lists!
a. Right
b. wrong
c. Answers a and b are correct
d. All answers are wrong

16. To create a checkbox using the syntax?


a. <checkbox>
b. <input type='checkbox'>
c. <input type='check'>
d. <input type='check_box'>

17. To create a radio button using the syntax?


a. <radio>
b. <input type='radio_button'>
c. <input type=radio'>
d. <radio_button>

18. To create a drop-down list using tags?


a. <input type='drop-down'>
b. <drop-down>
c. <select>
d. <list>

19. Text areas can be created using tags?


a. <textarea>
b. <input type='textarea'>
c. <text>
d. All answers are wrong

20. The correct syntax for inserting images is


a. <img href='https://programmer.com' alt='Programmer class'>
b. <img src='programmer class.png' alt='Programmer class'>
c. <image src='programmer class.jpg' alt='Programmer class'>
d. <img type='programmer class.gif'>

21. What does the alt attribute in the <img> tag work for?
a. Display alternative text when images cannot be displayed
b. Creating images with animation
c. Set the image size
d. Adjusting the distance of the image from other elements

22. To make comments in HTML is


a. starts with <!– ends with –>
b. starts with <? ends with ?>
c. starts with // ends with *//
d. starts with # ends with #

23. To define the title using tags?


a. <head>
b. <body>
c. <footer>
d. <title>

24. The HTML elements for playing videos are


a. <video>
b. <input type='video'>
c. <media>
d. <canvas>

25. HTML elements for playing sound are


a. <audio>
b. <sound>
c. <video>
d. <mp3>

26. In HTML onfocus is part of the attribute?


a. style attribute
b. event attribute
c. media attributes
d. html attribute

27. The <canvas> element is used for?


a. Data manipulation
b. Displays the font
c. Creating graphics
d. Display dynamic images

28. The attribute used in the field to make the field rule must be filled is attribute
a. validate
b. required
c. name
d. value

29. To create navigation links using tags?


a. <nav>
b. <navigation>
c. <navbar>
d. <panel>

30. To create paragraphs using tags?


a. <p>
b. <paragraph>
c. <i>
d. <italic>

31. The attributes to set the length and width of an element are
a. width and height
b. width and value
c. value and height
d. styles and values

32. In the use of the table there is a colspan attribute that functions for
a. Merge several cell lines
b. Merge several cells column
c. Splitting several cell lines
d. Split multiple column cells

33. In the style attribute the property used to specify the typeface is
a. font-size
b. font-family
c. text-align
d. background-color

34. To assign a value to an HTML element using attributes?


a. name
b. size
c. values
d. placeholders
35. The following attributes are used in the form except
a. methods
b. name
c. action
d. placeholders

36. In the <form> tag there are two types of methods, namely?
a. GET and HTTP
B. GET and POST
c. POST and SELF
D. HTTP and SELF

37. CSS can be added in HTML elements in 3 ways except


a. inline
b. Outlines
c. Internal
d. External

38. To create a button ( button ) using tags?


a. <button>
b. <input type='button'>
c. Answers a and b are correct
d. All answers are wrong

39. Writing the correct DOCTYPE in HTML 5 is


a. <html>
b. <DOCTYPE>
c. <!DOCTYPE HTML>
d. <!DOCTYPE HTML5>

40. Graphics created with SGV use the ?


a. HTML
b. XML
c. CSS
d. JS

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy