Q91. How does an orchestration tool like Airflow schedule data pipelines?
Airflow models a workflow as a DAG: a directed acyclic graph of tasks with dependencies. A scheduler parses DAG files, creates DAG runs per schedule interval, and queues ...
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).
Airflow models a workflow as a DAG: a directed acyclic graph of tasks with dependencies. A scheduler parses DAG files, creates DAG runs per schedule interval, and queues ...
Invalidation is the hardest part of caching. Options, often combined: - TTL expiry: every entry has a lifetime; simple and self-healing, but data can be stale until it ex...
It is the recommended flow for web, mobile and single-page applications. 1. The client generates a random `code_verifier`, hashes it to a `code_challenge`, and redirects ...
Synchronous calls (HTTP/REST, gRPC) are simple, easy to reason about and return results immediately, which suits queries and request-response workflows. The downside is t...
Dynamic segments use bracket folders: app/blog/[slug]/page.tsx receives params as a prop, which is a Promise in recent versions. Catch-all routes use [...slug] and option...
ref creates a reactive reference that can hold any value, including primitives, and is accessed through .value in JavaScript while auto-unwrapping in templates. reactive ...
Every process has three standard streams: stdin (0), stdout (1) and stderr (2). Redirection connects them to files or other processes. ```bash cmd > out.log # stdout to f...
A protocol declares requirements such as properties, methods, initialisers or associated types that conforming types implement. Swift encourages protocol-oriented program...
An extension function adds a method to a class without modifying or inheriting it. Resolution is static. ```kotlin fun String.toTitleCase(): String = split(" ").joinToStr...
LINQ queries over `IEnumerable` are lazy: the query is a description that runs only when enumerated by `foreach`, `ToList`, `Count`, `First` or similar. Each enumeration ...
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.