Upload Button Icon Add office photos

Adobe

Compare button icon Compare button icon Compare

Filter interviews by

Adobe Software Developer Intern Interview Questions and Answers

Updated 21 May 2022

22 Interview questions

A Software Developer Intern was asked
Q. 

Unbounded Knapsack Problem Statement

Given ‘N’ items, each with a specific profit and weight, and a knapsack with a weight capacity ‘W’. The objective is to fill the knapsack such that the total profit is ...

Ans. 

The Unbounded Knapsack Problem involves maximizing profit by filling a knapsack with items of specific profit and weight.

  • Iterate through each item and calculate the maximum profit that can be obtained by including or excluding the item in the knapsack.

  • Use dynamic programming to store and reuse subproblem solutions to optimize the solution.

  • The final answer will be the maximum profit that can be obtained by filling ...

A Software Developer Intern was asked
Q. 

Minimum Cost to Make String Valid

Given a string containing only '{' and '}', determine the minimum cost required to make the string valid. A string is considered valid if for every opening bracket '{', th...

Ans. 

Given a string with only '{' and '}', find the minimum cost to make it valid by converting brackets.

  • Iterate through the string and keep track of the opening and closing brackets

  • If there are more closing brackets than opening brackets, convert the excess closing brackets to opening brackets

  • If there are more opening brackets than closing brackets, convert the excess opening brackets to closing brackets

  • Return the tot...

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more
A Software Developer Intern was asked
Q. 

Digit Count In Range Problem Statement

Given an integer K, and two numbers A and B, count the occurrences of the digit K in the range [A, B].

Include both the lower and upper limits in the count.

Input:

...
Ans. 

Count occurrences of a digit in a given range.

  • Iterate through the range [A, B] and count occurrences of digit K.

  • Convert integers to strings for easier digit comparison.

  • Handle edge cases like when A or B is equal to K.

A Software Developer Intern was asked
Q. 

Wildcard Pattern Matching Problem Statement

Implement a wildcard pattern matching algorithm to determine if a given wildcard pattern matches a text string completely.

The wildcard pattern may include the ...

Ans. 

Implement a wildcard pattern matching algorithm to determine if a given wildcard pattern matches a text string completely.

  • Create a recursive function to match the pattern with the text character by character.

  • Handle cases for '?' and '*' characters separately.

  • Use dynamic programming to optimize the solution.

  • Check for edge cases like empty pattern or text.

What people are saying about Adobe

View All
a fullstack java developer
4d (edited)
I need Career Advice
I am currently working remote as an Associate Software Engineer from Saharanpur City in UP at 4.8LPA its been 1 year and 10 months of my career I recently resigned as my complete team was laid off by the organisation and I was under contractual basis there. After resign I started lookin for new opportunities, during which I scored two offers. 1. As technical solutions consultant analytics via OmHRA At Adobe for 8LPA fixed package in Noida 2. As Software Engineer cloud at Microstrategy for 9.90 fixed + variable at Pune Now I am confused which one to join ? And what will be beneficial for my career At Adobe Noida CTC is 8 FIXED and cost of living will be less but the issue is that is under contractual basis, If I have to switch as a developer there I will have to fight for getting FTE + developer role At Pune CTC is 8.4 Fixed and pending is variable 1.6 LPA, there cost of living and expenses will be high there,
Got a question about Adobe?
Ask anonymously on communities.
A Software Developer Intern was asked
Q. 

Print Binary Tree Representation

Given a binary tree of integers, your task is to represent the binary tree in a 2-D array of strings with specific formatting rules.

Specifications:

  • There should be ‘H...
Ans. 

The task is to represent a binary tree in a 2-D array of strings with specific formatting rules.

  • Create a 2-D array of strings with 'H' rows and odd number of columns.

  • Fill in the array based on the given binary tree, following the specified formatting rules.

  • Leave empty strings for unfilled cells and adjust spacing for empty subtrees.

  • Ensure the output matches the example provided in the question.

A Software Developer Intern was asked
Q. 

Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positio...

Ans. 

Find the position of a target integer in a row-wise and column-wise sorted matrix efficiently.

  • Start from the top-right corner of the matrix and compare the target with the current element.

  • If the current element is equal to the target, return its position.

  • If the current element is greater than the target, move left to the next column.

  • If the current element is less than the target, move down to the next row.

  • Continue...

A Software Developer Intern was asked
Q. 

Chocolate Distribution Problem

