Q481. How do lab and field performance measurement differ?
Lab tools run in a controlled environment. Lighthouse gives a synthetic score with TTFB, FCP, LCP, TBT and CLS, which is useful in CI and for reproducible comparisons. Ch...
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).
Lab tools run in a controlled environment. Lighthouse gives a synthetic score with TTFB, FCP, LCP, TBT and CLS, which is useful in CI and for reproducible comparisons. Ch...
Tailwind's performance story is about generation and delivery. The JIT engine produces only the utilities present in scanned files, so production CSS is typically a few k...
SvelteKit renders every page on the server by default and then hydrates it on the client, so the first paint is real HTML. You control this per route with page options. e...
Middleware in middleware.ts at the project root runs before a request is completed, on the Edge runtime, and can rewrite, redirect, set headers or return a response direc...
Angular has several binding forms. Interpolation {{ value }} renders a component property into text. Property binding [property]="expr" sets a DOM property or directive i...
v-model on a component is syntactic sugar. In Vue 3, v-model="foo" compiles to passing a modelValue prop and listening for update:modelValue. Inside the child you declare...
Command substitution captures the stdout of a command as a string. Use `$(cmd)` rather than backticks, which are deprecated and harder to nest. ```bash today=$(date +%F) ...
`self` is the current object. Inside an instance method it is the receiver, inside a class body it is the class, and inside a class method it is the class as well. ```rub...
A stored property can run code when it is set or read through observers and modifiers. - `willSet` and `didSet` observe changes to a stored property. `willSet` receives t...
All five run a block with an object in context. They differ in how the object is referenced (`it` or `this`) and what they return (the object or the lambda result). - `le...
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.