Q1. What are microservices compared with a monolith?
A microservice architecture structures an application as a set of small, independently deployable services, each built around a business capability, owning its own data s...
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 (23 available).
A microservice architecture structures an application as a set of small, independently deployable services, each built around a business capability, owning its own data s...
An API gateway is the single entry point for clients, sitting in front of backend services. It typically handles: - Request routing to the correct service. - Authenticati...
The Pages Router uses files under pages/. Each file exports a default component, data comes from getStaticProps, getServerSideProps or getStaticPaths, and _app and _docum...
Binary search finds a target in a sorted array by halving the search range each step, giving O(log n). ```python def binary_search(nums, target): lo, hi = 0, len(nums) - ...
Discovery is how we reduce risk before committing to build. I treat it as continuous, not a phase. I start with the problem and the target customer, and I review existing...
Successive discounts multiply, they do not add. Price 100 -> after 20% = 80. After an additional 10% on 80 -> 80 x 0.9 = 72. Effective discount = 100 - 72 = 28%. Formula ...
Show that you have done homework and connect it to your goals. A strong answer has three parts: 1. Something specific about the company: product, engineering culture, rec...
Swift uses Automatic Reference Counting: each class instance has a reference count and is deallocated when the count reaches zero. ARC is deterministic, unlike a tracing ...
RAII, Resource Acquisition Is Initialisation, binds a resource's lifetime to an object's lifetime: acquire in the constructor and release in the destructor. Because destr...
Specificity ranks selectors as (inline, IDs, classes/attributes/pseudo-classes, elements/pseudo-elements). Higher wins; equal specificity falls back to source order (late...
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.