1.
What do the following tags do?
Correct Answer
A. Bold
Explanation
The "Bold" tag is used to make text appear in a bold font.
2.
What do the following tags do?
Correct Answer
B. Italic
Explanation
The "Italic" tag is used to apply italic formatting to the text enclosed within the tag. It is commonly used to emphasize or highlight certain words or phrases in a document or webpage.
3.
What do the following tags do?
Correct Answer
C. Underline
Explanation
The underline tag is used to create an underline effect on the text. It is commonly used to emphasize or highlight specific words or phrases in a document.
4.
What do the following tags do?
Correct Answer
D. Used for data input
5.
What do the following tags do?
Correct Answer
E. Creates an item in an unordered list
6.
What is the use of the color property? It is used to [________] the color of the [________].
Correct Answer
change
text
Explanation
The color property is used to change the color of the text.
7.
What is the output of the following code?
Correct Answer
B. B)
8.
To change the text size in HTML, we use the [________] property.
Correct Answer
font-size
Explanation
To change the text size in HTML, we use the "font-size" property. This property allows us to specify the size of the text, either in absolute units like pixels or in relative units like percentages. By adjusting the value of the "font-size" property, we can increase or decrease the size of the text displayed on a webpage.
9.
Write a code to change the heading1’s size to 180%?
Correct Answer
B. B)
Explanation
The correct answer is b) because in HTML, the heading1 element can be styled using CSS. To change the size of the heading1, we can use the CSS property "font-size" and set it to 180%. This will increase the size of the heading1 to 180% of its default size.
10.
Color values can be represented using special numerical values called [________].
Hexadecimal digits operate on a [________] number system.
Letters in a hexadecimal number range from [[________] to [________]].
Correct Answer
hexadecimal values
base-16
A
F
Explanation
Color values can be represented using special numerical values called hexadecimal values. Hexadecimal digits operate on a base-16 number system. Letters in a hexadecimal number range from A to F.
11.
A hexadecimal value starts with a [________] sign.
Correct Answer
#
Explanation
A hexadecimal value starts with a "#" sign.
12.
To merge two rows, we use the [________].
Correct Answer
rowspan attribute
Explanation
To merge two rows, we use the rowspan attribute. This attribute is used in HTML tables to specify the number of rows a cell should span. By setting the rowspan value to the desired number, we can merge multiple rows into a single cell. This is useful when we want to create cells that span across multiple rows, merging the content of those rows into one.
13.
To merge two columns, we use the [________].
Correct Answer
colspan attribute
Explanation
To merge two columns, we use the colspan attribute. The colspan attribute is an HTML attribute that is used to specify the number of columns a cell should span or merge horizontally. By using the colspan attribute, we can combine the cells of multiple columns into a single cell, effectively merging them together. This is commonly used in HTML tables to create merged cells or to create cells that span across multiple columns.
14.
What is the bgcolor attribute used for?
To set a [________] color for the [________].
Correct Answer
background
table
Explanation
The bgcolor attribute is used to set the background color for a table.
15.
What are forms used for?
Forms are used to [________] from [________].
Correct Answer
collect data
users
Explanation
Forms are used to collect data from users. By providing input fields and prompts, forms allow users to input information such as their name, email, or preferences. This data can then be collected and processed for various purposes, such as creating user accounts, conducting surveys, or making online purchases. Forms are an essential tool for gathering information from users in a structured and organized manner.
16.
The input data holders in forms are known as [________].
Correct Answer
input controls
Explanation
The input data holders in forms are known as input controls. Input controls are elements or components in a form that allow users to input or select data. These controls include text fields, checkboxes, radio buttons, dropdown lists, and buttons. They provide a way for users to interact with the form and enter the required information.
17.
The function of which attributes can be described as followed: It is used to upload data in an HTML form.
Correct Answer
A. Method
Explanation
The "Method" attribute is used to specify the HTTP method to be used when submitting the form data. It determines how the form data will be sent to the server. In this case, since it is used to upload data in an HTML form, the "Method" attribute would likely be set to "POST" which is commonly used for submitting form data.
18.
The function of which attributes can be described as followed: It specifies how the browser encodes the data before it sends it to the server.
Correct Answer
C. Enctype
Explanation
The correct answer is "Enctype". The enctype attribute specifies how the browser encodes the data before sending it to the server. This attribute is commonly used in HTML forms when submitting data to a server-side script. It determines how the form data should be encoded, such as "application/x-www-form-urlencoded" or "multipart/form-data". The server-side script then uses this encoding information to properly handle and process the submitted data.
19.
The function of which attributes can be described as followed: It specifies where the results of the script are going to be displayed. It processes data passing through the form controls.
Correct Answer
B. Target
Explanation
The target attribute in HTML specifies where the results of a form submission will be displayed. It can be set to various values such as "_self" to open the response in the same window, "_blank" to open it in a new window, or a named frame or iframe to target a specific frame or iframe. This attribute is crucial for determining where the data entered in the form controls will be processed and displayed.
20.
Choose Radio button which is circular, and allows the visitor to choose one option from a group of options.
It is used to create a control that will allow the user to select a gender without typing it in.
Correct Answer
B. B)
Explanation
The correct answer is b) Radio button. A radio button is a circular option that allows the visitor to choose only one option from a group of options. In this case, it is used to create a control for selecting a gender without the need for the user to type it in.
21.
Choose Text box which is a box in which the website visitor can enter/type information.
It is used to create a control that will allow the user to type in his address.
Correct Answer
A. A)
Explanation
The correct answer is "a) Text box". A text box is a form control element that allows website visitors to enter or type information. In this scenario, it is used specifically to create a control that will allow the user to type in their address.
22.
Choose Drop-down list which is a list that appears when the website visitor clicks on an arrow to display a list of possible options to choose from.
Correct Answer
D. D)
Explanation
The correct answer is d) because a drop-down list is a common user interface element that allows website visitors to select one option from a list of choices. When the visitor clicks on an arrow or a button, a list of possible options is displayed, and they can choose one option from that list. This type of input field is often used in forms or menus to provide a compact and organized way for users to make selections.
23.
Choose Check box which is a box that allows the user to select more than one option from a group of options.
It is used to create a control that will allow the user to choose one or more subjects to study at school without typing them in.
Correct Answer
C. C)
Explanation
A check box is a type of input control that allows the user to select multiple options from a group of choices. In this context, the check box is used to create a control that allows the user to choose one or more subjects to study at school without having to manually type them in. This makes it easier for the user to make their selections by simply checking the appropriate boxes.
24.
Choose Password which is used to hide the characters of a text
Correct Answer
E. E)
Explanation
The correct answer is e) Encryption. Encryption is a process of converting plain text into a coded form (cipher text) to prevent unauthorized access. It is used to hide the characters of a text by scrambling the original message using a specific algorithm and a secret key. The encrypted message can only be decrypted back into its original form using the same key.
25.
The [________] attribute allows the user to set the width of the text-input control.
Correct Answer
size
Explanation
The "size" attribute allows the user to set the width of the text-input control. This means that the user can specify the number of characters that can be displayed in the text-input field. By setting a specific size, the user can control the visual appearance and the maximum length of the input that can be entered in the field.
26.
Check input controls.
Correct Answer(s)
A. Radio buttons
C. Textboxes
D. Checkboxes
E. Drop-down lists
Explanation
The given answer includes a list of common input controls used in user interfaces. Radio buttons, textboxes, checkboxes, and drop-down lists are all examples of input controls that allow users to interact with a system by selecting options or entering data. These controls are commonly used in forms, surveys, and other interactive elements to gather information or make selections. Frames and labels, on the other hand, are not input controls but rather elements used for organizing and displaying content within a user interface.
27.
Use the following part of the web page to answer the questions below:
Which statement creates the control shown in Part A?
Correct Answer
B. B)
28.
Use the following part of the web page to answer the questions below:
Which statement creates the control shown in Part B?
Correct Answer
A. A)
29.
Use the following part of the web page to answer the questions below:
Which statement creates the control shown in Part C?
Correct Answer
C. C)
30.
Use the following part of the web page to answer the questions below:
Which statement creates the control shown in Part D?
Correct Answer
D. D)
31.
Use the following part of the web page to answer the questions below:
Which statement creates the control shown in Part E?
Correct Answer
E. E)
Explanation
The control shown in Part E is created by statement e).
32.
Tags are usually enclosed in [[________][________][________]].
Correct Answer
<
Angle brackets
>
Explanation
The correct answer is "Angle brackets". Angle brackets are usually used to enclose tags in HTML and XML coding. They are represented by the symbols "".
33.
How can we display the HTML code of a webpage? By selecting the “________” option in a webpage shown in ________.
Correct Answer
View Source
Internet Explorer
Explanation
To display the HTML code of a webpage, you can select the "View Source" option in a webpage shown in Internet Explorer. This option allows you to see the underlying HTML code of the webpage, including all the tags, elements, and formatting used to create the webpage's content and structure. By selecting this option, you can access and analyze the HTML code for various purposes, such as troubleshooting, learning, or making modifications to the webpage.
34.
How many standard headings can be used in HTML? ________ headings -- ________ (heading ________) is the smallest and ________ (heading ________) is the largest.
Correct Answer
6
h6
6
h1
1
Explanation
There are six standard headings that can be used in HTML. The smallest heading is h6 and the largest heading is h1.
35.
What are tags? HTML tags are ________ used to identify ________ in a webpage. The first tag to use in an HTML file is <________>.
Correct Answer
keywords
features
html
Explanation
HTML tags are used to identify keywords and features in a webpage. The first tag to use in an HTML file is .
36.
This tag can occur only once in an HTML document.
Correct Answer
D. Body
Explanation
The tag "body" is used to define the main content of an HTML document. It represents the entire content of the document, including headings, paragraphs, images, links, etc. The "body" tag can occur only once in an HTML document because it represents the main content area, and having multiple "body" tags would create confusion and violate the structure of the document.
37.
When we move the mouse pointer over a hyperlink, it will change to
Correct Answer
B. B)
Explanation
When we move the mouse pointer over a hyperlink, it will change to the hand cursor. This is the default behavior of most web browsers to indicate that the text or image is clickable and will take the user to another page or perform a specific action when clicked. The hand cursor is a visual cue that helps users identify interactive elements on a webpage and encourages them to click on the hyperlink for further navigation.
38.
Text links are known as [________]
Correct Answer
hypertext
Explanation
Text links are known as hypertext. Hypertext refers to the ability to link different pieces of text together, allowing users to navigate between them by clicking on the links. This concept is widely used on the internet, where text is often hyperlinked to other web pages or resources. By clicking on a text link, users can access additional information or related content, enhancing their browsing experience and enabling them to explore different topics or sources.
39.
What is the tag used to create a link to an email address? <[________]>
Correct Answer
mailto
Explanation
The tag used to create a link to an email address is "mailto". This tag allows users to click on the link and open their default email client with a new email addressed to the specified email address.
40.
The “ref” in the "a href " tag stands for [________]
Correct Answer
reference
Explanation
The "ref" in the "a href" tag stands for reference. The "a href" tag is used in HTML to create a hyperlink, and the "ref" attribute is used to specify the URL or location that the hyperlink should point to. It is short for "reference" because it is used to refer to the location or resource that the user will be directed to when they click on the hyperlink.
41.
A list placed inside another is called [________].
Correct Answer
nested list
Explanation
A list placed inside another is called a nested list. This means that one list is contained within another list. It allows for a hierarchical structure where the inner list is a part of the outer list. This concept is commonly used in programming and data structures to organize and represent complex data.
42.
[________] can be clicked to allow users to navigate to another webpage.
Correct Answer
Hyperlinks
Explanation
Hyperlinks are clickable elements that allow users to navigate to another webpage. By clicking on a hyperlink, users can be directed to a different webpage or a specific section within the same webpage. Hyperlinks are commonly used in websites, documents, and online content to provide easy navigation and access to related information.
43.
What does HTTP stand for? HTTP stands for ________. It allows you to transfer a hypertext content.
Correct Answer
Hyper Text Transfer Protocol
Explanation
HTTP stands for Hyper Text Transfer Protocol. It is the protocol used for transferring hypertext content over the internet. The use of HTTP allows for the communication and transfer of information between web servers and clients. It is the foundation of data communication for the World Wide Web, enabling the retrieval and display of web pages and other resources.
44.
A group of computers that are connected together to allow them to communicate and exchange information is called a________.
Correct Answer
A. A. network
Explanation
A group of computers that are connected together to allow them to communicate and exchange information is called a network. This term refers to the infrastructure that enables computers to share resources, such as files and printers, and communicate with each other through various technologies, such as Ethernet or Wi-Fi. A network can be as small as two computers connected together or as large as a global network connecting millions of devices.
45.
In a network, the computer that connects all other users’ computers is called __________.
Correct Answer
C. C. A server
Explanation
In a network, a server is the computer that connects all other users' computers. It is responsible for managing network resources, such as files, printers, and internet access. Servers provide services to clients, which are the other computers connected to the network. A server typically has more processing power, storage capacity, and memory compared to client computers. It handles requests from clients and delivers the requested data or services. Therefore, option C, a server, is the correct answer.
46.
In a network, the users’ computers that are connected by a server are called __________.
Correct Answer
A. A. A client
Explanation
In a network, the users' computers that are connected by a server are called clients. Clients are the devices that request services or resources from the server. They rely on the server to provide them with the necessary data or perform specific tasks. The server, on the other hand, is responsible for managing and distributing resources to the clients in the network.
47.
The network model, where a standalone computer connects a group of computers, is called _______.
Correct Answer
D. D. Client-Server
Explanation
The correct answer is D. Client-Server. In a client-server network model, a standalone computer (the server) connects and provides services to a group of computers (the clients). The clients request and receive resources from the server, such as files, data, or processing power. This model allows for centralized control and management of resources, as well as efficient sharing and distribution of tasks among the connected computers.
48.
All of the following are network types except:
Correct Answer
D. D. RAN
Explanation
The correct answer is D. RAN. RAN stands for Radio Access Network, which is not a type of network but rather a component of a cellular network. A RAN is responsible for connecting mobile devices to the core network and managing the radio resources. It is not a standalone network type like WAN, LAN, PAN, or MAN.
49.
The _________ is a small network that exists between a few devices at home.
Correct Answer
C. C. PAN
Explanation
A PAN, or Personal Area Network, is a small network that connects devices within a limited range, typically within a home or office. It allows devices such as smartphones, laptops, and tablets to communicate with each other and share resources, such as files or printers. A PAN is typically established using wireless technologies such as Bluetooth or Wi-Fi.
50.
The ____________ is network of computers that can be found in a business office or that connects computers in a building.
Correct Answer
B. B. LAN
Explanation
A LAN (Local Area Network) is a network of computers that is typically found in a business office or building. It connects computers within a limited area, such as a single building or campus. A LAN allows for the sharing of resources, such as files and printers, and enables communication between computers within the network.