SDE-2

200+ SDE-2 Interview Questions and Answers

Updated 2 Jul 2025

Asked in Arcesium

2w ago

Q. Count Subarrays with Sum Divisible by K

Given an array ARR and an integer K, your task is to count all subarrays whose sum is divisible by the given integer K.

Input:

The first line of input contains an integer...read more
Ans.

Count subarrays with sum divisible by K in an array.

  • Iterate through the array and keep track of prefix sum modulo K.

  • Use a hashmap to store the frequency of each prefix sum modulo K.

  • For each prefix sum, increment the count by the frequency of (prefix sum - K) modulo K in the hashmap.

  • Handle the case where prefix sum itself is divisible by K separately.

  • Return the total count of subarrays with sum divisible by K.

Asked in Amazon

1w ago

Q. Distance Between Two Nodes in a Binary Tree

Given a binary tree and the values of two distinct nodes, determine the distance between these two nodes in the tree. The distance is defined as the minimum number of...read more

Ans.

Calculate the distance between two nodes in a binary tree.

  • Traverse the tree to find the paths from the root to each node

  • Find the lowest common ancestor of the two nodes

  • Calculate the distance by summing the distances from each node to the common ancestor

1w ago

Q. N Queens Problem

Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

Explanation:

A queen can attack another queen if they are in the...read more

Ans.

The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard without threatening each other.

  • Use backtracking algorithm to explore all possible configurations.

  • Keep track of rows, columns, and diagonals to ensure queens do not threaten each other.

  • Generate all valid configurations and print them out.

Asked in Ola Cabs

1w ago

Q. Find the Kth Row of Pascal's Triangle Problem Statement

Given a non-negative integer 'K', determine the Kth row of Pascal’s Triangle.

Example:

Input:
K = 2
Output:
1 1
Input:
K = 4
Output:
1 4 6 4 1

Constraints...read more

Ans.

The task is to find the Kth row of Pascal's Triangle given a non-negative integer K.

  • Create an array to store the elements of the Kth row of Pascal's Triangle.

  • Use the formula C(n, k) = C(n-1, k-1) + C(n-1, k) to calculate the elements.

  • Return the array as the output.

Are these interview questions helpful?

Asked in Amazon

2w ago

Q. Smallest Window Problem Statement

Given two strings S and X containing random characters, the task is to find the smallest substring in S which contains all the characters present in X.

Input:

The first line co...read more
Ans.

The task is to find the smallest substring in string S which contains all the characters present in string X.

  • Iterate through string S and keep track of characters in X using a hashmap

  • Use two pointers to maintain a sliding window with all characters from X

  • Update the window size and start index when a valid window is found

Asked in SAP

2d ago

Q. Minimum Number of Platforms Problem

Your task is to determine the minimum number of platforms required at a railway station so that no train has to wait.

Explanation:

Given two arrays:

  • AT - representing the ar...read more
Ans.

The task is to determine the minimum number of platforms required at a railway station so that no train has to wait.

  • Sort the arrival and departure times arrays in ascending order.

  • Initialize two pointers, one for arrival and one for departure.

  • Increment the platform count when a train arrives and decrement when it departs.

  • Keep track of the maximum platform count needed.

  • Return the maximum platform count as the minimum number of platforms needed.

SDE-2 Jobs

Masai School logo
SDE-2 2-4 years
Masai School
4.1
Bangalore / Bengaluru
Adobe Systems India Pvt. Ltd. logo
SDE-2 ( Frontend Heavy Full Stack ) 2-4 years
Adobe Systems India Pvt. Ltd.
3.9
Bangalore / Bengaluru
SalesHandy logo
SDE-2 Backend 3-5 years
SalesHandy
3.2
Ahmedabad

Asked in MakeMyTrip

1w ago

Q. Minimum Operations Problem Statement

You are given an array 'ARR' of size 'N' consisting of positive integers. Your task is to determine the minimum number of operations required to make all elements in the arr...read more

Ans.

