Computer Knowledge

Markup and Web Languages

1,701 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 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
  1. JAVA

  2. XML

  3. C#

  4. JSON

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

IAM policies are defined using JSON (JavaScript Object Notation) format to specify permissions for users, groups, and roles.

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. XML

  2. HTML

  3. JSON

  4. Groovy

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

Historically and by default, Gradle uses a Domain Specific Language (DSL) based on Groovy for writing build scripts (e.g., build.gradle). While Kotlin DSL is also supported now, Groovy is the traditional and widely recognized language for Gradle configurations.

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. Server

  2. Browser

  3. ISP

  4. None of the above

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

JavaScript was originally designed and is primarily used as a client-side (browser-side) scripting language. It runs directly within the user's web browser to manipulate the DOM and create interactive user interfaces.

Multiple choice
  1. @param

  2. @break

  3. @find

  4. @substring

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

In Javadoc, block tags are introduced by an '@' symbol followed by the tag name at the beginning of a line. The tag '@param' is a standard Javadoc block tag used to document a method parameter, whereas the other options are not valid Javadoc tags.