Q101. What is the difference between aria-label and aria-labelledby?
Both give an element an accessible name, but they work differently. aria-label sets the name directly to a string, for example a button with aria-label="Close dialog". ar...
Technical Question Bank · Peer-Reviewed
Search and filter frequently asked interview questions across technical, programming, and behavioral domains. Tailor your interview preparation by difficulty for freshers or experienced developers (2,728 available).
Both give an element an accessible name, but they work differently. aria-label sets the name directly to a string, for example a button with aria-label="Close dialog". ar...
LCP is dominated by four factors: time to first byte, resource load time, render-blocking resources and client-side rendering delay. First ensure fast TTFB with caching, ...
Tailwind encodes variants as prefixes. Responsive breakpoints are mobile-first: sm, md, lg, xl and 2xl apply at that minimum width and above. ```html ... ``` That element...
Runes are compiler keywords that make reactivity explicit and also work in .svelte.js and .svelte.ts modules, not just components. $state creates a reactive value, deeply...
The Pages Router uses files under pages/. Each file exports a default component, data comes from getStaticProps, getServerSideProps or getStaticPaths, and _app and _docum...
Both are query decorators, but they search different places. @ViewChild queries the component's own template, while @ContentChild queries content projected into the compo...
The Options API organises component logic into fixed options such as data, methods, computed, watch and lifecycle hooks. The Composition API organises the same logic insi...
Every file has permissions for owner, group and others, each with read (4), write (2) and execute (1). `chmod` changes them in symbolic or octal form. ```bash chmod 644 n...
Ruby encapsulates instance variables such as `@name`, which are private by default. `attr_reader`, `attr_writer` and `attr_accessor` are class macros that define getter a...
`let` declares a constant binding and `var` a mutable one. For value types, `let` also prevents changing stored properties. Structs are value types: assignment and passin...
HireXTech uses essential storage to remember your study preferences and third-party advertising cookies via Google AdSense in compliance with GDPR. You can choose to enable essential cookies only or accept all cookies. Read our Privacy Policy.