Upload Button Icon Add office photos
Engaged Employer

i

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

Stashfin Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Stashfin Senior Software Engineer Interview Questions and Answers

Updated 13 Nov 2024

Stashfin Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Nov 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. 2Sum DSA leetcode problem
  • Ans. 

    2Sum problem involves finding two numbers in an array that add up to a specific target.

    • Use a hashmap to store the difference between the target and each element in the array.

    • Iterate through the array and check if the current element's complement exists in the hashmap.

    • Return the indices of the two numbers that add up to the target.

  • Answered by AI
  • Q2. Spiral traversal of a Binary tree
  • Ans. 

    Spiral traversal of a Binary tree involves visiting nodes level by level alternating between left to right and right to left.

    • Start by pushing the root node into a queue.

    • While the queue is not empty, pop a node, print its value, and push its children into the queue.

    • Alternate between popping nodes from the queue and printing their values in a spiral manner.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. A problem similar to coin change problem of leetcode
  • Q2. Aggressive cows problem
  • Ans. 

    The aggressive cows problem involves finding the maximum distance between cows in a field while ensuring they are not too close to each other.

    • Use binary search to find the maximum distance between cows.

    • Sort the cows' positions and check if a certain distance is feasible.

    • Consider the constraints of the problem such as the number of cows and the size of the field.

  • Answered by AI
Round 3 - One on one round with CTO 

(1 Question)

  • Q1. Basic behavioural questions like why I am looking for a change and would I be able to handle the increased work pressure as I was shifting from MNC to a startup

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA questions were easy to medium and they didn’t really focus on any one language. Problem solving skills is all they judged me on.

Skills evaluated in this interview

Interview questions from similar companies

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

Auto complete Input Search box with Dropdown

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Machine coding round for SQL

I applied via Naukri.com and was interviewed in Aug 2022. 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 

(2 Questions)

  • Q1. Minimum number of platforms required for train station
  • Ans. 

    Minimum of two platforms are required for a train station.

    • At least two platforms are needed for trains to arrive and depart simultaneously.

    • Additional platforms may be required depending on the frequency of trains and passenger traffic.

    • Platforms should be long enough to accommodate the longest trains that will use the station.

  • Answered by AI
  • Q2. Longest Palindromic substring
  • Ans. 

    The problem is to find the longest substring that is a palindrome in a given string.

    • A palindrome is a string that reads the same backward as forward.

    • We can use dynamic programming to solve this problem.

    • We can start by considering each character as the center of a palindrome and expand outwards to find the longest palindrome.

    • We can also optimize the solution by using Manacher's algorithm which reduces the time complexit

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare Data structures and Algorithm well. Experience level 6-8 years

Skills evaluated in this interview

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 - Technical 

(2 Questions)

  • Q1. Sort the elements of an unsorted array
  • Ans. 

    Use any sorting algorithm to sort the elements of an unsorted array.

    • Choose an appropriate sorting algorithm based on the size of the array and the type of elements.

    • Common sorting algorithms include bubble sort, insertion sort, selection sort, merge sort, quick sort, and heap sort.

    • Implement the chosen algorithm in the programming language of your choice.

    • Test the sorting function with various input arrays to ensure corre

  • Answered by AI
  • Q2. Minimum energy required to cross all the hurdles without loosing life. If any point energy becomes 0 game over. Input: [-2,-3,3,1,5]
  • Ans. 

    Find minimum energy required to cross all hurdles without losing life.

    • Calculate cumulative sum of energy required to cross each hurdle.

    • Find the minimum cumulative sum and add 1 to it.

    • If the minimum cumulative sum is negative, return its absolute value + 1.

    • This is the minimum energy required to cross all hurdles without losing life.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DS and algorithm. It is kind of easy to crack.

Skills evaluated in this interview

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

I applied via Instahyre and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

DP questions 1D DP and Array question

Round 2 - Technical 

(1 Question)

  • Q1. Java questions and technical questions from previous experience
Round 3 - HR 

(2 Questions)

  • Q1. Behavioural questions and standard HR questions
  • Q2. Why looking for job switch
  • Ans. 

    Seeking new challenges and opportunities for growth in a different environment.

    • Looking for new challenges and opportunities to learn and grow

    • Interested in working with new technologies or industries

    • Seeking a better work-life balance or company culture

    • Want to expand my skill set and experience

  • Answered by AI
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. GCD of 2 strings
  • Ans. 

    GCD of 2 strings is not a common concept in software engineering.

    • GCD of 2 strings is not a standard problem in software engineering.

    • It is more common to find GCD of integers or numbers.

    • If the strings represent numbers, you can convert them to integers and find the GCD.

  • Answered by AI

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