You are given an array/list CHOCOLATES of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M' ...

Ans. 

Distribute chocolate packets among students to minimize the difference between the max and min chocolates received.

  • Sorting: First, sort the array of chocolates to easily find the minimum difference.

  • Sliding Window: Use a sliding window of size M to find the minimum difference between the largest and smallest packets.

  • Example: For CHOCOLATES = [8, 11, 7, 15, 2] and M = 3, sort to [2, 7, 8, 11, 15], then check windows...

Are these interview questions helpful?
A Software Developer Intern was asked
Q. 

Tiling Problem Statement

Given a board with 2 rows and N columns, and an infinite supply of 2x1 tiles, determine the number of distinct ways to completely cover the board using these tiles.

You can place ...

Ans. 

Determine distinct ways to cover a 2-row N-column board using 2x1 tiles, either horizontally or vertically.

  • Dynamic Programming Approach: Use a recurrence relation to calculate the number of ways to tile the board.

  • Recurrence Relation: The number of ways to tile a 2xN board can be expressed as dp[n] = dp[n-1] + dp[n-2].

  • Base Cases: dp[1] = 1 (one vertical tile) and dp[2] = 2 (two vertical tiles or two horizontal tile...

A Software Developer Intern was asked
Q. 

Kevin and His Cards Problem Statement

Kevin has two packs of cards. The first pack contains N cards, and the second contains M cards. Each card has an integer written on it. Determine two results: the tota...

Ans. 

Determine distinct card types and common card types from two packs of cards with integer values.

  • Distinct Card Types: Combine both packs and count unique integers. Example: Pack 1: [2, 3, 5], Pack 2: [3, 4, 5] gives 4 distinct types: {2, 3, 4, 5}.

  • Common Card Types: Find integers present in both packs. Example: From the same packs, common types are {3, 5}, totaling 2.

  • Use Sets: Utilize sets in programming to easily f...

A Software Developer Intern was asked
Q. 

Count Subarrays Problem

You are given an array or list consisting of 0s and 1s only. Your task is to find the sum of the number of subarrays that contain only 1s and the number of subarrays that contain on...

Ans. 

Count the number of subarrays containing only 1s and 0s in a given array of 0s and 1s.

  • Iterate through the array and count consecutive 1s and 0s separately.

  • Use two variables to keep track of the count of 1s and 0s subarrays.

  • Add the counts of 1s and 0s subarrays to get the final result.

Adobe Software Developer Intern Interview Experiences

6 interviews found

I appeared for an interview in Jan 2021.

Round 1 - Telephonic Call 

Round duration - 90 Minutes
Round difficulty - Easy

It was a telephonic round. The interview asked me these questions.
 

Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

The interviewer started asking me questions. He gave me 2 problems. He was giving hints in case of any issues.
 

  • Q1. 

    Maximum Frequency Number Problem Statement

    Given an array of integers with numbers in random order, write a program to find and return the number which appears the most frequently in the array.

    If multip...

  • Ans. 

    Find the number with the maximum frequency in an array of integers.

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

    • Find the number with the maximum frequency and return it.

    • If multiple elements have the same maximum frequency, return the one that appears first in the array.

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This was a technical interview. He gave me these questions one by one.
1. Again, how polymorphism works. Draw vtable and vptr
2. Producer consumer problem with synchronization
3. Difference between mutex, semaphore, and condition_variable.
4. Design parking lot system
5. Zigzag traversal of binary tree

  • Q1. Design a parking lot system.
  • Ans. 

    Design a parking lot system with features like ticketing, availability tracking, and payment options.

    • Create a database to store information about parking spots, availability, and pricing

    • Implement a ticketing system to assign and track parking spots for each vehicle

    • Include sensors or cameras to monitor spot availability in real-time

    • Offer payment options such as cash, credit card, or mobile payment apps

  • Answered by AI
  • Q2. 

    Zigzag Binary Tree Traversal Problem Statement

    Determine the zigzag level order traversal of a given binary tree's nodes. Zigzag traversal alternates the direction at each level, starting from left to rig...

  • Ans. 

    Zigzag level order traversal of a binary tree alternates direction at each level, starting from left to right, then right to left.

    • Use a queue to perform level order traversal of the binary tree.

    • Maintain a flag to alternate the direction of traversal at each level.

    • Store nodes at each level in separate arrays and reverse the array if traversal direction is right to left.

  • Answered by AI
Round 4 - Video Call 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

1. He asked about the producer-consumer problem but I told him that the same question is asked in the previous round.
Then interviewer went asking lots of questions related to producer and consumer. Lots of discussions like what is a writer is not there and the only reader is there and you need to find out how many readers are currently reading from the buffer.
2. Discussions about C++11 features. How thread and async is different
3. Design your own shared_ptr(How you will handle ownership)
4. Check If the binary tree is symmetrical.
5. Find elements in a rotated sorted array and then optimize it.

  • Q1. 

    Tree Symmetricity Problem Statement

    You are provided with a binary tree structure, where each node consists of an integer value. Your task is to determine whether this binary tree is symmetric.

    A symmetr...

  • Ans. 

    Determine if a binary tree is symmetric by checking if its left and right subtrees are mirror images of each other.

    • Check if the left and right subtrees of the root node are mirror images of each other

    • Recursively check if the left subtree of the left child is a mirror image of the right subtree of the right child, and vice versa

    • Base case: If both nodes are null, return true; If one node is null and the other is not, ret...

  • Answered by AI
  • Q2. 

    Search In Rotated Sorted Array Problem Statement

    Given a rotated sorted array ARR of size 'N' and an integer 'K', determine the index at which 'K' is present in the array.

    Note:
    1. If 'K' is not present...
  • Ans. 

    Given a rotated sorted array, find the index of a given integer 'K'.

    • Perform binary search to find the pivot point where the array is rotated.

    • Based on the pivot point, apply binary search on the appropriate half of the array to find 'K'.

    • Handle cases where 'K' is not present in the array by returning -1.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in NoidaEligibility criteriaNo criteriaAdobe interview preparation:Topics to prepare for the interview - Data Structures, Computer Networks, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Don't lie on your resume.
Tip 2 : Practice at least 400 different types of coding problems.
Tip 3 : Work on your communication skills.

Application resume tips for other job seekers

Tip 1 : Don't put false things on your resume.
Tip 2 : Mention some good projects on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 123 minutes
Round difficulty - Medium

This was an online assessment round that consisted of 4 sections:

1) Cognitive Assessment (20 questions- 20 minutes): It had 2 sections.

