Basic Html - Study Mode

[#106] ___________ is an open source JavaScript library that allows support for different levels of experiences based on the capabilities of each browser.
Correct Answer

(B) Modernizr

Explanation

Solution: Modernizr is an open source JavaScript library that allows support for different levels of experiences based on the capabilities of each browser using a simple feature detection model.

[#107] ____________ allows you to add custom styles to the document and test an element afterwards.
Correct Answer

(D) modernizr.testStyles()

Explanation

Solution: Modernizr.testStyles() allows you to add custom styles to the document and test an element afterwards. An element with the id of “modernizr” is injected into the page.

[#108] Modernizr does actually add missing functionalities to browsers save for the HTML5 tags styling support.
Correct Answer

(B) False

Explanation

Solution: Modernizr, in spite of its name, does not actually add missing functionalities to browsers save for the HTML5 tags styling support.

[#109] HTML is stand for
Correct Answer

(A) Hyper Text Markup Language

[#110] HTML is a subset of
Correct Answer

(B) SGML

Explanation

Solution: SGML (Standard Generalized Markup Language) is a standard for defining generalized markup languages for documents. It provides a framework within which one can create specific markup languages, such as HTML. HTML (Hypertext Markup Language) is a specific application of SGML designed for creating web pages and web applications. SGML serves as a meta-language, meaning it is a language used to define other languages. It allows for the definition of document structures and rules for encoding information. HTML, as a " subset " of SGML, adopts and implements these rules but is specifically tailored for the web. " SGML " itself is very flexible and powerful but also complex, which is why HTML was created to simplify the process of creating web documents. In essence, HTML is built upon the principles and structures laid out by SGML, making it a subset of SGML. This means that while HTML uses a simplified set of rules derived from SGML, it does not encompass all of the complexity and flexibility that SGML offers.