Upload Button Icon Add office photos

Filter interviews by

EarlySalary Services SDE Intern Interview Questions and Answers

Updated 16 Oct 2024

EarlySalary Services SDE Intern Interview Experiences

1 interview found

SDE Intern Interview Questions & Answers

user image Anonymous

posted on 16 Oct 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Find the missing number in an array, , given the array conatins numbers form 1 to n and one number is missing
  • Ans. 

    Find the missing number in an array containing numbers from 1 to n.

    • Iterate through the array and calculate the sum of all numbers from 1 to n.

    • Calculate the sum of all numbers in the given array.

    • Subtract the sum of array from the sum of all numbers to find the missing number.

  • Answered by AI
  • Q2. And question on resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Be chill and Fibe is a good company.

Skills evaluated in this interview

Interview questions from similar companies

I applied via campus placement at National Institute of Technology (NIT), Kurukshetra and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Here the interview was basically about frontend.started of with internet and how all types of connections work behind the scenes. Then basic questions of javascript, couple of easy Data structure questions...

Interview Preparation Tips

Interview preparation tips for other job seekers - Now the basic fundamentals clear and have a positive attitude.
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Mcqs and 2 coding questions

Round 2 - One-on-one 

(1 Question)

  • Q1. 45 minutes round 2 dsa questions easy questions
Round 3 - Technical 

(1 Question)

  • Q1. Happened for 15 minutes only general questions fromm resume this round is with the manager
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Question on DSA and Projects

Sde1 Interview Questions & Answers

ACKO user image Anonymous

posted on 20 Jan 2025

Interview experience
2
Poor
Difficulty level
-
Process Duration
2-4 weeks
Result
No response

I applied via LinkedIn and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

Regex generator- used dp

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

I applied via Recruitment Consulltant and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Merge two sorted arrays
  • Ans. 

    Merging two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Iterate through both arrays simultaneously, comparing elements and adding the smaller one to the result array

    • Handle cases where one array is longer than the other by appending the remaining elements

  • Answered by AI
  • Q2. Put patch and post in api testing
  • Ans. 

    Patch and post are HTTP methods used in API testing to update and create resources, respectively.

    • PATCH method is used to update an existing resource in the API

    • POST method is used to create a new resource in the API

    • Both methods are commonly used in RESTful APIs for CRUD operations

    • Example: PATCH /api/users/123 to update user with ID 123

    • Example: POST /api/users to create a new user

  • Answered by AI
  • Q3. Explain your automation framework
  • Ans. 

    My automation framework is a data-driven framework using Selenium WebDriver and TestNG for test execution and reporting.

    • Uses Selenium WebDriver for interacting with web elements

    • Utilizes TestNG for test execution and reporting

    • Follows a data-driven approach for test data management

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare basic dsa, leetcode problems are asked in interview

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at KIIT University, Bhuvaneshwar and was interviewed in Jun 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Hackerrank Test including 4 coding and few mcq questions

Round 3 - Technical 

(2 Questions)

  • Q1. Frontend and Javascript related question.
  • Q2. Coding Question in Javascript
Round 4 - HR 

(2 Questions)

  • Q1. Asked about myself and my interest
  • Q2. Asked about project that I did in college

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest.
Focus on your strength.
Practice good coding
Have some good project on your CV

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

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude questions to be asked in this round

Round 2 - Coding Test 

Write a Java program to sort array in ascending order

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

EarlySalary Services Interview FAQs

How many rounds are there in EarlySalary Services SDE Intern interview?
EarlySalary Services interview process usually has 1 rounds. The most common rounds in the EarlySalary Services interview process are Technical.

Tell us how to improve this page.

EarlySalary Services SDE Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

PhonePe Interview Questions
4.0
 • 300 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Revolut Interview Questions
2.6
 • 91 Interviews
Rupeek Interview Questions
3.7
 • 59 Interviews
Freecharge Interview Questions
4.0
 • 53 Interviews
ACKO Interview Questions
3.8
 • 48 Interviews
Jupiter Money Interview Questions
3.4
 • 29 Interviews
Slice Interview Questions
3.2
 • 28 Interviews
Spice Money Interview Questions
4.1
 • 28 Interviews
View all
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