Organizer: The Digital Adda
About the Quiz
- Attempt the Quiz only once
- Score will be released only after
closing of the quiz. - If total marks scored is above 80% of the maximum marks , then E-certificate will be emailed in immediately or vedaamrta Site
- E-certificate will be issued via email to all registered candidate
- Daily only 100 certificates are generated
Get HTML, CSS, and Javascript for Web Developers Certificate from The Digital Adda which you can share in the Certifications section of your LinkedIn profile, on printed resumes, CVs, or other documents.
- Format: Multiple Choice Question
- Questions: 12
- Passing Score: 10/12 or 80%
- Language: English
Apply Link
Which HTML5 feature is used for offline storage of web applications?
*
10/10
a) localStorage
b) offlineStorage
c) sessionCache
d) webStorage
In HTML, what is the purpose of the <figure> element?
*
10/10
a) It defines a section that contains navigation links
b) It represents a standalone piece of content, such as an image or diagram
c) It defines a table for data presentation
d) It specifies the footer of a document or section
Which HTML5 input type is used for entering a date?
*
10/10
a) <input type=”date”>
b) <input type=”datetime”>
c) <input type=”calendar”>
d) <input type=”time”>
What does the CSS property “z-index” control?
*
10/10
a) Text alignment
b) Element visibility
c) The stacking order of elements
d) Background color
Which CSS selector has the highest specificity?
*
10/10
a) ID selector (#myElement)
b) Class selector (.myClass)
c) Element selector (div)
d) Universal selector (*)
What is the CSS pseudo-class used to select elements that are in the process of being clicked by the user?
*
10/10
a) :hover
b) :active
c) :focus
d) :current
In JavaScript, what is a closure?
*
10/10
a) A function that has no return statement
b) A variable declared within a function
c) A function that references variables from its parent function’s scope even after the parent function has finished executing
d) A function that can only be called once
What is the purpose of the “bind” method in JavaScript?
*
10/10
a) To concatenate two strings
b) To create a new array
c) To associate a function with a specific context or object
d) To filter elements in an array
Which of the following is true about the “async” attribute when including an external JavaScript file?
*
10/10
a) It specifies that the script should be executed asynchronously, without waiting for the HTML to be fully parsed.
b) It ensures that the script is executed in the order it appears in the HTML document.
c) It guarantees that the script will block the rendering of the page until it is fully loaded.
d) It is not a valid attribute for including external JavaScript files.
What does the “typeof” operator return when applied to a function in JavaScript?
*
10/10
a) “function”
b) “object”
c) “method”
d) “undefined”
What is the result of the expression NaN === NaN in JavaScript?
*
10/10
a) true
b) false
c) undefined
d) NaN
In JavaScript, what is the purpose of the “map” method when used with arrays?
*
10/10
a) To remove elements from an array
b) To iterate over each element of the array and return a new array with modified values
c) To concatenate two arrays
d) To check if an element exists in an array