Minimum number of operations to make all elements in the array equal by performing addition, subtraction, multiplication, or division.

  • Iterate through the array to find the maximum and minimum values.

  • Calculate the difference between the maximum and minimum values.

  • The minimum number of operations needed is the difference between the maximum and minimum values.

Asked in PayPal

3d ago

Q. Similar String Groups Problem Statement

Two strings S1 and S2 are considered similar if either S1 equals S2 or we can swap two letters of S1 at different positions so that it equals S2.

Input:

The first line of...read more
Ans.

The problem involves determining the number of similar string groups in a given list of strings based on a specific criteria.

  • Iterate through each pair of strings in the list and check if they are similar based on the given criteria.

  • Use a hash set to keep track of visited strings to avoid counting duplicates in the same group.

  • Consider implementing a function to check if two strings are similar by allowing at most one swap of characters.

  • Count the number of distinct groups of si...read more

Share interview questions and help millions of jobseekers 🌟

man-with-laptop

Q. Subarray With Given Sum Problem Statement

Given an array ARR of N integers and an integer S, determine if there exists a contiguous subarray within the array with a sum equal to S. If such a subarray exists, re...read more

Ans.

Given an array of integers, find a subarray with a given sum S.

  • Use a sliding window approach to find the subarray with the given sum.

  • Keep track of the current sum and adjust the window based on the sum.

  • Return the start and end indices of the subarray if found, otherwise return [-1, -1].

Asked in Walmart

1w ago

Q. Top View of a Binary Tree Problem Statement

You are given a Binary Tree of integers. Your task is to determine and return the top view of this binary tree.

The top view of a binary tree consists of all the node...read more

Ans.

The task is to determine and return the top view of a given Binary Tree of integers.

  • The top view of a binary tree consists of all the nodes visible when the tree is viewed from the top.

  • Identify the nodes that appear on the top when looking from above the tree.

  • Output the top view as a space-separated list of node values from left to right.

2w ago

Q. Pattern Matching Problem Statement

Given a pattern as a string and a set of words, determine if the pattern and the words list align in the same sequence.

Input:
T (number of test cases)
For each test case:
patte...read more
Ans.

The problem involves determining if a given pattern aligns with a list of words in the same sequence.

  • Iterate through the pattern and words list simultaneously to check for matching sequences.

  • Use a hashmap to store the mapping between characters in the pattern and words in the list.

  • Compare the mappings to determine if the pattern and words align in the same sequence.

Asked in GoComet

5d ago

Q. Remove Consecutive Duplicates Problem Statement

Given a string S, your task is to recursively remove all consecutive duplicate characters from the string.

Input:

String S

Output:

Output string

Constraints:

  • 1 <...read more
Ans.

Recursively remove consecutive duplicate characters from a string.

  • Use recursion to check if the current character is the same as the next character, if so, skip the next character

  • Base case: if the string is empty or has only one character, return the string

  • Recursive case: if the current character is the same as the next character, call the function recursively with the string excluding the next character

Asked in Amazon

2w ago

Q. First Missing Positive Problem Statement

You are provided with an integer array ARR of length 'N'. Your objective is to determine the first missing positive integer using linear time and constant space. This me...read more

Ans.

Find the smallest missing positive integer in an array efficiently.

  • Iterate through the array and mark positive integers as visited using index as value

  • Iterate through the marked array to find the first missing positive integer

  • Handle negative numbers by ignoring them during marking process

Asked in Tata 1mg

1w ago

Q. Possible Words from a Phone Number: Problem Statement

Given a string S composed of digits ranging from 2 to 9, determine all possible strings that can be created by mapping these digits to their corresponding l...read more

Ans.

Given a phone number string, generate all possible words by mapping digits to letters on a T9 keypad.

  • Create a mapping of digits to corresponding letters on a T9 keypad

  • Use recursion to generate all possible combinations of letters for the input phone number

  • Sort the generated strings in lexicographical order

1w ago

Q. Clone Linked List with Random Pointer

Your task is to create a deep copy of a linked list, where each node has two pointers: one that points to the next node in the list, and a 'random' pointer which can point ...read more

Ans.

