Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Springworks Team. If you also belong to the team, you can get access from here

Springworks Verified Tick

Compare button icon Compare button icon Compare
4.6

based on 162 Reviews

Filter interviews by

Springworks Sde1 Interview Questions and Answers

Updated 11 Nov 2024

Springworks Sde1 Interview Experiences

1 interview found

Sde1 Interview Questions & Answers

user image Anonymous

posted on 11 Nov 2024

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

I applied via LinkedIn and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Coding Question related to Greedy Approach
  • Q2. Objective Questions
Round 2 - One-on-one 

(2 Questions)

  • Q1. Question related to coroutine
  • Q2. Question related to retrofit, MVVM

Interview questions from similar companies

Sde1 Interview Questions & Answers

Harness user image Anonymous

posted on 6 Jul 2022

I applied via campus placement at Institute of Technology, Banaras Hindu University and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium questions

Round 2 - Technical 

(2 Questions)

  • Q1. Project related questions
  • Q2. Basic knowledge on relevant courses

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and speak out in a position manner
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Leetcode Medium questions on hackerrank

Round 2 - One-on-one 

(3 Questions)

  • Q1. Kadane algorithm based question
  • Q2. Leetcode medium
  • Q3. Resume based questions
Round 3 - One-on-one 

(4 Questions)

  • Q1. Probability question math problem
  • Q2. Puzzle to solve
  • Q3. AI based question
  • Q4. 1 question to solve Leetcode medium

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with DSA and communication skill
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is Build testing, shift left testing
  • Ans. 

    Build testing is testing the software build to ensure it meets requirements. Shift left testing is moving testing earlier in the development process.

    • Build testing involves testing the software build to ensure it meets functional and non-functional requirements

    • Shift left testing is the practice of moving testing activities earlier in the software development process to catch defects sooner

    • By shifting testing left, defec...

  • Answered by AI
  • Q2. Write manual test cases for whatapp security features
  • Ans. 

    Manual test cases for WhatsApp security features

    • Verify end-to-end encryption is enabled for all messages

    • Test two-factor authentication setup and login process

    • Check for secure storage of user data on the device

    • Test for secure transmission of media files

    • Verify the effectiveness of blocking and reporting features

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer had a very bad and arrogant attitude. Not approachable and very intimidating.

Skills evaluated in this interview

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

4 coding questions were asked

Round 2 - Technical 

(2 Questions)

  • Q1. Puzzle 25,5 horses and no.of horses
  • Q2. Intro ,project discussion
Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

Max triangle height where you have given blue ball and red ball to arrange and make it traingle

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

(1 Question)

  • Q1. Regex related related programming question
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Pointless basic questions is what they asked
Round 2 - Technical 

(1 Question)

  • Q1. They had this round for hours together

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly do not attend interview at Pando. They make the interview process long and tedious. They had less budget despite knowing that they wasted my time and efforts on the whole the company is not well structured and their HR team is very poor. They are a typical unstructured startup company with poor work ethics and culture.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Mimic Dataframe Merge
  • Ans. 

    Implement a function to mimic the functionality of merging two DataFrames in Python.

    • Create a function that takes two DataFrames as input.

    • Merge the two DataFrames based on a common column or index.

    • Handle different types of joins like inner, outer, left, and right joins.

    • Return the merged DataFrame as output.

  • Answered by AI
  • Q2. Improve above case by case
Round 2 - Coding Test 

1 hour - Find longest palindromic substring

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2023. There were 3 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 - Coding Test 

60 Minutes coding test was there

Round 3 - Technical 

(5 Questions)

  • Q1. Worst experience ever, never apply for company in this, highly unstable company
  • Q2. Add two numbers in a linked list, don't apply
  • Ans. 

    Traverse the linked list and add the values of each node without using additional data structures.

    • Traverse the linked list while keeping track of the sum in a variable

    • Update the sum by adding the value of each node as you traverse the list

    • Handle carry over if the sum of two nodes is greater than 9

  • Answered by AI
  • Q3. Sort the array by using all sorting algorithms, don't join
  • Q4. Subset problem find all the subsets
  • Ans. 

    To find all subsets of a given set, use recursion to generate all possible combinations.

    • Use recursion to generate all possible combinations of including or excluding each element in the set.

    • Start with an empty subset and recursively add each element to create new subsets.

    • Each subset can be represented as an array of strings.

  • Answered by AI
  • Q5. LRU Cache problem, explain it and implement it
  • Ans. 

    LRU Cache is a data structure that stores a fixed number of items and removes the least recently used item when the cache is full.

    • LRU Cache uses a combination of a doubly linked list and a hashmap to efficiently store and retrieve items.

    • When an item is accessed, it is moved to the front of the linked list to indicate it is the most recently used item.

    • If the cache is full, the least recently used item at the end of the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join, Worst Experience every

Skills evaluated in this interview

Springworks Interview FAQs

How many rounds are there in Springworks Sde1 interview?
Springworks interview process usually has 2 rounds. The most common rounds in the Springworks interview process are HR and One-on-one Round.
What are the top questions asked in Springworks Sde1 interview?

Some of the top questions asked at the Springworks Sde1 interview -

  1. Coding Question related to Greedy Appro...read more
  2. Question related to retrofit, M...read more
  3. Question related to corout...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Springworks interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Vyapar Interview Questions
3.5
 • 48 Interviews
BrowserStack Interview Questions
3.7
 • 45 Interviews
Classplus Interview Questions
3.4
 • 27 Interviews
Fleetx.io Interview Questions
3.9
 • 25 Interviews
Twilio Interview Questions
4.0
 • 23 Interviews
yellow.ai Interview Questions
3.1
 • 17 Interviews
View all
Associate Product Manager
12 salaries
unlock blur

₹7 L/yr - ₹11.2 L/yr

QA Engineer
12 salaries
unlock blur

₹4.6 L/yr - ₹10 L/yr

Product Designer
11 salaries
unlock blur

₹9 L/yr - ₹20 L/yr

Software Engineer
9 salaries
unlock blur

₹7 L/yr - ₹10 L/yr

Project Manager
9 salaries
unlock blur

₹7.9 L/yr - ₹27 L/yr

Explore more salaries
Compare Springworks with

SpringRole India

4.2
Compare

Springboard

4.3
Compare

Spring Computing Technologies

4.2
Compare

Aurigo

4.8
Compare

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
Did you find this page helpful?
Yes No
write
Share an Interview