English: (10 questions), which composed of comprehension-based and basic grammar questions,
Numerical Ability: (10 questions), which composed of questions on geometry, trigonometry, quadratic equations, probability, statistics, etc.

2) Technical Assessment (20 questions-20 minutes): It consisted of MCQs on Data Structures & Algorithms, DBMS, OOPs, OS, and Computer Networks.

3) Coding Assessment (2 questions- 60 minutes) The 2 questions were:

Similar to this -----/
Similar to this -----/

4) Gamified Assessment (3 tasks- 23 minutes): This section composed of mind game-based questions that had to be done according to the given instructions.

  • Q1. 

    Digit Count In Range Problem Statement

    Given an integer K, and two numbers A and B, count the occurrences of the digit K in the range [A, B].

    Include both the lower and upper limits in the count.

    Input:

    ...
  • Ans. 

    Count occurrences of a digit in a given range.

    • Iterate through the range [A, B] and count occurrences of digit K.

    • Convert integers to strings for easier digit comparison.

    • Handle edge cases like when A or B is equal to K.

  • Answered by AI
  • Q2. 

    Wildcard Pattern Matching Problem Statement

    Implement a wildcard pattern matching algorithm to determine if a given wildcard pattern matches a text string completely.

    The wildcard pattern may include the...

  • Ans. 

    Implement a wildcard pattern matching algorithm to determine if a given wildcard pattern matches a text string completely.

    • Create a recursive function to match the pattern with the text character by character.

    • Handle cases for '?' and '*' characters separately.

    • Use dynamic programming to optimize the solution.

    • Check for edge cases like empty pattern or text.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Medium

The interview was scheduled for 9 Jan 21 from 6:00 pm. The interviewer started with “Tell me about yourself”. Then he asked some CS fundamental questions. I was asked about the singleton class and then about the memory layout in C++, then he moved on to the next question. He pasted a code snippet in the chatbox and asked me to tell the output. I copied the code to my local editor and explained my approach to finding the output. The code was related to the concept of virtual function and destructor in C++. After that, he asked me how much memory will be used by a struct that is storing 2 char variables and 1 int variable.

