We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1
1. What is DOM ?
DOM means Document Object Model.
DOM represents logical tree structure of HTML elements. Window ↓ Document ↓ Html ↓
Head Body
↓ ↓ Title Script Input Button
2. What is DOM property ?
DOM properties are values of HTML elements that you can set or change.
3. What Z index in CSS ?
Z index specifies the stack order of an element. An element with greater stack order is always in front of an element with a lower stack order. z-index only works on positioned elements. If we want add background image then we can use Z index.
4. What strict mode in Javascript ?
Used to generate silent error.
5. What is View Port ?
The viewport is the user's visible area of a web page.
6. What is Media Query ?
Media query is CSS property used for Responsive Web Design.
7. What is Responsive design ?
Responsive web design is about creating web pages that look good on all devices. A responsive web design will automatically adjust for different screen sizes and viewports.
8. Difference between local storage and session storage ?
Local storage is similar to session storage. But the data in local storage doesn’t expire whereas data in session storage is expired when page session ends.