Q31. What is the difference between HTTP 401 and 403?
401 Unauthorized means the request lacks valid authentication credentials. The client should authenticate and retry, and the response should include a `WWW-Authenticate` ...
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 (329 available).
401 Unauthorized means the request lacks valid authentication credentials. The client should authenticate and retry, and the response should include a `WWW-Authenticate` ...
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, ...
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...
`new(T)` allocates zeroed memory for a value of type T and returns a pointer `*T`. It works for any type and is rarely used. `make` only works for slices, maps and channe...
The word LEVEL has 5 letters with repeats: L appears 2 times, E appears 2 times, V appears once. Total arrangements = 5! / (2! x 2!) = 120 / 4 = 30. Approach: start with ...
Stages: 1. Trigger on push or pull request. 2. Build: compile, install dependencies, produce an immutable artefact (container image) tagged with the commit SHA. 3. Static...
- ArrayList: array-backed, O(1) random access, amortised O(1) append, O(n) insertion/removal in the middle. Best default for ordered lists. - LinkedList: doubly linked, O...
Never concatenate user input into SQL. Use prepared statements with bound parameters, which separate code from data. ```php $stmt = $pdo->prepare('SELECT * FROM users WHE...
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.