Filter interviews by
I appeared for an interview before May 2024, where I was asked the following questions.
In UI design, 'sticky' refers to elements that remain fixed in place during scrolling, enhancing user navigation.
Sticky positioning is achieved using CSS with 'position: sticky'.
An element with 'position: sticky' toggles between 'relative' and 'fixed' based on the scroll position.
Example: A sticky header remains visible at the top of the viewport while scrolling down a page.
Sticky elements can be used for navigation me...
Semantic tags in HTML provide meaning to the content, improving accessibility and SEO by clearly defining the structure of a webpage.
Semantic tags include <header>, <footer>, <article>, <section>, <nav>, and <aside>.
The <header> tag defines the header of a document or section, typically containing introductory content or navigational links.
The <footer> tag represents the ...
I applied via Approached by Company and was interviewed before Sep 2023. There was 1 interview round.
A promise is an object representing the eventual completion or failure of an asynchronous operation.
Promises are used to handle asynchronous operations in JavaScript.
They can be in one of three states: pending, fulfilled, or rejected.
Promises can be chained together using .then() method.
Example: Fetch API returns a promise when making an HTTP request.
Stylesheets are loaded in a specific order based on their location and type.
Stylesheets can be loaded externally using tag in HTML.
Inline styles can be added using the style attribute in HTML elements.
Styles can also be included within the