Zomato Interview Questions
India's leading food delivery platform with millions of real-time order events per day. Backend interviews focus on Java, system design for real-time logistics, Kafka event streaming, MySQL, and microservices.
#1Explain the SOLID principles.
#2How does HashMap work internally?
#3What is the difference between HashMap and ConcurrentHashMap?
#4Explain Java Memory Model: Heap, Stack, and Metaspace.
#5What is the volatile keyword in Java?
#6What is the difference between synchronized and ReentrantLock?
#7What is a deadlock and how do you prevent it?
#8Explain the Stream API and intermediate vs terminal operations.
#9What is garbage collection? How does G1 differ from ZGC?
#10What is the Java ClassLoader hierarchy?
#11What are Java records (Java 16+)?
#12What is the Executor framework and when would you use it over raw Threads?
#13What is the difference between composition and inheritance?
#14What is a marker interface? Give examples.
#15What are the design patterns most commonly asked in Java interviews?
#16How do you implement a Singleton in Java correctly?
#17What is the contract between equals() and hashCode()?
#18What is the difference between fail-fast and fail-safe iterators?
#19What is CopyOnWriteArrayList and when should you use it?
#20How does PriorityQueue work and when would you use it?
#21What is the happens-before relationship in Java Memory Model?
#22What is the difference between sleep(), wait(), and yield()?
#23What are atomic classes (AtomicInteger, AtomicReference)? How do they work?
#24What is a CountDownLatch vs CyclicBarrier?
#25What is a ThreadLocal and what are its dangers?
#26What is a CompletableFuture and how does it improve async programming?
#27What are virtual threads (Project Loom, Java 21)?
#28How does the JIT (Just-In-Time) compiler work?
#29What is the difference between minor GC, major GC, and full GC?
#30What tools do you use to diagnose JVM memory issues?
#31What is the String pool and how does string interning work?
#32What is type erasure in Java generics?
#33What is the difference between <? extends T> and <? super T>?
#34What are sealed classes (Java 17)?
#35What is pattern matching for instanceof (Java 16)?
#36What is the difference between map() and flatMap() in streams?
#37What is the difference between Comparable and Comparator?
#38What is Stream.collect() and what are common Collectors?
#39What is try-with-resources and how does it work?
#40What is exception chaining and why is it important?
#41What is the difference between Java IO and NIO?
#42What is Java Serialization and what are its pitfalls?
#43What is reflection in Java and when is it used?
#44What is the difference between deep copy and shallow copy?
#45What is autoboxing and unboxing? What are the performance implications?
#46What are enums in Java and what advanced features do they support?
#47What is the difference between static and instance initializer blocks?
#48What are Java modules (Java 9 — JPMS)?
#49What is the difference between an inner class, static nested class, and anonymous class?
#50What are the new switch expressions (Java 14)?
#51What is the difference between Runnable, Callable, and Future?
#52How do you handle NullPointerException in Java?
#53What is the difference between Deque and Queue?
#54What is a WeakHashMap and when would you use it?
#55What is the difference between checked and unchecked exceptions — best practices for APIs?
#56What is the difference between interface default methods and abstract class methods?
#57What are the best practices for writing clean Java code?
#58What is a race condition and how do you prevent it?
#59What is the difference between HashMap.computeIfAbsent() and getOrDefault()?
#60What is the purpose of the transient keyword?
#61What is method hiding in Java?
#62What are the Java 8 Date/Time APIs and why were they introduced?
#63What is the difference between HashMap.put() and HashMap.putIfAbsent()?
#64What is an immutable class and how do you create one?
#65What is the covariant return type in Java?
#66What is the difference between Predicate.and(), Predicate.or(), and Predicate.negate()?
#67What is the Observer pattern and how is it implemented in Java?
#68What is the Strategy pattern in Java?
#69What is String.intern() and when should you use it?
#70What are the key differences between Java 8, 11, 17, and 21?
#71Explain the CAP theorem.
#72What is consistent hashing and why is it used?
#73What is database sharding and how does it work?
#74Explain cache invalidation strategies.
#75How would you design a URL shortener (like bit.ly)?
#76What is the Saga pattern in microservices?
#77What is CQRS and when should you use it?
#78What are rate limiting algorithms?
#79What is the Circuit Breaker pattern?
#80How do you design for high availability?
#81What is eventual consistency?
#82What is a message queue and when should you use one?
#83What is the difference between SQL and NoSQL databases?
#84How do you handle distributed transactions without 2PC?
#85How would you design a notification system (push, email, SMS)?
#86What is the difference between REST and gRPC?
#87What is the Outbox Pattern?
#88How do you design a distributed cache layer?
#89What is the difference between synchronous and asynchronous communication in microservices?
#90How do you design a notification system that sends 100M notifications per day?
#91What are the different types of database indexes and when do you use each?
#92How would you design a URL shortener like bit.ly?
#93What is eventual consistency and how do you handle it in practice?
#94How do you design a search system at scale?
#95What is the difference between optimistic and pessimistic locking?
#96How would you design a real-time leaderboard?
#97What is a write-ahead log (WAL) and how is it used?
#98How do you handle distributed transactions across microservices?
#99How do you design a chat application like WhatsApp?
#100What is a service mesh and when should you use one?
#101How would you design a video streaming platform like YouTube?
#102What is the difference between a load balancer and an API gateway?
#103How do you prevent and handle cascading failures in distributed systems?
#104What is the difference between a message queue and a message broker?
#105How do you design a rate limiter for an API?
#106What is the difference between replication and partitioning in databases?
#107How would you design Twitter's news feed?
#108What is observability and what are its three pillars?
#109How do you implement idempotency in APIs?
#110How would you design a distributed job scheduler?
#111What is the Saga pattern vs 2PC for distributed transactions?
#112How do you design a file storage system like Dropbox?
#113What are the trade-offs of microservices vs monolithic architecture?
#114How does DNS work and how is it used in load balancing?
#115What is the strangler fig pattern?
#116How do you design an e-commerce inventory system that handles flash sales?
#117What is the difference between push and pull architectures for data?
#118How do you design a fraud detection system?
#119What is event sourcing and how does it differ from CRUD?
#120How would you design a geospatial service like Uber's nearby driver system?
#121What is API versioning and what are the different strategies?
#122What is a Bloom filter and where is it used in system design?
#123How do you implement zero-downtime deployments?
#124What is the two-generals problem and what does it tell us about distributed systems?
#125How do you design a payment processing system?
#126How would you design an autocomplete system?
#127What is backpressure and how do you handle it?
#128What is a time-series database and when should you use one?
#129What is a circuit breaker and how do you implement it?
#130How do you handle database migrations safely in production?
#131What is the CQRS pattern?
#132How do you secure an API at the architecture level?
#133What is the difference between synchronous replication and asynchronous replication?
#134How do you design a system for billions of events per day (analytics pipeline)?
#135What is chaos engineering and how do you implement it?
#136What is the database connection pool and how do you tune it?
#137How do you design an access control system?
#138How would you design an online code execution system like LeetCode?
#139How does the request flow work in a typical microservices architecture?
#140What is a hot partition problem and how do you solve it?
#141How do you design a multi-tenant SaaS architecture?
#142What is tail latency and why does it matter?
#143How do you design a global, low-latency key-value store?
#144What is the N+1 query problem and how do you fix it?
#145How would you design a booking system like Airbnb?
#146How do you design a recommendation system?
#147What is the read-your-own-writes consistency guarantee?
#148How do you design a search-as-you-type / typeahead feature?
#149What is the difference between gRPC unary, server streaming, client streaming, and bidirectional streaming?
#150How do you handle large file uploads efficiently?
#151What are the key considerations when designing for high write throughput?
#152What is the difference between monolithic and microservices deployment strategies?
#153How do you design for disaster recovery?
#154What is the thundering herd problem?
#155What is a vector clock and how does it work?
#156What is the difference between a monorepo and polyrepo?
#157How do you ensure data consistency across microservices?
#158What is the difference between a batch job and a stream processing job?
#159How do you design an API for mobile clients vs web clients?
#160What is the role of a message broker in event-driven architecture?
#161How do you approach capacity planning for a new system?
#162What is a consumer group and how does it enable parallelism?
#163Explain Kafka delivery semantics: at-most-once, at-least-once, and exactly-once.
#164How does Kafka ensure message ordering?
#165What are producer acknowledgment settings (acks)?
#166What is log compaction in Kafka?
#167What is Kafka Streams and when would you use it?
#168What is consumer lag and how do you monitor it?
#169How does Kafka differ from RabbitMQ?
#170What is the role of ZooKeeper / KRaft in Kafka?
#171How do you handle large messages in Kafka?
#172What is Kafka Connect?
#173How does Kafka replication work?
#174What is Schema Registry and why is it important?
#175What is the difference between Kafka and RabbitMQ?
#176How do you handle consumer group rebalancing?
#177What is Kafka Streams?
#178What are Kafka transactions and how do they work?
#179What is the difference between at-most-once, at-least-once, and exactly-once delivery?
#180How do you choose the right number of partitions for a Kafka topic?
#181What is KRaft mode in Kafka?
#182What is log compaction in Kafka?
#183How does Kafka handle backpressure?
#184What is the role of the Kafka controller?
#185What is the difference between Kafka producer acks=0, acks=1, and acks=all?
#186How do you monitor Kafka in production?
#187What is a Kafka consumer poll loop?
#188What are Kafka headers and how are they used?
#189What is the consumer group coordinator?
#190How do you implement idempotent consumers with Kafka?
#191What is Kafka's storage architecture?
#192What is consumer lag and how do you manage it?
#193What is the Kafka retention policy and how does it work?
#194How do you handle poison pill messages in Kafka?
#195What is Kafka MirrorMaker 2 and when do you use it?
#196How does Kafka achieve high throughput?
#197What is Kafka's ISR (In-Sync Replicas) and how does it affect durability?
#198What are Kafka Streams stateful operations?
#199What is the difference between Kafka Streams and Apache Flink?
#200How does Kafka handle message ordering?
#201What is Kafka's __consumer_offsets topic?
#202How do you implement a CDC pipeline with Kafka and Debezium?
#203What is the difference between push and pull in Kafka?
#204How do you perform a Kafka cluster rolling restart?
#205What is Kafka consumer group offset management?
#206What is Kafka's batch processing capability?
#207What is the relationship between Kafka partitions and consumers?
#208What is the Kafka producer buffer and how does it affect performance?
#209How does Kafka support exactly-once semantics end to end?
#210What is Kafka's message format / record format?
#211How does Kafka handle broker failure and partition recovery?
#212What is Kafka's wire protocol?
#213What are Kafka consumer interceptors?
#214How do you secure a Kafka cluster?
#215What is Kafka's log segment management?
#216How do you increase the throughput of a Kafka producer?
#217What is the Kafka AdminClient API?
#218What is tiered storage in Kafka?
#219How does Kafka handle time and event-time processing?
#220What is Kafka's producer idempotence?
#221What are the different Kafka message delivery patterns?
#222How do you tune Kafka for low latency?
#223What is Kafka's producer partitioner?
#224What is the Kafka Broker Rack Awareness?
#225How do you handle schema migrations in a Kafka event stream?
#226What are Kafka quotas and how do they work?
#227What is a Kafka topic compaction tombstone?
#228How do you implement a Kafka consumer with Spring Boot?
#229What is the Kafka offset commit semantics?
#230How do you benchmark a Kafka cluster?
#231What is the difference between Kafka and Apache Pulsar?
#232How do you implement a Kafka producer with Spring Boot?
#233What is a Kafka connector and how does it work?
#234What is the Kafka consumer fetch protocol?
#235What is Kafka consumer group rebalance protocol and incremental cooperative rebalancing?
#236What is the Kafka log cleaner and how does compaction work internally?
#237How do you debug Kafka consumer issues?
#238What is Kafka's min.insync.replicas and how does it interact with acks?
#239What is Apache Kafka's role in the data lakehouse architecture?
#240What is the Kafka log flush policy and how does it affect durability?
#241How do you implement a Saga with Kafka?
#242What is the difference between Kafka topic partitions and consumer group partitions?
#243What is Confluent's ksqlDB?
#244What is Kafka's message size limit and how do you handle large messages?
#245What are Kafka producer callbacks and how are they used?
#246How do you implement a Kafka multi-datacenter setup?
#247What is Kafka's leader epoch?
#248What is the high watermark in Kafka?
#249What is a Kafka consumer group's session timeout vs heartbeat interval?
#250What is a Kafka changelog topic in Kafka Streams?
#251What happens when a Kafka broker runs out of disk space?
#252What is Kafka's dynamic configuration and how do you update it?
#253What is the Kafka consumer seek API?
#254What is an API Gateway and what does it do?
#255How do microservices communicate?
#256What is service discovery in microservices?
#257What is the Circuit Breaker pattern and how does it prevent cascading failures?
#258What is distributed tracing and why is it important?
#259What is the Strangler Fig pattern for microservices migration?
#260What is a sidecar pattern?
#261How do you manage configuration in microservices?
#262What are the 12-Factor App principles?
#263What is event-driven architecture and when should you use it?
#264What is the difference between orchestration and choreography in Saga?
#265How do you test microservices effectively?
#266What is a service mesh and when should you use one?
#267How do you ensure data consistency across microservices?
#268What is the circuit breaker pattern?
#269What is service discovery and how does it work?
#270What is the Bulkhead pattern?
#271What is the Retry pattern and how do you implement it safely?
#272What is the difference between choreography and orchestration in Sagas?
#273What is the Backend for Frontend (BFF) pattern?
#274How do you implement distributed tracing?
#275What is the Strangler Fig pattern for migrating a monolith?
#276What is eventual consistency and how do you design for it?
#277How do you version microservice APIs?
#278What is the Sidecar pattern?
#279What is a dead letter queue and why is it important?
#280How do you implement health checks in microservices?
#281What is the Outbox pattern and how does it guarantee event delivery?
#282What is idempotency and how do you implement it in microservices?
#283What are the 12-Factor App principles?
#284How do you handle secrets management in microservices?
#285What is the Ambassador pattern in microservices?
#286How do you implement inter-service authentication?
#287What is the Throttling pattern and how does it differ from rate limiting?
#288What is CQRS and how does it apply to microservices?
#289How do you test microservices?
#290What is service isolation and why is it important?
#291What is an Event-Driven Architecture?
#292How do you handle database per service in practice?
#293What is the Role of API composition in microservices?
#294What is graceful degradation in microservices?
#295What is the Event Sourcing pattern?
#296How do you implement logging in a microservices environment?
#297What is the two-phase commit vs Saga for distributed transactions?
#298How do you handle timeouts in microservices?
#299What is the Scatter-Gather pattern?
#300What is the difference between a microservice and a nanoservice?
#301How do you implement canary deployments in microservices?
#302What is a Service Registry?
#303What is blue-green deployment and how does it work?
#304What is the Aggregator pattern?
#305How do microservices handle configuration management?
#306What is the Proxy pattern in microservices?
#307How do you implement distributed locking in microservices?
#308What is Kafka and why is it popular in microservices?
#309How do you manage service dependencies in microservices?
#310What is a bounded context?
#311How do you implement a request-reply pattern over async messaging?
#312What is the Token Bucket algorithm and how is it used for rate limiting?
#313How do you handle schema evolution in event-driven systems?
#314What is the difference between a monolith, microservices, and modular monolith?
#315What is the Choreography pattern in detail?
#316What is a composite microservice?
#317How do you deal with "chatty" microservices?
#318What is a process manager / workflow engine in microservices?
#319How do you implement zero-downtime deployments for microservices?
#320What is the Anti-Corruption Layer pattern?
#321What are the common pitfalls of microservices adoption?
#322What is the difference between orchestration and choreography?
#323How do you implement a consistent read across microservices?
#324What is load shedding?
#325What is the difference between gRPC and REST for inter-service communication?
#326What is the Gateway Aggregation pattern vs Gateway Routing?
#327What is the Inbox pattern?
#328How do you handle versioning of events in Kafka?
#329What is the Open Host Service pattern?
#330How do you implement service-level SLOs in microservices?
#331What is the Claim Check pattern?
#332What is service mesh traffic management?
#333What is the difference between horizontal and vertical scaling for microservices?
#334What is the role of a message schema registry?
#335How do you handle service discovery with Kubernetes?
#336How do you implement an API gateway from scratch?
#337What is consumer-driven contract testing (Pact)?
#338How do you use feature toggles in microservices?
#339What is polyglot persistence in microservices?
#340What are distributed caching strategies for microservices?
#341How do you design a CI/CD pipeline for microservices?
#342How do you implement observability with Micrometer, Prometheus, and Grafana?
#343What is the Retry pattern and when should you NOT retry?
#344How do you implement Saga compensation (rollback) in detail?
#345What is multi-tenancy in microservices and how do you implement it?
#346What are the steps to migrate a monolith to microservices using the Strangler Fig pattern?
#347How do you design microservices for failure?
#348What is data mesh and how does it relate to microservices data ownership?
#349What is a sidecar proxy and how does Envoy work?
#350How do you handle inter-service authorization (not just authentication)?
#351When should you NOT use microservices?
#352How does indexing work in MySQL (InnoDB)?
#353What is a covering index?
#354What are MySQL transaction isolation levels?
#355What is MVCC (Multi-Version Concurrency Control) in InnoDB?
#356How do you use EXPLAIN to analyze a query?
#357What are window functions in SQL?
#358What are CTEs (Common Table Expressions) and when should you use them?
#359What is the N+1 query problem and how do you fix it?
#360What is a deadlock in MySQL and how does it occur?
#361How do you optimize a slow MySQL query?
#362What is database normalization?
#363What is MySQL replication and how does it work?
#364What is partitioning in MySQL?
#365What is a stored procedure and when should you use it?
#366How does the InnoDB storage engine handle locking?
#367How do you design a schema for a multi-tenant SaaS application?
#368What is the difference between a clustered and a non-clustered index?
#369What are covering indexes and how do they improve performance?
#370What is the EXPLAIN output and how do you read it?
#371What are database triggers and when should you avoid them?
#372What is a foreign key constraint and what are its performance implications?
#373How do you implement full-text search in MySQL?
#374How does MySQL replication work and what are its modes?
#375What is a deadlock in MySQL and how does InnoDB handle it?
#376What are MySQL stored procedures and when should you use them?
#377How do you perform a slow query analysis in MySQL?
#378What is InnoDB buffer pool and how do you size it?
#379What is MySQL's query cache and why was it removed?
#380How do you back up a MySQL database without downtime?
#381What is the difference between optimistic and pessimistic locking in MySQL?
#382What are MySQL partitioning types and when do you use them?
#383How do you handle large data migrations in production?
#384What is the difference between IN, EXISTS, and JOIN for subqueries?
#385What is the InnoDB redo log and undo log?
#386How do you implement pagination in MySQL efficiently?
#387What is group replication and InnoDB Cluster?
#388What is the difference between a view and a materialized view?
#389How does MySQL's optimizer choose an execution plan?
#390What are common MySQL performance anti-patterns?
#391What is a generated column in MySQL?
#392What are the best practices for MySQL schema design?
#393How do you use MySQL's JSON column type?
#394What is the difference between transaction isolation levels in MySQL?
#395How do you handle hierarchical data in MySQL?
#396What is ProxySQL and how is it used?
#397What is MVCC and how does InnoDB implement it?
#398How do you detect and fix index fragmentation in MySQL?
#399What are the MySQL 8.0 improvements over MySQL 5.7?
#400How do you design a schema for audit logging?
#401What is binlog and how is it used for CDC?
#402How do you use MySQL's performance_schema?
#403What is a composite index and how should you order columns?
#404How do you implement soft delete in MySQL?
#405How does MySQL handle concurrent writes to the same row?
#406What is the difference between schema-on-write and schema-on-read?
#407How do you handle time zones in MySQL?
#408How do you monitor MySQL in production?
#409What are window functions and how do you use them?
#410How do you implement row-level security in MySQL?
#411How do you use MySQL's event scheduler?
#412What is the EXPLAIN ANALYZE command?
#413How do you handle database connection failures in application code?
#414What is the MySQL query execution order?
#415How do you scale MySQL reads?
#416What is the difference between row-based and statement-based replication?
#417How do you use CTEs (Common Table Expressions) effectively?
#418How do you implement optimistic locking with versioning in MySQL?
#419What is the purpose of the information_schema?
#420What is innodb_flush_log_at_trx_commit and how does it affect durability?
#421How do you implement full-table search across millions of rows efficiently?
#422What is the max_connections parameter and how do you tune it?
#423What is a spatial index in MySQL and how is it used?
#424What is the difference between ROLLUP and CUBE in SQL?
#425How do you handle NULL values in MySQL queries?
#426What is the difference between a read and a write transaction?
#427How do you implement a queue in MySQL?
#428What is the mysql.user table and how does MySQL authentication work?
#429What is index merge optimization?
#430How do you detect and resolve replication lag?
#431What is the difference between MyISAM and InnoDB row format?
#432How do you implement rate limiting at the database level?
#433What is the difference between REPEATABLE READ and READ COMMITTED in practice?
#434What are MySQL's data types for storing money?
#435How do you handle schema evolution in a microservices environment?