After that, he started with questions on data structures and algorithms and I was asked three questions.

  • Q1. 

    Print Binary Tree Representation

    Given a binary tree of integers, your task is to represent the binary tree in a 2-D array of strings with specific formatting rules.

    Specifications:

    • There should be ‘...
  • Ans. 

    The task is to represent a binary tree in a 2-D array of strings with specific formatting rules.

    • Create a 2-D array of strings with 'H' rows and odd number of columns.

    • Fill in the array based on the given binary tree, following the specified formatting rules.

    • Leave empty strings for unfilled cells and adjust spacing for empty subtrees.

    • Ensure the output matches the example provided in the question.

  • Answered by AI
  • Q2. 

    Unbounded Knapsack Problem Statement

    Given ‘N’ items, each with a specific profit and weight, and a knapsack with a weight capacity ‘W’. The objective is to fill the knapsack such that the total profit is...

  • Ans. 

    The Unbounded Knapsack Problem involves maximizing profit by filling a knapsack with items of specific profit and weight.

    • Iterate through each item and calculate the maximum profit that can be obtained by including or excluding the item in the knapsack.

    • Use dynamic programming to store and reuse subproblem solutions to optimize the solution.

    • The final answer will be the maximum profit that can be obtained by filling the k...

  • Answered by AI
  • Q3. 

    Minimum Cost to Make String Valid

    Given a string containing only '{' and '}', determine the minimum cost required to make the string valid. A string is considered valid if for every opening bracket '{', t...

  • Ans. 

    Given a string with only '{' and '}', find the minimum cost to make it valid by converting brackets.

    • Iterate through the string and keep track of the opening and closing brackets

    • If there are more closing brackets than opening brackets, convert the excess closing brackets to opening brackets

    • If there are more opening brackets than closing brackets, convert the excess opening brackets to closing brackets

    • Return the total co...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Chemical Engineering from Indian Institute of Technology (BHU), Varanasi. I applied for the job as SDE - Intern in NoidaEligibility criteriaFemale Candidates can only apply.Adobe interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPs, Operating System, DBMS, Computer NetworksTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : For DSA questions in interviews, start explaining from the brute force approach and then move to the optimal one. Convey your thought process to the interviewers, so that they can help you out if you get stuck. Communication skills matter a lot, and I think that is what makes the difference!
Tip 2 : Do some research about the company you are interviewing for and prepare the answers to the questions like Why should we hire you? (frame your answer in such a way that shows that your career goals align with the goals of the company), Why XYZ company?, Competitors of XYZ, etc. beforehand. Read about some latest news related to the company so that you can ask questions based upon that when the interviewer allows you to ask any question. This shows that you are genuinely interested to work for the company. 
Tip 3 : Spend proper time making your resume and get it reviewed by seniors. Do not write anything that you are not confident of. Even if you write something that you don’t know, just be prepared that how you will defend it. The interviewers are much much experienced than you and they’ll catch you easily if you lie. So don’t take risk here.

Application resume tips for other job seekers

Tip 1 : Try to include at least one development project in your resume.
Tip 2 : Do not write anything on the resume that you are not confident of. Even if you write something that you don’t know, just be prepared that how you will defend it. The interviewers are much much experienced than you and they’ll catch you easily if you lie.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Easy

Timing : 11:00 am
Webcam was mandatory.

  • Q1. 

    Missing Numbers Problem Statement

    You are provided with an array called ARR, consisting of distinct positive integers. Your task is to identify all the numbers that fall within the range of the smallest a...

  • Ans. 

    Identify missing numbers within the range of smallest and largest elements in an array.

    • Find the smallest and largest elements in the array.

    • Generate a list of numbers within this range.

    • Remove numbers that are present in the array.

    • Sort and return the missing numbers.

  • Answered by AI
  • Q2. 

    Prime with 3 Factors Problem Statement

    You are provided with an array ARR consisting of 'N' positive integers. Your task is to determine if each number in the array ARR has exactly 3 factors.

    You need to...

  • Ans. 

    Determine if each number in the array has exactly 3 factors.

    • Iterate through each number in the array and check if it has exactly 3 factors.

    • Factors of a number can be found by iterating from 1 to the square root of the number.

    • Count the number of factors and return 1 if it is exactly 3, else return 0.

  • Answered by AI
Round 2 - Coding Test 

(2 Questions)

Round duration - 108 minutes
Round difficulty - Medium

