Adobe Interview Questions (2026-2027)
45 questions · 83 experiences · LeetCode (71) · GeeksforGeeks (46) · 1p3a (6) · Reddit (5)
Browse by role
Top topics
128 entries
1/6CoinDCX Interview — DSA + System Design | External Expert Round
Adobe Software Engineer Interview Experience (4 YOE) - Detailed Rounds
Adobe Senior Android Design Engineer Interview Spectrum Team Experience
Adobe Interview Experience | Set 45 (For 2.5Years Experienced)
Adobe Interview Experience | Set 30 (Off-Campus For Member Technical Staff)
Adobe Interview | Set 17 (For MTS-1)
Adobe Interview | Set 14 (On Campus for Full Time)
Adobe Interview | Set 13 (On Campus for Internship)
Adobe Interview | Set 12 (On Campus for MTS-1)
Adobe Interview | Set 11 (On-Campus)
Adobe Interview | Set 9
Adobe Internship Interview Experience
Adobe Systems Online Test (On-Campus Internship)
Adobe | MTS 2 | JAVA | Noida | November 2024 | Interview Experience | Rejected
Adobe MTS 2 [ Selected]
Adobe | Computer Scientist - 1 | Dec 2024 [Offer]
Adobe | MTS 2 | Noida | July-Sept' 24
Adobe | CS2 | Banglore | June 2024 [Offer]
Adobe | CS2 | Noida | August 2024 [Reject]
Adobe Gensolve Hackathon 2024 SET C
Adobe | Noida | 8.5 yrs CS2 | Rejected
Adobe Interview Experience For SDE Internship (On-Campus) 2024
Adobe | MTS2 | India | Jan 2024 [Reject]
Adobe | Product Intern | Noida/Bangalore | Implement dice
Adobe OA (28-07-2022)
CoinDCX Interview — DSA + System Design | External Expert Round
Question Details
Company: CoinDCX
Role: SDE-3 (backend)
Round: Technical (DSA + System Design)
Date: 11th April 2026
Type: External Expert Interview
Difficulty: Medium-Hard # Context Had a technical interview with
CoinDCX today. The round was conducted by an external expert (not an internal CoinDCX engineer). It covered 2 DSA questions followed by a System Design round. Sharing the questions for anyone prepping. # Question 1 — Minimum Insertions to Make a String Palindrome
Problem: Given a string s, find the minimum number of steps to convert it into a palindrome. At each step, you can insert any character at any position in the string.
Example:
Input: "mbadm"
Output: 2
Approach: This is a classic DP problem. The minimum insertions needed = len(s) - LPS(s), where LPS is the Longest Palindromic Subsequence. LPS itself can be found using LCS of s and reverse(s). # Question 2 — Minimum Window Substring
Problem: Given strings S1 and S2, find the minimum substring from S1 which contains all characters from S2.
Example:
Input: S1 = "ADOBECODETAPK", S2 = "ATK"
Output: "TAPK"
Constraints: * S2 can be null/empty (edge case to handle)
Approach: Classic sliding window problem. Maintain a frequency map of S2 characters, expand the window until all characters are covered, then shrink from the left to minimize. # Question 3 — Design YouTube
Problem: Design YouTube at scale, serving millions of users.
Key features to cover: * Upload videos *
Live streaming (this was the main focus area) * Search videos * Play/stream videos The interviewer was particularly interested in how live streaming would work — ingestion pipeline, transcoding in real-time, CDN distribution, latency considerations (HLS/DASH), chat sync, etc. Hope this helps anyone prepping for CoinDCX or similar interviews. Good luck!
Topics
More from Adobe
People also viewed