Create a deep copy of a linked list with random pointers.

  • Iterate through the original linked list and create a new node for each node in the list.

  • Store the mapping of original nodes to their corresponding new nodes.

  • Update the next and random pointers of the new nodes based on the mapping.

  • Return the head of the newly created deep copied linked list.

5d ago

Q. Connect Nodes at Same Level Problem Statement

Given a binary tree, connect all adjacent nodes at the same level by populating each node's 'next' pointer to point to its next right node. If there is no next righ...read more

Ans.

Connect adjacent nodes at the same level in a binary tree by populating each node's 'next' pointer.

  • Traverse the tree level by level using a queue.

  • For each node, connect it to the next node in the queue.

  • Set the 'next' pointer of the last node in each level to NULL.

  • Use constant extra space and do not alter the node structure.

2w ago

Q. Find the Duplicate Number Problem Statement

Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Your tas...read more

Ans.

Find the duplicate number in an array of integers from 0 to (N-2).

  • Iterate through the array and keep track of the frequency of each number using a hashmap.

  • Return the number with a frequency greater than 1 as the duplicate number.

3d ago

Q. Reverse a Linked List Problem Statement

You are given a Singly Linked List of integers. Your task is to reverse the Linked List by changing the links between nodes.

Input:

The first line of input contains a sin...read more
Ans.

Reverse a given singly linked list by changing the links between nodes.

  • Iterate through the linked list and reverse the links between nodes

  • Use three pointers to keep track of the current, previous, and next nodes

  • Update the links between nodes to reverse the list

  • Return the head of the reversed linked list

Asked in Amazon

2w ago

Q. Add First and Second Half Problem Statement

You are provided with a Singly Linked List having 'N' nodes, where each node contains a single digit.

Your task is to return a node 'X', which serves as the head of a...read more

Ans.

Return a node representing the head of a new Linked List with the sum of the 1st and 2nd half of the given Linked List.

  • Split the Linked List into two halves

  • Reverse the 2nd half of the Linked List

  • Add the corresponding digits from both halves while considering carry

  • Create a new Linked List with the sum digits

1w ago

Q. Count and Say Sequence Problem

The 'Count and Say' sequence is a series of strings in which each consecutive term is generated by describing the previous term. The sequence begins with '1'.

Your task is to dete...read more

Ans.

Implement a function to determine the 'Count and Say' sequence after N iterations.

  • Create a function that takes a positive integer N as input

  • Generate the 'Count and Say' sequence for N iterations

  • Return an array of strings representing the sequence after each iteration

Q. Circular Queue Problem Description

Implement a circular queue based on given 'Q' queries. Each query falls into one of the two types specified:

Explanation:
1 'X': Insert the element 'X' at the end of the nth q...read more
Ans.

Implement a circular queue based on given queries to insert and remove elements.

  • Create a circular queue of size N to store elements.

  • For query type 1, insert element X at the end of the nth queue.

  • For query type 2, remove and return the element at the front of the nth queue.

  • Return true if insertion is successful, false otherwise.

  • Return -1 if the queue is empty during dequeue operation.

Asked in Paytm

6d ago
Q. Can you describe the system design for a platform like BookMyShow and the questions that were raised during the discussion?
Ans.

Design a bookmyshow system

  • Design a system to book and manage movie tickets

  • Consider features like seat selection, payment, and ticket cancellation

  • Include user authentication and authorization

  • Implement a database to store movie and theater information

  • Consider scalability and performance of the system

Asked in Intuit

2w ago
Q. How would you design a system like Pastebin?
Ans.

Design a system like Pastebin for sharing text snippets

  • Use a web application framework like Django or Flask for the backend

  • Store text snippets in a database with unique URLs for each snippet

  • Implement user authentication and permissions for private and public sharing

  • Include features like syntax highlighting, expiration dates, and password protection

  • Optimize for fast and efficient text retrieval and storage

2w ago

Q. Minimum Operation Needed to Convert to the Given String

You are given two strings str1 and str2. Determine the minimum number of operations required to transform str1 into str2.

Explanation:

An operation is def...read more

Ans.