Timing : 10:00 am
Webcam was mandatory

  • Q1. 

    Rat In a Maze Problem Statement

    Given a N * N maze with a rat placed at position MAZE[0][0], find and print all possible paths for the rat to reach its destination at MAZE[N-1][N-1]. The rat is allowed to...

  • Ans. 

    Find all possible paths for a rat in a maze to reach its destination.

    • Implement a backtracking algorithm to explore all possible paths in the maze.

    • Keep track of the current path and mark visited cells to avoid loops.

    • Return the paths that lead from the start position to the destination.

    • Example: [[1, 0, 0], [1, 1, 0], [0, 1, 1]]

  • Answered by AI
  • Q2. 

    Min Jumps Problem Statement

    In Ninja town, represented as an N * M grid, people travel by jumping over buildings in the grid's cells. Santa is starting at cell (0, 0) and must deliver gifts to cell (N-1, ...

  • Ans. 

    Santa needs to find the quickest path to deliver gifts in Ninja town by jumping over buildings with least travel time.

    • Santa can jump to (x+1, y+1), (x+1, y), or (x, y+1) from any cell (x, y) within grid boundaries.

    • The travel time between two buildings equals the absolute difference in their heights.

    • Find the shortest path from (0, 0) to (N-1, M-1) using dynamic programming or Dijkstra's algorithm.

    • Consider all possible p...

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

Timing : 5 pm
Camera and mic was mandatory.
The interviewer was really nice and adjustable.

  • Q1. 

    Count Distinct Substrings

    You are provided with a string S. Your task is to determine and return the number of distinct substrings, including the empty substring, of this given string. Implement the solut...

  • Ans. 

    Count distinct substrings of a given string using trie data structure.

    • Implement a trie data structure to store all substrings of the given string.

    • Count the number of nodes in the trie to get the distinct substrings count.

    • Handle empty string case separately.

    • Example: For 'ab', distinct substrings are: '', 'a', 'b', 'ab'.

  • Answered by AI
  • Q2. 

    Zigzag Binary Tree Traversal Problem Statement

    Determine the zigzag level order traversal of a given binary tree's nodes. Zigzag traversal alternates the direction at each level, starting from left to rig...

  • Ans. 

    Zigzag level order traversal of a binary tree alternating direction at each level.

    • Use a queue to perform level order traversal of the binary tree.

    • Maintain a flag to alternate the direction of traversal at each level.

    • Store nodes at each level in separate lists and reverse the list if traversal direction is right to left.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteria70% in UG, 60% in 12th and 10thAdobe interview preparation:Topics to prepare for the interview - Data Structures , Operating System, OOPS ,JAVA, projects , Memory allocation in CTime required to prepare for the interview - 7-8 monthsInterview preparation tips for other job seekers

Tip 1 : You should have in depth knowledge of your projects. Sometimes Adobe spend a whole interview in project discussion (in some cases).
Tip 2 : OOPS is a very important subject if you are preparing for Adobe. Also one should know real life examples of it and should be able to code any concept of it.
Tip 3 : One should have good knowledge of data structures. Mainly Array, Math, Tree, Recursion and LinkedList.
Tip 4 : According to me , projects just play role if you applying off campus and that too for the shortlisting of your resume as it gives you an edge in respect to other candidates. So if you are applying off campus you should have atleast 2-3 good projects in you resume.

Application resume tips for other job seekers

Tip 1 : One should have good projects.
Tip 2 : The presentation of your resume should be really good. Bold keywords like tech stack you used or the topics you are really good at.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 40 minutes
Round difficulty - Medium

It was in the evening. This round consists of 20 MCQs which covers portions from Data Structures, Aptitude, Coding based, etc. There is no negative marking for wrong answers

  • Q1. 

    Count Subarrays Problem

    You are given an array or list consisting of 0s and 1s only. Your task is to find the sum of the number of subarrays that contain only 1s and the number of subarrays that contain o...

  • Ans. 

    Count the number of subarrays containing only 1s and 0s in a given array of 0s and 1s.

    • Iterate through the array and count consecutive 1s and 0s separately.

    • Use two variables to keep track of the count of 1s and 0s subarrays.

    • Add the counts of 1s and 0s subarrays to get the final result.

  • Answered by AI
Round 2 - Video Call 

Round duration - 30 Minutes
Round difficulty - Medium

It was in the morning. There is video call with the faculty of the company which interviews. Questions comes from my projects, skills, college studies

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in DelhiEligibility criteriaAbove 8 CGPAAdobe interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, Machine Learning, Aptitude, CodingTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice coding questions as much as possible
Tip 2 : Do relevant projects
Tip 3 : Focus more on practical work

