Computer Knowledge

Markup and Web Languages

1,492 Questions

Test your understanding of HTML tags, XML structures, and web page creation technologies. The questions cover elements like CSS styling, parsing documents, and defining web attributes. This section is essential for candidates appearing for computer proficiency tests in various competitive exams.

HTML tags and attributesXML document parsingCSS styling levelsWeb page creation basicsBrowser compatibility

Markup and Web Languages Questions

Multiple choice organization of commerce and management emerging modes of services e-advertising, e-marketing and e-security structure of business introduction to internet and e-commerce

HTML means ______.

  1. High Text Markup Language

  2. Hyper Telegraph Markup Language

  3. Hyper Text Markup Language

  4. Hyper Text Marker LAnguage

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

HTML stand for Hypertext markup language. HTML is the standard markup language for creating web pages and web applications. HTML is the fundamental technology used to define the structure of a web page. It forms triad of cornerstone technologies for the World wide web.

Multiple choice text document and word processing introduction to word visual communication information communication technology (ict) physics

Which of the following is not a attribute of form tag.

  1. Action

  2. Method

  3. Exe type

  4. None of the above

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

Exe type is not a attribute of form tag.

EXE is a file extension for an executable file format. An executable is a file that contains a program - that is, a particular kind of file that is capable of being executed or run as a program in the computer. An executable file can be run by a program in Microsoft DOS or Windows through a command or a double click.

The <form> tag is written as <form> </form> with any number of form-associated elements nested between the start and end tags. The <form> tag usually has an action attribute specified (which specifies the page that will process the form). It can also have other attributes.

We used them so far in their simplest form, but most of the HTML tags can also have attributes, which are extra bits of information. An attribute is used to define the characteristics of an HTML element and is placed inside the element's opening tag.

Multiple choice different modes of communication and their uses information technology communication systems physics

 In order to interpret XML documents one should

  1. Use standardized tags

  2. Have a document type definition which defines the tags

  3. Define the tags separately

  4. Specify tag filename

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

A Document Type Definition (DTD) or an XML Schema is required to define the structure, elements, and attributes allowed in an XML document, enabling parsers to interpret the data correctly.

Multiple choice
  1. Stands for "Hyper-Text Markup Language", computer language

  2. Stands for "How to Mix Languages"

  3. "Hyper Teachers Make Lessons"

  4. The kindergarten alphabet.

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

HTML stands for Hyper-Text Markup Language. It is the standard language used to create and structure documents for display in a web browser.

Multiple choice
  1. A protocol

  2. An application

  3. A URL

  4. A language

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

HTML stands for HyperText Markup Language. It is the standard language used to create and structure content on the web.

Multiple choice
  1. High Text Middle Language

  2. High Tech Markup Lingo

  3. HoT MeaL

  4. Hyper Text Markup Language

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

HTML stands for Hyper Text Markup Language, which is the standard markup language used to create and structure web pages.

Multiple choice
  1. <!–This is a comment–&gt

  2. //This is a comment

  3. –This is a comment

  4. This is a comment

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

In JavaScript, single-line comments are written using double forward slashes '//'. Any text following '//' on the same line is ignored by the JavaScript engine.

Multiple choice
  1. console.log(5);

  2. console.print(5);

  3. print(5)

  4. print.console(5);

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The standard method for writing messages or values to the web console in JavaScript is 'console.log()'. Other options like 'print()' or 'console.print()' are either incorrect or perform different actions (such as opening the print dialog).