Round 1 - Technical 

(1 Question)

  • Q1. Find edge score of the nodes in a directed graph
  • Ans. 

    Edge score of nodes in a directed graph

    • Edge score is a measure of the importance of a node in a graph

    • It is calculated by counting the number of edges that point to or from a node

    • Nodes with higher edge scores are considered more important

    • Edge score can be calculated using algorithms like PageRank or HITS

  • Answered by AI
Round 2 - One-on-one 

(3 Questions)

  • Q1. Rotten oranges after every second in 2D matrix
  • Ans. 

    Simulate rotting of oranges in a 2D matrix every second.

    • Create a queue to store the coordinates of fresh oranges

    • Iterate through the matrix and add the coordinates of fresh oranges to the queue

    • Simulate the rotting process by iterating through the queue and rotting adjacent fresh oranges

    • Keep track of the time taken for all oranges to rot

    • Return -1 if there are any fresh oranges left after the simulation

  • Answered by AI
  • Q2. Java and Spring concepts, HTTP, HTTPS, OSI layers
  • Q3. DB design for air ticket booking system
  • Ans. 

    DB design for air ticket booking system

    • Create tables for flights, passengers, bookings, and payments

    • Use foreign keys to establish relationships between tables

    • Include fields for flight details, passenger information, and payment details

    • Consider implementing a caching mechanism for frequently accessed data

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't give interviews to Yubi. They just do time pass with the interviewees. After a long interview for 100 minutes they rejected me. Not because of this long session I was upset, I was able to answer everything correctly and the interviewer too applauded me.

Skills evaluated in this interview

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

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

Round 1 - HR 

(2 Questions)

  • Q1. Explain Concurrency
  • Ans. 

    Concurrency is the ability of a system to execute multiple tasks simultaneously.

    • Concurrency allows multiple tasks to run concurrently, improving performance and efficiency.

    • Concurrency can be achieved through multithreading or multiprocessing.

    • Example: A web server handling multiple requests simultaneously using multithreading.

  • Answered by AI
  • Q2. Explain Acid principles
  • Ans. 

    ACID principles are a set of properties that guarantee database transactions are processed reliably.

    • Atomicity: Transactions are all or nothing. If one part of the transaction fails, the entire transaction is rolled back.

    • Consistency: Transactions bring the database from one valid state to another. All constraints are satisfied.

    • Isolation: Transactions are isolated from each other until they are completed.

    • Durability: Once...

  • Answered by AI

Skills evaluated in this interview

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

Implement thread safe load balancer.
focus on input validations and cover all corner cases in tests

Stashfin Interview FAQs

How many rounds are there in Stashfin Senior Software Engineer interview?
Stashfin interview process usually has 3 rounds. The most common rounds in the Stashfin interview process are One-on-one Round.
How to prepare for Stashfin Senior Software Engineer interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Stashfin. The most common topics and skills that interviewers at Stashfin expect are Backend and Software Development.
What are the top questions asked in Stashfin Senior Software Engineer interview?

Some of the top questions asked at the Stashfin Senior Software Engineer interview -

  1. Spiral traversal of a Binary t...read more
  2. 2Sum DSA leetcode prob...read more
  3. Aggressive cows prob...read more

Tell us how to improve this page.

Stashfin Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Stashfin Senior Software Engineer Salary
based on 8 salaries
₹9.5 L/yr - ₹37.6 L/yr
45% more than the average Senior Software Engineer Salary in India
View more details
Assistant Manager
23 salaries
unlock blur

₹4 L/yr - ₹10.5 L/yr

Credit Officer
18 salaries
unlock blur

₹2.5 L/yr - ₹4.5 L/yr

Software Developer
16 salaries
unlock blur

₹5.5 L/yr - ₹16 L/yr

Product Manager
14 salaries
unlock blur

₹14 L/yr - ₹45 L/yr

Data Scientist
11 salaries
unlock blur

₹9.1 L/yr - ₹37 L/yr

Explore more salaries
Compare Stashfin with

PhonePe

4.0
Compare

Navi Technologies

2.9
Compare

Tide - Business Management Platform

3.8
Compare

Oportun

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