Application resume tips for other job seekers

Tip 1 : Skills should be mentioned in a proper way
Tip 2 : Resume should be in proper format without any error and only true skills should be mentioned

Final outcome of the interviewRejected

I appeared for an interview before Nov 2020.

Round 1 - Technical 

(4 Questions)

  • Q1. 

    Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positi...

  • Ans. 

    Find the position of a target integer in a row-wise and column-wise sorted matrix efficiently.

    • Start from the top-right corner of the matrix and compare the target with the current element.

    • If the current element is equal to the target, return its position.

    • If the current element is greater than the target, move left to the next column.

    • If the current element is less than the target, move down to the next row.

    • Continue this...

  • Answered by AI
  • Q2. 

    Kevin and His Cards Problem Statement

    Kevin has two packs of cards. The first pack contains N cards, and the second contains M cards. Each card has an integer written on it. Determine two results: the tot...

  • Ans. 

    Determine distinct card types and common card types from two packs of cards with integer values.

    • Distinct Card Types: Combine both packs and count unique integers. Example: Pack 1: [2, 3, 5], Pack 2: [3, 4, 5] gives 4 distinct types: {2, 3, 4, 5}.

    • Common Card Types: Find integers present in both packs. Example: From the same packs, common types are {3, 5}, totaling 2.

    • Use Sets: Utilize sets in programming to easily find d...

  • Answered by AI
  • Q3. 

    Tiling Problem Statement

    Given a board with 2 rows and N columns, and an infinite supply of 2x1 tiles, determine the number of distinct ways to completely cover the board using these tiles.

    You can place...

  • Ans. 

    Determine distinct ways to cover a 2-row N-column board using 2x1 tiles, either horizontally or vertically.

    • Dynamic Programming Approach: Use a recurrence relation to calculate the number of ways to tile the board.

    • Recurrence Relation: The number of ways to tile a 2xN board can be expressed as dp[n] = dp[n-1] + dp[n-2].

    • Base Cases: dp[1] = 1 (one vertical tile) and dp[2] = 2 (two vertical tiles or two horizontal tiles).

    • Ma...

  • Answered by AI
  • Q4. 

    Chocolate Distribution Problem

    You are given an array/list CHOCOLATES of size 'N', where each element represents the number of chocolates in a packet. Your task is to distribute these chocolates among 'M'...

  • Ans. 

    Distribute chocolate packets among students to minimize the difference between the max and min chocolates received.

    • Sorting: First, sort the array of chocolates to easily find the minimum difference.

    • Sliding Window: Use a sliding window of size M to find the minimum difference between the largest and smallest packets.

    • Example: For CHOCOLATES = [8, 11, 7, 15, 2] and M = 3, sort to [2, 7, 8, 11, 15], then check windows like...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Guru Gobind Singh Indraprastha University. Eligibility criteria7 CGPA
Adobe interview Rounds:Round 1
Round type - Online Coding Interview
Round duration - 90 minutes
Round difficulty - Easy
Round description -

The test was in the morning of 2 hours. 9-11. (45 mins relaxation)
It was a protocured examination.


Round 2
Round type - Online Coding Interview
Round duration - 120 minutes
Round difficulty - Hard
Round description -

The test was difficult. It was in the morning at 9 AM. Again it was a protocured examination. We had 20 cognitive 20 technical 2 coding difficult and gamified assesments.

Adobe interview preparation:Topics to prepare for the interview - Data Structures, Arrays, OOPS, Graphs, TreesTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice all questions from easy to difficult level.
Tip 2 : At least practice 200 questions.
Tip 3 : Practice theory and aptitude questions as well.

Application resume tips for other job seekers

Tip 1 : Provide all the necessary details of your skills.
Tip 2 : Remember to give your correct information.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Telephonic Call 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Hard

