1.
HTML is what type of language ?
Correct Answer
B. Markup Language
Explanation
HTML stands for Hypertext Markup Language. It is a markup language used for creating the structure and presentation of web pages. Markup languages are used to annotate text and define its structure, rather than being used to write programs or scripts. Therefore, HTML is considered a markup language. It is used to define the elements and layout of a web page, such as headings, paragraphs, links, images, and more.
2.
HTML uses
Correct Answer
C. Fixed tags defined by the language
Explanation
HTML uses fixed tags that are defined by the language itself. These tags are pre-defined and have specific meanings and purposes. They are used to structure and format the content of a webpage. Each tag represents a different element or type of content, such as headings, paragraphs, images, links, etc. These fixed tags ensure consistency and standardization in web development, allowing browsers to interpret and display the HTML code correctly. User-defined tags are not a feature of HTML, as the language only supports the use of pre-specified tags.
3.
The year in which HTML was first proposed _______.
Correct Answer
A. 1990
Explanation
HTML (Hypertext Markup Language) was first proposed in the year 1990. This is the correct answer as it aligns with the historical timeline of the development of HTML. In 1990, Tim Berners-Lee, a British computer scientist, proposed the concept of HTML while working at CERN. This marked the beginning of the World Wide Web and the subsequent evolution of HTML as the standard markup language for creating web pages.
4.
Apart from <b> tag, what other tag makes text bold ?
Correct Answer
B. <strong>
Explanation
The tag is used to make text bold in HTML. It is an inline element that indicates that the contents should be emphasized, typically by rendering them in a bold font.
5.
What is the full form of HTML?
Correct Answer
A. Hyper Text Markup Language
Explanation
HTML stands for Hyper Text Markup Language. It is the standard markup language used for creating and structuring web pages. HTML uses tags to define the structure and layout of a web document and is responsible for displaying content such as text, images, links, and multimedia on the internet.
6.
Who is Known as the father of World Wide Web (WWW)?
Correct Answer
D. Tim Berners-Lee
Explanation
Tim Berners-Lee is known as the father of the World Wide Web (WWW) because he invented the system in 1989 while working at CERN. He developed the first web browser and created the necessary protocols and technologies for the web to function, such as HTML, HTTP, and URLs. Berners-Lee's contributions revolutionized the way information is accessed and shared, leading to the widespread adoption and growth of the internet as we know it today.
7.
What should be the first tag in any HTML document?
Correct Answer
C. <html>
Explanation
The first tag in any HTML document should be . This tag represents the root element of an HTML page and is used to enclose all other tags. It defines the beginning and end of the HTML document and is necessary for the browser to interpret the page correctly.
8.
How can you make a bulleted list with numbers?
Correct Answer
B. <ol>
Explanation
To make a bulleted list with numbers, you can use the HTML tag "". This tag stands for ordered list and it creates a list with numbers as bullets. The "", "", and "" tags are not used to create a numbered list.
9.
What tag is used to display a picture in an HTML page?
Correct Answer
C. Img
Explanation
The correct answer is "img". In HTML, the "img" tag is used to display an image or picture on a web page. This tag requires the "src" attribute, which specifies the source or location of the image file. By using the "img" tag, web developers can easily insert and display images within their HTML code.
10.
HTML web pages can be read and rendered by _________.
Correct Answer
C. Web Browser
Explanation
HTML web pages can be read and rendered by web browsers. Web browsers are software applications that interpret the HTML code and display the web page content to the user. They fetch the HTML files from the server and then process the code to render the webpage with text, images, links, and other elements. Browsers also execute any embedded scripts or stylesheets present in the HTML code, allowing for dynamic and interactive web page experiences.
11.
Which of the following is not a browser ?
Correct Answer
A. Microsofts Bing
Explanation
Microsoft's Bing is not a browser; it is a search engine developed by Microsoft. Browsers are software applications that allow users to access and view websites on the internet. Netscape Navigator, Mozilla Firefox, and Opera are all examples of web browsers.
12.
Which HTML tag produces the biggest heading?
Correct Answer
D. <h1>
Explanation
The tag produces the biggest heading in HTML. Headings in HTML are structured using to tags, with being the largest and being the smallest. Therefore, is the correct answer as it produces the biggest heading.
13.
Tags and test that are not directly displayed on the page are written in _____ section.
Correct Answer
A. <head>
Explanation
The given correct answer is "". In HTML, the "" tag is used to define the head section of the document, which contains metadata about the HTML document such as the title, character encoding, and linked stylesheets or scripts. It is placed before the "" tag, which defines the body section of the document where the visible content is displayed.
14.
Menu bar allows you to hide/unhide panels?
Correct Answer
C. Window
Explanation
The menu bar option "Window" allows you to hide or unhide panels.
15.
This ideals with the rotation and movement of the object from one point to another in specific frames.
Correct Answer
A. Tweening
Explanation
Tweening refers to the process of creating smooth transitions and animations between keyframes in animation. It involves the interpolation of values and properties of an object or shape over a specified duration, allowing for the smooth movement and transformation of the object from one point to another. It can be achieved through shape tweening, which involves morphing one shape into another, or motion tweening, which involves animating the movement of an object from one position to another. Transition, on the other hand, generally refers to the overall change or shift between different scenes or states in an animation or video.
16.
To start Adobe Flash, Click on Start>______>Adobe Flash
Correct Answer
B. All Programs
Explanation
To start Adobe Flash, you need to click on "All Programs" in the Start menu. This option will display a list of all the installed programs on your computer, including Adobe Flash. By selecting Adobe Flash from this list, you can initiate the program and start using it.
17.
Which tag inserts a line horizontally on your web page?
Correct Answer
A. <hr>
Explanation
The tag inserts a horizontal line on a web page.
18.
Which tag allows you to add a row in a table?
Correct Answer
D. </tr> and </tr>
Explanation
The correct answer is " and ". The tag is used to define a row in an HTML table, and the tag is used to close the row. This allows you to add multiple rows to the table by using the and tags for each row. The other options mentioned in the question are incorrect as they do not correspond to the correct tags used to add a row in a table.
19.
How can you make a bulleted list?
Correct Answer
C. <ul>
Explanation
To create a bulleted list, you can use the HTML tag "". This tag stands for "unordered list" and is used to create a list of items without any specific order. Each item in the list is represented by the "" tag, which stands for "list item". By enclosing the list items within the "" tags, you can create a bulleted list where each item is displayed with a bullet point.
20.
Choose the correct HTML tag to make a text italic
Correct Answer
D. <i>
Explanation
The correct HTML tag to make a text italic is . This tag is used to indicate that the enclosed text should be displayed in italics.
21.
What is the correct HTML for adding a background color?
Correct Answer
B. <body bgcolor="yellow">
Explanation
The correct HTML for adding a background color is "". This is because the "bgcolor" attribute is used to specify the background color of an element, and in this case, it is being applied to the "body" element to set its background color to yellow.
22.
Choose the correct HTML tag for the smallest size heading?
Correct Answer
B. <h6>
Explanation
The correct HTML tag for the smallest size heading is . The heading tags in HTML range from to , with being the largest and being the smallest. Therefore, is the correct answer for the smallest size heading.
23.
What is the correct HTML tag for inserting a line break?
Correct Answer
A. <br>
Explanation
The correct HTML tag for inserting a line break is . This tag is a self-closing tag, meaning it does not require a closing tag. When used in HTML, it creates a line break or a new line in the content.
24.
Which tag creates a check box for a form in HTML?
Correct Answer
B. <input type="checkbox">
Explanation
The correct answer is . This tag creates a checkbox for a form in HTML.
25.
To create a combo box (drop down) which tag will you use?
Correct Answer
D. <select>option
Explanation
To create a combo box (drop down), the correct tag to use is . This tag is used to define a drop-down list of options, from which the user can select one or multiple options. The tag is used as a child tag within the tag to define each individual option within the drop-down list. The tag does not exist in HTML, and option is not a valid tag combination.
26.
Which of the following is a pic tag?
Correct Answer
A. <img>
Explanation
The tag is the correct answer because it is used to insert an image into an HTML document. The tag is used for paragraphs, the tag is used for underlined text, and the tag is used for italicized text.
27.
To create HTML Document you require a
Correct Answer
C. Just a notepad can be used
Explanation
HTML documents can be created using just a notepad because HTML is a simple text-based language. It does not require any specialized software or a high-powered computer. Notepad, which is a basic text editor available on most operating systems, can be used to write and save HTML code. Once the HTML code is written, it can be viewed and rendered in a web browser. Therefore, the correct answer is that just a notepad can be used to create an HTML document.
28.
The __________ character tells browsers to stop tagging the text.
Correct Answer
B. /
Explanation
The forward slash character "/" is used in HTML to close tags and tells browsers to stop tagging the text. It is placed after the opening tag and before the closing angle bracket ">" to indicate the end of the tag. This ensures that the text within the tag is not further interpreted as HTML code by the browser.
29.
Marquee is a tab in HTML to
Correct Answer
C. Display text with scrolling effect
Explanation
The correct answer is "Display text with scrolling effect". The marquee is a tab in HTML that allows text or images to scroll horizontally or vertically across the screen. It is commonly used to create attention-grabbing effects or to display important information that needs to be noticed by the user.
30.
Which of the following HTML code is Valid?
Correct Answer
B. <font color = "red">
Explanation
The correct answer is "". This is the correct HTML code for changing the font color to red. The other options are not valid HTML code for changing the font color.
31.
Which of the following is an attribute related to font tag?
Correct Answer
D. All of the above
Explanation
The font tag in HTML is used to specify the font size, color, and face of the text. Therefore, all of the given options - size, color, and face - are attributes related to the font tag.
32.
Tags and text that are not directly displayed on the page are written in ___________ selection.
Correct Answer
B. <HEAD>
Explanation
The correct answer is "". In HTML, the tag is used to define the head section of a document, which contains metadata about the document such as the title, stylesheets, scripts, and other information that is not directly displayed on the page.
33.
What is the full form HTTP?
Correct Answer
A. Hyper text transfer protocol
Explanation
HTTP stands for Hyper Text Transfer Protocol. It is a protocol used for transferring hypertext documents on the internet. This protocol allows communication between web servers and web browsers, enabling the retrieval and display of web pages.
34.
HTML document start and end with which tag pairs ?
Correct Answer
C. <HTML>...........</HTML>
Explanation
HTML documents start with the tag and end with the tag. These tags define the beginning and end of the HTML document and enclose all the content within it. The tag is used to define the head section of the document, which contains metadata and other information about the document. The tag is used to define the body section of the document, which contains the visible content that is displayed in the browser. The tag is not a valid HTML tag, so it is not used to start or end an HTML document.
35.
<title>.......</title> tag must be within_____________
Correct Answer
C. Header
Explanation
The ... tag must be within the header. The header section of an HTML document typically contains information about the document, such as the title, meta tags, and links to external stylesheets and scripts. The tag specifically defines the title of the document, which is displayed in the browser's title bar or tab. Placing the tag within the header ensures that it is properly associated with the document and can be recognized by browsers and search engines.
36.
<SCRIPT>........</SCRIPT> tag can be placed within ______________
Correct Answer
C. Both A and B
Explanation
The tag can be placed within both the header and the body of an HTML document. Placing it in the header allows the script to be loaded and executed before the rest of the document is rendered, while placing it in the body allows the script to be loaded and executed after the rest of the document has been rendered. This flexibility allows developers to choose the most appropriate placement for their scripts based on their specific needs.
37.
<TD>..........</TD> tag is used for _________
Correct Answer
B. Table Records
Explanation
The tag is used for displaying table records. It is used to define a single cell within a table row. Each cell contains data or content that is displayed within the table. Therefore, the correct answer is "Table Records".
38.
What is an ISP?
Correct Answer
C. Internet Service Provider
Explanation
An ISP stands for Internet Service Provider. It is a company or organization that provides internet access to customers. ISPs offer various types of internet connections such as dial-up, DSL, cable, and fiber optic. They also offer additional services like email accounts, web hosting, and virtual private networks. ISPs play a crucial role in connecting users to the internet and enabling them to access online services, websites, and other resources.
39.
Which of the following are commonly found on web pages?
Correct Answer
D. Hyperlinks
Explanation
Hyperlinks are commonly found on web pages. They are clickable elements that allow users to navigate between different web pages or sections within the same page. Hyperlinks are an essential part of the web browsing experience, enabling users to access related content, external sources, or perform actions such as downloading files or submitting forms. They are represented by text, images, or buttons that are visually distinguished from the rest of the content.
40.
What do I need to get onto the Internet?
Correct Answer
D. All of the above
Explanation
To access the internet, you need a computer, modem, and a browser. A computer is necessary to connect to the internet, while a modem is required to establish a connection between your computer and the internet service provider. Lastly, a browser is needed to navigate and access websites on the internet. Therefore, all of the options mentioned (computer, modem, and browser) are required to get onto the internet.
41.
Dreamweaver lets you create dynamic interactive webpages.
Correct Answer
A. True
Explanation
Dreamweaver is a web development software that provides tools and features to create dynamic and interactive webpages. It allows users to design and code webpages using various programming languages and also provides features for adding interactivity through animations, forms, and other interactive elements. Therefore, the statement "Dreamweaver lets you create dynamic interactive webpages" is true.
42.
Files created in Dreamweaver can only be saved in one file format
Correct Answer
B. False
Explanation
Dreamweaver allows users to save files in multiple file formats, including HTML, CSS, JavaScript, and more. Therefore, the statement that files created in Dreamweaver can only be saved in one file format is false.
43.
Inside which HTML element do we put the JavaScript?
Correct Answer
C. <script>
Explanation
The correct answer is . JavaScript code is typically placed within the element in HTML documents. This element is used to define or reference an external script file or to embed JavaScript code directly within the HTML document.
44.
The external JavaScript file must contain the <script> tag.
Correct Answer
B. False
Explanation
The given answer, False, is correct because an external JavaScript file does not need to contain the tag. The tag is only required when including JavaScript code directly within an HTML file. When using an external JavaScript file, the tag is not needed as it is already referenced in the HTML file using the src attribute.
45.
Which operator is used to assign a value to a variable?
Correct Answer
A. =
Explanation
The operator used to assign a value to a variable is the "=" operator. This operator is known as the assignment operator and it is used to store a value in a variable.
46.
Is JavaScript case-sensitive?
Correct Answer
A. True
Explanation
JavaScript is case-sensitive, meaning that it distinguishes between lowercase and uppercase letters. This means that variables and function names must be written with the exact same capitalization each time they are referenced. For example, "myVariable" and "myvariable" would be considered as two different variables in JavaScript. Therefore, the correct answer is true.