OBJECTIVE ASSESSMENT ACTUAL EXAM
2025/2026 COMPLETE QUESTIONS WITH VERIFIED
CORRECT SOLUTIONS || 100% GUARANTEED PASS
<BRAND NEW VERSION>
1. What constitutes a tag? - ANSWER ✓ An Element, An Attribute, A value
2. An element - ANSWER ✓ Provides the main instruction of the tag. An
element is required in every tag.
3. An attribute - ANSWER ✓ specifies a quality or describes a certain aspect
of the element. For example, a hyperlink is added to a Web page by using
the <a>, or anchor, element. The href attribute is added, which identifies the
hyperlink reference. Many elements require specified attributes, but some do
not. An attribute is required in a tag only if the element requires it.
4. A value - ANSWER ✓ Gives value to the element and its attribute. For
example, <a href="http://www.amazon.com"> has a value that instructs the
hyperlink to access the Amazon Website. Values are used only with
attributes; elements do not take values directly. Values should be surrounded
by quotation marks; they are not required, but placing values in quotations is
considered good coding practice.
5. Document Type Declaration (<!DOCTYPE>) - ANSWER ✓ A declaration
of document or code type embedded within an HTML, XHTML, XML or
SGML document; identifies the version and markup language used. Denoted
by the <!DOCTYPE> declaration at the beginning of the document.
,6. Block-level element - ANSWER ✓ A markup element that affects at least an
entire paragraph.
7. Text-level element - ANSWER ✓ A markup element that affects single
characters or words.
8. Character set - ANSWER ✓ The group of symbols used to render text on a
page.
9. Fixed-width font - ANSWER ✓ A font in which every character, including
the space character, has equal width. In proportional-width fonts, letters such
as I and J have less width than M or B.
10.Unicode - ANSWER ✓ A universal character set designed to support all
written languages, as well as scholarly disciplines (e.g. mathematics)
11.GIF - ANSWER ✓ Graphics Interchange Format. Image format that is
typically used for simpler line drawings, and can support animation and
transparency.
12.JPEG - ANSWER ✓ Joint Photographic Experts Group. Image format that
supports compression, and is typically used for photographs and complex
images.
13.PNG - ANSWER ✓ Portable Network Graphics
14.Dithering - ANSWER ✓ The ability for a computer to approximate a color
by combining the RGB values
15.Hexadecimal - ANSWER ✓ A base-16 number system that uses sixteen
distinct symbols 0-9 and A-F to represent numbers from 0 to 15. The
number 10 is represented as the letter A. 15 is represented as F and 16 is
represented as 10.
16.Rule - ANSWER ✓ In a style sheet, a format instruction that consists of a
special selector and the properties and values applied to it.
,17.Sans-serif - ANSWER ✓ A font style that does not use decorative strokes at
the tips of characters. Includes the Ariel font family.
18.Selector - ANSWER ✓ In a style sheet, any element to which designated
styles are applied.
19.Serif - ANSWER ✓ A font style that uses characters with small decorative
additions at the outermost points of the character, called strokes. Including
the Times and Times New Roman fonts.
20.hr - ANSWER ✓ Element that creates a horizontal rule line
21.Align - ANSWER ✓ Property that positions an element to the left, right or
center
22.Background-color - ANSWER ✓ Property that defines a color for a Web
page background
23.Canvas API - ANSWER ✓ An HTML5 Application Programming Interface
(API) used for rendering visual images on the fly by providing scripts with a
bitmap canvas.
24.Offline Web application API - ANSWER ✓ Permits the user to continue
working with Web sites and Web documents even when a network
connection is unavailable.
25.Application cache - ANSWER ✓ A directory on a computer where
applications, such as Internet apps, can be stored and run without access to
the original application.
26.Manifest - ANSWER ✓ A list of the files that are needed for the Web
application to work offline
27.Geolocation API - ANSWER ✓ Defines an advanced interface for location
information associated only with the device hosting the application, such as
latitude and longitude.
, 28.Drag-and-drop - ANSWER ✓ Functionality that allows a user to grab an
object and move it to a different location on a computer screen.
29.drop zone - ANSWER ✓ An area of a Webpage that has been defined as a
place where dragged items can be placed.
30.Web application framework - ANSWER ✓ A set of software tools or code
that is commonly used in the creation and management of online
applications.
31.Single-tier application - ANSWER ✓ All three layers (data, business logic,
presentation) are combined into one application or database. As an example:
A Microsoft Access database available only on a local system. A user simply
opens Access, then manipulated the database.
32.Two-tier application - ANSWER ✓ The client is responsible for presentation
and business logic, and a server houses only the data. Called a client-server
relationship. Any change to the database requires client upgrade.
33.N-tier application - ANSWER ✓ The business logic, presentation, and data
are completely separated. An upgrade in one of the layers does not
necessarily mean the others are affected.
34.DHTML (Dynamic HTML) - ANSWER ✓ A general term used to describe
the combination of the HTML, script, styles and the DOM (Document
Object Model) that provides Webpage interactivity.
35.Application Programming Interface (API) - ANSWER ✓ A set of universal
commands, calls and functions that allows developers to communicate with
an application or operating system.
36.Emulator - ANSWER ✓ A type of software that imitates a computer then
allows non-native software to run in a foreign environment. Sometimes also
a hardware device.
37.Server Side Includes (SSI) - ANSWER ✓ An instruction within an HTML
page that directs the Web server to perform an action.