My Interview for Adobe was on 16 September, 2019 . And my interview was telephonic interview and timing was about 12:00PM. And I got a call at about 12:15 PM .

  • Q1. 

    K-Sum Path in a Binary Tree Problem Statement

    You are presented with a binary tree where each node holds an integer, along with a specified number 'K'. The task is to identify and print every path that ex...

  • Ans. 

    The task is to identify and print every path in a binary tree whose node values sum up to a specified number 'K'.

    • Traverse the binary tree to find paths with sum equal to 'K'.

    • Print each valid path in the order encountered in the tree.

    • Handle cases where nodes may have missing children (-1).

  • Answered by AI
  • Q2. What is heap sort and what is its complexity?
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure to sort elements in ascending or descending order.

    • Heap sort works by first building a max heap from the input array, then repeatedly removing the largest element from the heap and placing it at the end of the array.

    • The complexity of heap sort is O(n log n) for both time and space, making it efficient for large datasets.

    • Example: Giv...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. I applied for the job as SDE - Intern in NoidaEligibility criteriaCGPA Above 7.5Adobe interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS , Puzzles , Trees , Dynamic Programming , Backtracking , DBMS, Java.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare OOPS very well, because they ask a lot of questions from OOPS.
Tip 2 : Practice Coding problems as much as you can because they will ask you to write codes.
Tip 3 : Prepare Your course subjects such as Operating system, Java, DBMS.

Application resume tips for other job seekers

Tip 1 : Keep Your resume at most of one page
Tip 2 : Mention only those things at which you have great knowledge. Don't write anything just to make your resume attractive.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Core Java - OOPS features, Abstract classes and Interface, Inner Classes, String and Object Class, Equals and HashCode methods, Runtime and Compile time exception, Method overloading and overriding, Cus...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Clear Core java concepts firmly
2. Basic DB queries
3. Basic Unix commands
Are these interview questions helpful?

I applied via Naukri.com and was interviewed in Mar 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is web service flow
  • Ans. 

    Web service flow is the sequence of steps involved in the communication between a client and a server over the internet.

    • Web service flow involves a client sending a request to a server

    • The server processes the request and sends a response back to the client

    • The response can be in various formats such as XML, JSON, or plain text

    • Web service flow can be synchronous or asynchronous

    • Examples of web services include RESTful API...

  • Answered by AI
  • Q2. How to check ports in Solaris or linux machine
  • Ans. 

    To check ports in Solaris or Linux machine, use the netstat command.

    • Open the terminal and type 'netstat -an' to display all open ports.

    • Use 'netstat -an | grep ' to check if a specific port is open.

    • To check listening ports, use 'netstat -an | grep LISTEN'.

    • For Solaris, use 'netstat -an | grep .' instead of '| grep '.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Total pathetic experience. What job description is given to you, doesn't matters because you won't be asked for that. Your resume will get shortlisted and then it doesn't matter what u have covered up in your career path, because interview rounds will consist of questions out of your scope. Your resume doesn't needs to be shortlisted at first end if it doesn't suit thier needs. HR people, they are on another level. You share your resume to them, and they will never ever reply back to you. Not a single HR, but it seems everyone has same culture. You keep trying to connect them for support. But they will just keep finding smarter ways to avoid.

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

It was a video call round, that began with a brief introduction of the interviewer followed by mine. Then the interviewer asked me to solve 2 data structure questions in a text editor while sharing my screen. Also, we had a brief discussion of the time complexity of the programs I had written, which I had to optimize to the best time complexity as well.

  • Q1. 

    Spiral Matrix Problem Statement

    You are given a N x M matrix of integers. Your task is to return the spiral path of the matrix elements.

    Input

    The first line contains an integer 'T' which denotes the nu...
  • Ans. 

    The task is to return the spiral path of elements in a given matrix.

    • Iterate through the matrix in a spiral path by keeping track of boundaries.

    • Print elements in the order of top, right, bottom, and left sides of the matrix.

    • Handle cases where the matrix is not a square (N != M) separately.

    • Consider edge cases like single row, single column, and empty matrix.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • This approach sorts the array in a single scan without using any extra space.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

It was a face-to-face round in the Hyderabad Office at 8 in the morning. This round consisted of various types of questions. It began with a brief description of my interest in technology and a discussion about any major problems I faced working and how I resolved it. Then it continued with various data structure questions, followed by operating system, database, and system design questions. I had majorly worked with the project Jarvis Personal Assistant, so I was asked to design the complete workflow of the project.

  • Q1. 

    Mirror String Problem Statement

    Given a string S containing only uppercase English characters, determine if S is identical to its reflection in the mirror.

    Example:

    Input:
    S = "AMAMA"
    Output:
    YES
    Ex...
  • Ans. 

    Determine if a given string is identical to its reflection in the mirror.

    • Iterate through the string and compare characters from start and end simultaneously.

    • If characters are not equal, return 'NO'.

    • If all characters match, return 'YES'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from College of Engineering and Technology, Bhubaneswar. I applied for the job as SDE - Intern in HyderabadEligibility criteriaAbove 8 CGPAMicrosoft interview preparation:Topics to prepare for the interview - Data Structure, Algorithms, System Design, Operating System, DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : I would recommend to practice at least 2-3 competitive coding questions daily, to always have hands-on Competitive coding and be prepared for it. Also, you can create a group among your friends and solve together, this will help to maintain the enthusiasm and competitive nature to grow daily in long run.