Determine the minimum number of operations needed to transform one string into another by moving characters to the end.

  • Iterate through each character in str1 and check if it matches the first character in str2. If it does, calculate the number of operations needed to move it to the end.

  • If no match is found for the first character in str2, return -1 as transformation is not possible.

  • Repeat the process for each test case and output the minimum number of operations needed for ea...read more

Asked in Samsung

1w ago

Q. Power of Two Problem Statement

Determine whether a given integer N is a power of two. Return true if it is, otherwise return false.

Explanation

An integer 'N' is considered a power of two if it can be expressed...read more

Ans.

Check if a given integer is a power of two or not.

  • Check if the given integer is greater than 0.

  • Check if the given integer has only one set bit (i.e., it is a power of 2).

  • Return true if the above conditions are met, else return false.

Asked in PayPal

1w ago
Q. You will be given certain conditions for which you need to design a system. Can you explain your approach to low-level system design?
Ans.

Approach to low-level system design involves understanding requirements, breaking down components, defining interfaces, and optimizing performance.

  • Understand the requirements and constraints of the system

  • Break down the system into smaller components/modules

  • Define clear interfaces between components for communication

  • Optimize performance by considering data structures, algorithms, and resource utilization

Asked in Amazon

4d ago

Q. Running Median Problem

Given a stream of integers, calculate and print the median after each new integer is added to the stream.

Output only the integer part of the median.

Example:

Input:
N = 5 
Stream = [2, 3,...read more
Ans.

Calculate and print the median after each new integer is added to the stream.

  • Use a min heap to store the larger half of the numbers and a max heap to store the smaller half of the numbers.

  • Keep the two heaps balanced by ensuring the size difference is at most 1.

  • If the total number of elements is odd, the median is the top element of the larger heap. If even, it's the average of the tops of both heaps.

Asked in Zoho

2w ago
Q. You are given a rectangular container filled with 1 liter of liquid. How can you pour out half a liter without seeing or measuring it?
Ans.

Tilt the container until the liquid reaches the edge, then pour out half of it.

  • Tilt the container slowly until the liquid reaches the edge

  • Once the liquid is at the edge, pour out half of it

  • This method works because the liquid will naturally settle at the lowest point, allowing you to estimate the halfway mark

1w ago

Q. Closest Palindrome Problem Statement

You are given a string 'S' that represents a number. Your task is to find the closest palindromic number to this integer represented by 'S'. The closest number is defined as...read more

Ans.

Find the closest palindromic number to a given integer represented by a string.

  • Convert the string to an integer and iterate to find the closest palindromic number.

  • Check for palindromic numbers by reversing the digits and comparing with the original number.

  • Handle cases where multiple closest palindromic numbers exist by choosing the smaller one.

Asked in Samsung

2w ago
Q. What is the Diamond Problem in C++ and how can it be resolved?
Ans.

Diamond Problem is a common issue in multiple inheritance in C++ where a class inherits from two classes that have a common base class.

  • Diamond Problem occurs when a class inherits from two classes that have a common base class, leading to ambiguity in accessing members.

  • It can be resolved in C++ using virtual inheritance, where the common base class is inherited virtually to avoid duplicate copies of base class members.

  • Example: class A is inherited by classes B and C, and then...read more

Previous
2
3
4
5
6
7
8
Next

Interview Experiences of Popular Companies

TCS Logo
3.6
 • 11.1k Interviews
Amazon Logo
4.0
 • 5.4k Interviews
Flipkart Logo
3.9
 • 1.5k Interviews
Walmart Logo
3.6
 • 408 Interviews
View all
interview tips and stories logo
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary

SDE-2 Interview Questions
Share an Interview
Stay ahead in your career. Get AmbitionBox app
play-icon
play-icon
qr-code
Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+

Reviews

10L+

Interviews

4 Cr+

Salaries

1.5 Cr+

Users

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter
Profile Image
Hello, Guest
AmbitionBox Employee Choice Awards 2025
Winners announced!
awards-icon
Contribute to help millions!
Write a review
Write a review
Share interview
Share interview
Contribute salary
Contribute salary
Add office photos
Add office photos
Add office benefits
Add office benefits