Upload Button Icon Add office photos

Filter interviews by

EarlySalary Services Software Developer Intern Interview Questions and Answers

Updated 24 Nov 2021

EarlySalary Services Software Developer Intern Interview Experiences

1 interview found

I applied via Internshala and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic questions regarding my CV
  • Q2. Family background

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go with the flow and answer what they ask

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

There were DSA questions and time limit was 1 hr

Round 2 - Technical 

(2 Questions)

  • Q1. Calculate factorial using tabulation
  • Ans. 

    Factorial calculation using tabulation in dynamic programming

    • Create an array to store factorial values up to n

    • Initialize the array with base cases (0! = 1, 1! = 1)

    • Iterate from 2 to n and calculate factorial using previous values in the array

    • Return the factorial value at index n

  • Answered by AI
  • Q2. Wildcard matching question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude test was medium level.

Round 2 - Technical 

(2 Questions)

  • Q1. Array - Pair Sum - Return pair of the sum from arrays
  • Ans. 

    Find pairs in array that sum up to a given target value.

    • Iterate through the array and store each element in a hash set.

    • For each element, check if the target value minus the current element exists in the hash set.

    • Return the pair of elements that sum up to the target value.

  • Answered by AI
  • Q2. Check if two strings are anagram of each other
  • Ans. 

    Check if two strings are anagram of each other

    • Create character count arrays for both strings

    • Compare the character count arrays to check if they are equal

    • Example: 'listen' and 'silent' are anagrams

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

4 coding problems + 1 sql problem

Round 2 - Technical 

(2 Questions)

  • Q1. Gas Station Problem On leetcode
  • Q2. Simple Tree Traversal Problem LC medium
  • Ans. 

    Given a binary tree, return the inorder traversal of its nodes' values.

    • Inorder traversal: left subtree, root, right subtree

    • Use recursion to traverse the tree

    • Implement a stack-based iterative solution for better space complexity

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics and have deep understanding of your project and also focus on cs fundamentals.

Skills evaluated in this interview

I was interviewed in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

Timings: it was late night. I started the test at 10 pm

  • Q1. 

    Partial BST Problem Statement

    Check if a given binary tree is a Partial Binary Search Tree (BST). A Partial BST adheres to the following properties:

    • The left subtree of a node contains only nodes with...
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

It was the interviw round.
the environment was good.
the interviewer was very nice to me.

  • Q1. 

    Merge Two Sorted Linked Lists Problem Statement

    You are provided with two sorted linked lists. Your task is to merge them into a single sorted linked list and return the head of the combined linked list.

    ...

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. I applied for the job as SDE - Intern in BengaluruEligibility criterianoneJupiter Money interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Spring Boot with java, Operating Systems, Database Management System, Amazon Web ServicesTime required to prepare for the interview - 8 monthsInterview preparation tips for other job seekers

Tip 1 : Please have a strong hold on data structures mainly linked lists, arrays, maths, stacks, trees
Tip 2 : Must explore about DBMS. Means SQL, writing efficient queries, about indexing and other SQL backend process.
Tip 3 : Should work on spring boot. try build some project using spring boot with java (Gradle) as Jupiter's backend tech is mainly based on spring boot with java.

Application resume tips for other job seekers