Tip 2 : I will surely advise to develop and work on some good projects, that really help in understanding the development basics as well as help in maintaining a good resume. Having a good open-source contribution also helps in providing an edge over other students.
Tip 3 : Spare some time in taking up some mock-interviews in websites such as InterviewBit, this helps to rectify the mistakes and build a good experience of the interview. Also, try to interview with as many companies as possible, this will strengthen interview and presentation skills.

Application resume tips for other job seekers

Tip 1 : Don't try to fake anything in the resume as this might lead to a very bad impression in the later rounds, also may lead to disqualification from further openings in the company.
Tip 2 : In this era, try developing and showcasing more projects in the resume instead of online course certificates. Recruiters are looking for actual skill and knowledge which is actually depicted from the projects and this will also lead to keeping a higher stand from other students.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Distinct Islands Problem Statement

    Given a two-dimensional array/list consisting of integers 0s and 1s, where 1 represents land and 0 represents water, determine the number of distinct islands. A group of...

  • Ans. 

    Count the number of distinct islands in a 2D array of 0s and 1s.

    • Identify islands by performing depth-first search (DFS) on the grid

    • Use a set to store the shape of each island and check for duplicates

    • Consider translations to determine distinct islands

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 50 minutes
Round difficulty - Easy

This was a Data Structural round.

  • Q1. 

    Word Wrap Problem Statement

    You are tasked with arranging 'N' words of varying lengths such that each line contains at most 'M' characters, with each word separated by a space. The challenge is to minimiz...

  • Ans. 

    The goal is to minimize the total cost of arranging 'N' words on each line with a maximum character limit 'M'.

    • Calculate the cost of each line as the cube of extra space characters needed to reach 'M'.

    • Minimize the total cost by arranging words to fit within the character limit on each line.

    • Ensure each word appears fully on one line without breaking across lines.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was a System Design round.

  • Q1. Can you design a system similar to Red Bus that can handle bookings and onboard both vendors and customers to the platform?
  • Ans. 

    Design a system similar to Red Bus for handling bookings and onboarding vendors and customers.

    • Implement a user-friendly interface for customers to search and book tickets

    • Create a vendor portal for vendors to manage their offerings and availability

    • Include payment gateway integration for secure transactions

    • Develop a robust backend system for managing bookings, cancellations, and refunds

    • Utilize a database to store user in...

  • Answered by AI
Round 4 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was a System Design round

Round 5 - Face to Face 

Round duration - 50 minutes
Round difficulty - Easy

This was an HR round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indian Institute of Technology Roorkee. Microsoft interview preparation:Topics to prepare for the interview - Graphs, Dynamic Programming, Arrays, LinkedList, stringsTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Practice as much as you can.
Tip 2 : Prepare for company, not in general.
Tip 3 : Your past work should be objective and your contribution should be very clear

Application resume tips for other job seekers

Tip 1 : Keep only relevant things for the job you are applying.
Tip 2 : Minimal data with measurable contribution and effect.

Final outcome of the interviewSelected

Skills evaluated in this interview

Tell us how to improve this page.

Adobe Software Developer Intern Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

4.0

Salary

4.7

Job security

4.7

Company culture

3.7

Promotions

3.7

Work satisfaction

Explore 2 Reviews and Ratings
Computer Scientist
492 salaries
unlock blur

₹22.2 L/yr - ₹70 L/yr

Technical Consultant
311 salaries
unlock blur

₹7.5 L/yr - ₹28.5 L/yr

Computer Scientist 2
295 salaries
unlock blur

₹47.7 L/yr - ₹80 L/yr

Software Engineer
278 salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Senior Software Engineer
245 salaries
unlock blur

₹13.1 L/yr - ₹55 L/yr

Explore more salaries
Compare Adobe with

Salesforce

4.0
Compare

Oracle

3.7
Compare

Microsoft Corporation

3.9
Compare

Amazon

4.0
Compare
write
Share an Interview