What is the short form of the World Wide Web?
- aWeb
- bNet
- cSite
- dLink
148 questions · 17 sections
What is the short form of the World Wide Web?
Who created the World Wide Web?
In which research institute was Tim Berners-Lee working when he proposed the web?
CERN is located in which country?
In which year did Tim Berners-Lee propose the concept of the web?
The written texts on the internet were named by Tim Berners-Lee as -
The network addresses where hypertexts are found are called -
Information on the internet in media format like photo, video or audio is called -
In which year did Tim Berners-Lee propose a more detailed solution and create a software to view web documents?
The software made by Tim Berners-Lee to view web documents from another computer is called a -
Which of the following is a web browser?
Which one is NOT a web browser?
Websites that produce different outputs depending on user inputs are called -
Dynamic websites are also known as -
Which of the following is an example of a web application?
Every website has two sides. They are -
The action of the client sending data to the server is known as a -
When the server sends the desired output back to the client, it is known as a -
Which of the following is a popular programming language for writing server software?
What is the full form of HTML?
HTML is a -
What is the full form of CSS?
What is CSS used for?
Which language is popular for client-end processing?
Consider the following statements about HTML:
The first page of a website is called the -
Which page is commonly seen in almost every website?
Which type of website has separate pages for each post?
What file extension is used to create an HTML file?
Which of the following is a popular text editor for editing HTML files?
The different parts of an HTML page are called -
What is used to write HTML elements?
Tags that do not have any content inside them and need no closing tag are called -
What distinguishes a closing tag from an opening tag?
Which is the correct form of an opening and closing tag pair?
<tag> and <tag><tag> and </tag></tag> and <tag>(tag) and (/tag)The first line <!DOCTYPE html> is called the -
All HTML elements are contained inside which main element?
<body><head><html><title>Everything displayed inside the web browser should be inside which tag?
<head><body><html><title>Information such as website settings, styles and scripts are written inside which element?
<body><head><footer><title>The website title shown in the browser tab is written inside which tag?
<head><body><title><h1>Which of the following HTML structures is correct?
<p><em>Abracadabra</p></em><p><em>Abracadabra</em></p><em><p>Abracadabra</em></p><p></em>Abracadabra<em></p>According to the box comparison, why can a box not reside inside two or more boxes?
Which element is used to create a line break?
<p><br><hr><lb>The <br> element is an -
Which element is used to write a paragraph?
<para><p><pg><br>Which element is used to draw a horizontal line?
<br><line><hr><hl>A paragraph break takes -
Consider the following statements:
<br> has no closing tag<hr> is an empty element<p> element itself manages empty space between linesWhich element is used to make text bold?
<b><i><u><bold>Which element is used to make text italic?
<b><i><u><it>Which element is used to underline text?
<b><i><u><under>Which tag is used to display superscript text?
<sub><sup><big><small>Which tag is used to display subscript text?
<sub><sup><small><em>To display correctly, which tag is needed?
<sup><sub><big><strong>Which elements are used to make text sizes big and small respectively?
<large> and <tiny><big> and <small><sup> and <sub><b> and <s>Which elements are used to emphasize a particular text?
<b> or <i><em> or <strong><sup> or <sub><big> or <small>Which tag is used to create an unordered list?
<ol><ul><li><list>Which tag is used to create an ordered list?
<ol><ul><li><dl>Which tag signifies a list item / element?
<ul><ol><li><item>By default, what symbol does an unordered list put in front of each element?
A part of an HTML element that modifies the functionality of that element is called an -
What is the correct convention for writing an attribute?
<tag attribute_name="value"><tag value="attribute_name"><attribute_name tag="value"><tag="value" attribute_name>Which attribute is used to change the bullet symbol of an unordered list?
<ol type="i"> will produce list item numbers as -
To start an ordered list from a particular number, which attribute is used?
Whatever the type, the value of the start attribute should always be -
To display an ordered list with uppercase English alphabets, which type value is used?
Links on HTML are called -
Which element/tag is used to create a hyperlink?
<link><a><href><url>Which attribute is used to set the web address (URL) of a hyperlink?
When a hyperlink is created, the link text appears as -
Which attribute is used to make a link open in a new tab?
To open a link in a new tab, which value is used in the target attribute?
To open a link in the same tab, which value is used in the target attribute?
Which element is used to add an image to a web page?
<image><img><pic><src>The <img> element is an -
Which attribute defines the location of an image?
Which attributes are used to control the display size of an image?
To display an image of 300x200 pixels, which code is correct?
<img src="image.jpg" width="300px" height="200px"><img src="image.jpg" size="300x200"><img href="image.jpg" w="300" h="200"><img src="image.jpg" pixel="300x200">To make an image act as a hyperlink, the <img> element is placed -
<p> element<a>) element<head> element<title> elementWhich element is needed to create a table in HTML?
<tr><td><table><th>The topmost row in a table is known as the -
Which three elements can a table have inside it?
Which element is used to create rows in a table?
<td><th><tr><tbody>Which element is used to put table headings (which makes them bold)?
<td><th><tr><thead>Which element is used to put data inside table cells?
<td><th><tr><tbody>Which attribute is used to create a border around table cells?
Which attribute controls the space between two adjacent cells?
Which attribute controls the distance of cell text from the cell borders?
Which element is used to put a caption for a table?
<title><caption><head><label>To make a cell expand over several rows, which attribute is used?
To make a cell consist of several columns, which attribute is used?
Texts written between <!-- and --> tags are called -
What happens to a comment when the code is rendered through the browser?
Why do developers put comments in code?
Which empty element is used to define the settings of a page (such as character set)?
<head><meta><title><style>Which attribute of the meta element is used to properly display Bangla text?
Which character set is a popular unicode character set that supports Bangla?
The meta element should be placed inside which element?
<body><head><html><title>Which attribute notifies the browser of the language of the texts in the web document?
For British English, which region code is used in the lang attribute?
Which attribute is used to define an element's color, fonts and many other properties?
When defining multiple values in the style attribute, what is used between each property?
Which property defines the distance of an element from other elements?
Which property defines the distance of an element from the border?
Which property defines text alignment?
Which property defines the background colour of an element?
Where can a common style be defined to be used in different elements?
<p> tagsConsider the following statements about CSS:
The first and foremost thing to keep in mind while designing a website is -
A basic design of a web page layout made primarily on pen and paper is called a -
Which software can be used to create web page designs?
Creating the required pages with HTML and CSS according to the design is known as -
The part that involves programming for feature implementation and connecting to a database server is known as -
Developers capable of both front-end and back-end development are known as -
Which process must be performed during and after development to ensure features work without bugs?
To find your website on the internet, what do you need?
From whom can you get a public IP address?
Uploading website files to a web server in order to publish a website is called -
Why do people use domain names instead of IP addresses to browse websites?
Which of the following is a domain name?
<html>You can buy your preferred domain name only if -
After getting a domain name, what must you do to make your website accessible?
What tag is used to link between web pages?
<a><href><i><div>Using hyperlinks in a webpage makes -
In which case do we use domain names?
Consider the following code:
What will you see from the following code: <p>H<sup>2</sup>O</p>?
To add map.jpeg image of 640x480 pixels inside a webpage, what type of directives do you need?
Sarika added a new image on her newly created webpage. This made it more attractive. What tag did she use?
<img><fig><photo><illus>What attribute is used to open a webpage in a new window?
What value in the border attribute shows no border?
Mimi is learning web page designing. Which tag is used for hyperlinks?
<caption><a><head><html>The use of hyperlinks in a webpage makes it -
A website was made for X Degree College with only HTML and has no options for user feedback. Is the website dynamic?
To display the text "Welcome to X Degree College" in blue color above an image, which attribute would be used?
Fahim hosted a website but could not access it after a while. What could be the most likely problem?
To display the text "ICT" at the center with heading size 2, which element should be used?
<h1> with text-align: center<h2> with text-align: center<h6> with text-align: left<p> with boldTo display a subject table with "Serial No." and "Subject name" as column headers, which element makes the header cells bold?
<td><th><tr><caption>Consider the difference between an IP address and a domain name:
In the code <h3> COLLEGE RESULT <h3>, what is the error?
</h3> with a forward slashWhy is HTML considered an easy way to build a web page?
To present a list as ordered (numbered) instead of unordered (bulleted), what code change is needed?
<li> to <td><ul> to <ol><ol> to <ul><li> tags