Tip 1 : Mention only those skills on which you have worked on properly. no need to flood the resume with skills about which you need a little.
Tip 2 : Must mention the links of projects which you have worked on.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in May 2022.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round was scheduled with the SDE-2, we started with the introduction than he jumped to the dsa questions. First question he asked me was leetcode 3 sum problem, we discussed the approach than I wrote the code for that problem. Second question was of arrays and maps I didn't remember the exact question but that was also some modified version of k sum subarray. Than he asked many questions related to oops, I answered most of them than he asked me for any qiuestions and we dropped the call.

  • Q1. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. Brute Force
    • The most trivial approach would be to find all triplets of the array and count all such triplets whose ‘SUM’ = 'K'.
    • We can find the answer using three nested loops for three different indexes and check if the values at those indexes sum up to 'K'.
    • Create a set  to keep the track of triplets we have visited. Run first loop from i = 0 to i = ‘N’ - 3, second loop from j = i + 1 to j = ‘N’ - 2 and third loop ...
  • Answered Anonymously
  • Q2. 

    K Sum Subset Problem Statement

    You are provided with an array arr of size N and an integer K. Your objective is to compute the maximum sum of a subset of the array such that this sum does not exceed K.

    E...

  • Ans. Brute Force

    In this approach, we will iterate over all the possible subsets of the given array, and then we will find the maximum sum subset whose sum is not greater than K.

    The total number of subsets of an array is 2^N or 1 << N in the bitshift operator.

     

    Algorithm:

    • Set N as the size of the arr
    • Iterate i from 0 to 1 << N
      • Set currSum as 0
      • Iterate j from 0 to N
        • If i AND (1 << j) is not 0
          • Add arr[j] to cu...
  • Answered Anonymously
Round 2 - Face to Face 

(2 Questions)

Round duration - 40 Minutes
Round difficulty - Medium

This round was arranged with the Engineering Manager, we started with the introduction then he asked me to explain my project, I did that. After that he asked me one pattern question, I coded that than he asked me one more array question of finding mean, mode, median, I partially solved that question. Than he asked me for any questions and we dropped the call.

  • Q1. 

    Diamond Pattern Grid Problem

    Create a grid pattern of size R rows and C columns, where each cell contains a diamond-like shape of size S. The diamond shape is made with characters ‘/’ and ‘\’ for the bord...

  • Ans. Brute Force

    Approach: Since each diamond’s size is (2 * s) * (2 * s). So the total size of the grid will be (2 * s * r) * (2 * s * c). So we will iterate in all the points on the grid and use some basic algebra(modular arithmetics) to find the diamond to which this point belongs. Then we can identify the type of location(i.e. either this point is a boundary or not) as we can divide the diamond into four equal parts(top-...

  • Answered Anonymously
  • Q2. 

    Mean, Median, and Mode Problem Statement

    Given an integer array ARR of size N, you need to compute the following three statistical measures:

    1. Mean: Implement the function mean() to calculate the mean o...
  • Ans. 

    I really didn't remember the eaxct approach that I used.

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Maharaja Agrasen Institute Of Technology. Eligibility criteriaNAMobiKwik interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Oops, Computer networks, Operating systems, projectsTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 300 Questions from leetcode
Tip 2 : Prepare your project.

Application resume tips for other job seekers

Tip 1 : Add at least 4 projects.
Tip 2 : Add your coding profiles and GPA.

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Nov 2020.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

I had the flexibility to schedule it according to my time zone as the internship was Singapore based so I scheduled it at 9 am in the morning. The environment was similar to pair programming where the interviewer was a software enginner at stripe and asked me to code on any IDE with my screen share enabled. He shared the question on some online coding platform so it depends on you whether you want to use the coding platform or your own IDE. My language was python. The question was to figure out the optimal way to set the servers so that the servers are down for the minimum. One interesting part was to write the unit tests according to check the code on various test cases. I didn't know unit testing in python that time so it left a bad impression definitely. Other than the interviewer was really nice. After the interview ended, he told me about my shortcomings and also told me to learn about unit tests and testing.

  • Q1. 

    Anagram Pairs Verification Problem

    Your task is to determine if two given strings are anagrams of each other. Two strings are considered anagrams if you can rearrange the letters of one string to form the...

  • Ans. 

    The task is to determine whether two given strings form an anagram pair or not.

    • Check if the lengths of the two strings are equal. If not, they cannot be anagrams.

    • Create a frequency map of characters for both strings.

    • Compare the frequency maps of both strings. If they are equal, the strings are anagrams.

    • Return True if the strings are anagrams, False otherwise.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in SingaporeEligibility criteriaNoStripe interview preparation:Topics to prepare for the interview - Data Structures, System Design, REST APIs, AlgorithmsTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Have a good LinkedIn profile
Tip 2 : Have good projects on Github
Tip 3 : Practice coding questions

Application resume tips for other job seekers

Tip 1 : In projects, mention the tech stack used
Tip 2 : Keep it simple and concise preferably 1 page

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Mandi and was interviewed in Jul 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. There were basic DSA questions
  • Q2. Few questions based on Resume and Projects

I was interviewed in Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

The online round had 2 coding questions and one question of a regular expression.

  • Q1. 

    Find All Pairs Adding Up to Target

    Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target.

    Input:

    The first line ...
  • Ans. Hashing Solution
    • We can store the frequency of every element in the array in a hashmap.
    • We will loop over every index i, and check the frequency of (Target - ARR[i]) is the hashmap:
      • If (Target - ARR[i]) is equal to ARR[i], we will check if frequency of ARR[i] . If it is greater than 1 then we will decrease the frequency of ARR[i] by 2 and add a pair (ARR[i] , ARR[i]) to our answer.
      • Else, if the frequency of ARR[i] and Targ...
  • Answered Anonymously
  • Q2. 

    Increasing Subsegment Problem Statement

    Given a sequence ARR consisting of N integers, your task is to identify the longest subsegment of ARR, where you can change at most one number to make the subsegmen...

  • Ans. Dynamic Programming

    Here, the idea is to calculate the longest increasing subarray for every element by taking it as the starting as well as the ending point.

     

    Here is the algorithm:

     

    1. We first compute the longest increasing subarray ending at an index for every index in the given array. We store these values in l[].
    2. Then calculate the longest increasing subarray starting at an index for every index in the given a...
  • Answered Anonymously
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

First 10 minutes started with the Introduction. Then he asked about my projects. He seemed interested in my projects and asked a lot of questions about them. He asked questions related to Node Js, React Js, Mongo DB, AWS as all these were mentioned in my Resume. Around 25 minutes was completed explaining each and everything.

Then he started with the coding questions. I was allowed to share my screen and use any of my favourite text editors. I chose ‘VS Code’.

I was able to solve 2 coding questions very easily. I got stuck in the puzzle as I didn’t solve any puzzles before. I was able to come up with different approaches, but they weren’t the most optimal. He tried giving me a lot of hints but still wasn’t able to solve it. I had a positive can-do attitude throughout, and I was really close to solving it.

Feedback: He told me I performed well and asked if I had any questions for him. I asked for the solution to the puzzle. He explained to me the solution and I told him that I will practice puzzles.

Around 5-6 students got selected for 2nd Interview.

  • Q1. 

    Move Zeros To Left

    You are provided an array ARR of integers. Your task is to rearrange this array such that all elements with zero values are moved to the left, and all non-zero elements follow them, pre...

  • Ans. Solution Using Extra space

    The idea is to use an extra vector to store all the non-zero elements while maintaining their relative order. So we will first add all the non-zero elements to a vector and then iterate that vector backwards and start updating the array values from end. In the end we will set all the array values whose values were not updated to 0. 

    Steps:

    1. Let storeNonZero be the vector that stores non-zero...
  • Answered Anonymously
  • Q2. 

    Maximum Sum of Disjoint Pairs with Specific Difference

    Given an array of integers and a number K, your task is to form pairs of elements from the array such that the absolute difference between them is st...

  • Ans. Sorting

    Approach: We sort the given array in increasing order. For every element, we try to pair it with its previous element first. Since the array is sorted, the value of ‘ARR[i]’ would be more than ‘ARR[i - 1]’. We need to pair with a difference less than ‘K’, which means if 'ARR[i - 2]' can be paired, then ‘ARR[i - 1]’ can also be paired in a sorted array. Here, we prefer the previous element so that if ‘ARR[i]’ - ‘...

  • Answered Anonymously
Round 3 - Video Call 

(1 Question)

Round duration - 35 minutes
Round difficulty - Medium

It started with a brief Introduction and in-depth discussions on projects. He also asked me a lot of questions about my previous internship. He asked me some behavioural questions as well.

I was able to solve the question, and he did not ask me any other questions. This round was really short for me and was finished in around 35 minutes, well before time. I asked about my feedback, and he told me that the ‘HR’ will get back to me. I thought he was not satisfied with my answers and I will be rejected though I gave very good answers to every question.

3 students got selected for the next round. I think he was satisfied and did not want to waste more time asking questions.

  • Q1. 

    Polynomial Simplification Problem Statement

    You are provided with two arrays representing the coefficients and degrees of a polynomial expression. Your task is to simplify this polynomial into its general...

  • Ans. Using a map to store coefficients
    1. Initialise a map which will store the coefficients as value and exponent as key.
    2. For every term in the polynomial, update the coefficients in the map.
    3. If the coefficient becomes zero then remove the entry from the map.
    4. Sort the key values in descending order.
    5. Initialize the answer array.
    6. Add all non-zero coefficients in the array and return it.
    Space Complexity: OtherExplanation:

    O(K), where ...

  • Answered Anonymously
Round 4 - HR 

Round duration - 60 minutes
Round difficulty - Medium

It started with an introduction and discussion on projects. He seemed very curious about my project and went ahead to cross-question every functionality. We discussed everything and how the code works. He asked me a lot of questions on ‘Socket’ as my project mentioned it.

HR-related questions such as:
Why do you want to join the company?
Where do you see yourself in the next 5 years?
What are your strengths and weakness?

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Lovely Professional University. I applied for the job as SDE - Intern in BangaloreEligibility criteria7 CGPAAcko interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Puzzles, Project, Mock InterviewsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must know the standard algorithms (eg: searching, sorting)
Tip 2 : Practise mock interviews with your friends

Application resume tips for other job seekers

Tip 1 : Project with the deployed link and Github link
Tip 2 : Don't put information which is not relevant to the job profile

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Oct 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

The online test was for 2 hrs in which 5 coding questions were asked. 3 questions were pretty easy and 2 were of medium difficulty level. I was able to solve all 5 questions.

  • Q1. 

    Shortest Path in an Unweighted Graph

    The city of Ninjaland is represented as an unweighted graph with houses and roads. There are 'N' houses numbered 1 to 'N', connected by 'M' bidirectional roads. A road...

Round 2 - Face to Face 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It started with the introduction and then we had a discussion on the projects I had made. He asked for several Backend and Database concepts like locking in DB, sessions, etc as I had mentioned backend internship in my resume. It took around half an hour.

Then he gave me a coding question based on the graph

  • Q1. 

    Capture Region Problem Statement

    You are given a matrix having N rows and M columns. Each cell of the matrix contains either 'X' or 'O'. Your task is to flip all the regions of 'O' that are completely sur...

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Madan Mohan Malaviya University Of Technology. I applied for the job as SDE - Intern in BangaloreEligibility criteriaGood PH score on ElitmusJupiter Money interview preparation:Topics to prepare for the interview - Array, Graphs, Dynamic Programming, Operating System, Database Management SystemTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice 250+ standard quality questions.
Tip 2 : Do some good real-life projects in Front-end or Backend Development
Tip 3 : Try to find an internship that will not only enhance your development skills but also increase your resume selection chances.

Application resume tips for other job seekers

Tip 1 : Add quality projects (2 will be sufficient)
Tip 2 : Add your coding profile links.

Final outcome of the interviewSelected

Skills evaluated in this interview

Tell us how to improve this page.

Collections Executive
32 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Data Scientist
23 salaries
unlock blur

₹8.5 L/yr - ₹17 L/yr

Assistant Manager
21 salaries
unlock blur

₹4.8 L/yr - ₹18.5 L/yr

Sales Executive
19 salaries
unlock blur

₹2.7 L/yr - ₹3.8 L/yr

Data Analyst
18 salaries
unlock blur

₹4 L/yr - ₹13.1 L/yr

Explore more salaries
Compare EarlySalary Services with

MoneyTap

3.3
Compare

ZestMoney

4.0
Compare

Slice

3.2
Compare

Paysense Services India

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview