Premium Employer

i

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

Yubi Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Yubi Senior Software Engineer Interview Questions and Answers

Updated 23 Apr 2025

9 Interview questions

A Senior Software Engineer was asked 2mo ago
Q. Given an array nums which consists of non-negative integers and an integer k, you need to divide this array into k non-empty continuous subarrays. Design an algorithm to minimize the largest sum among these...
Ans. 

Split an array into 'm' subarrays to minimize the largest sum among them.

  • Use binary search to find the minimum largest sum possible.

  • Define a helper function to check if a target sum can be achieved with 'm' splits.

  • Example: For array [7, 2, 5, 10, 8] and m=2, the optimal split is [7, 2, 5] and [10, 8] with largest sum 15.

A Senior Software Engineer was asked 6mo ago
Q. For two given strings, find the greatest common divisor (GCD).
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.

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in DBS Bank
Q2. Tell me about yourself. What technology are you using? What is a ... read more
Q3. K Largest Elements Problem Statement You are given an integer k a ... read more
asked in GlobalLogic
Q4. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
Q5. If you have to prioritize between coding standards and project de ... read more
A Senior Software Engineer was asked
Q. How would you 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 ...

A Senior Software Engineer was asked
Q. What is the minimum initial energy required to cross all hurdles represented by the input array without energy dropping to zero at any point? 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.

A Senior Software Engineer was asked
Q. Given a string s, return the longest palindromic substring in s.
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 comp...

A Senior Software Engineer was asked
Q. Given arrival and departure times of all trains that reach a railway station, find the minimum number of platforms required for the railway station so that no train waits.
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.

A Senior Software Engineer was asked
Q. Describe a database design for an 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

Are these interview questions helpful?
A Senior Software Engineer was asked
Q. Given a 2D grid of integers, where 0 represents an empty cell, 1 represents a fresh orange, and 2 represents a rotten orange, every rotten orange can rot its adjacent fresh oranges (up, down, left, and righ...
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

A Senior Software Engineer was asked
Q. Given a directed graph, how do you find the edge score of the nodes?
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

Yubi Senior Software Engineer Interview Experiences

6 interviews found

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. LC 410: Split Array Largest Sum
  • Ans. 

    Split an array into 'm' subarrays to minimize the largest sum among them.

    • Use binary search to find the minimum largest sum possible.

    • Define a helper function to check if a target sum can be achieved with 'm' splits.

    • Example: For array [7, 2, 5, 10, 8] and m=2, the optimal split is [7, 2, 5] and [10, 8] with largest sum 15.

  • Answered by AI
  • Q2. Intro was asked

Interview Preparation Tips

Interview preparation tips for other job seekers - solve similar problems on LC and you would be good.
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
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

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

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

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Yubi?
Ask anonymously on communities.

Interview questions from similar companies

Interview Preparation Tips

Round: Technical Interview
Tips: Have a good grasp of DS algo, java, etc.(Here CGPA doesn't matter)

General Tips: Do’s and Don’ts :
1. Be confident and to be confident prepare well.
2. Set the priority of your companies 
3. Don't start preparation at end. Don't ignore the content of resume.

Be confident and start preparation as soon as possible.
College Name: IIT Kanpur
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. System Design for Task Scheduler
  • Ans. 

    Design a scalable task scheduler to manage and execute tasks efficiently based on priority and timing.

    • Define task attributes: ID, priority, execution time, and status.

    • Use a priority queue to manage task scheduling based on priority.

    • Implement worker threads to execute tasks concurrently.

    • Consider persistent storage for tasks to survive system restarts.

    • Provide an API for adding, updating, and removing tasks.

  • Answered by AI
  • Q2. Past work experience
  • Ans. 

    I have extensive experience in software development, focusing on scalable applications and team collaboration.

    • Led a team of 5 developers in creating a microservices architecture for a healthcare application, improving scalability by 40%.

    • Implemented CI/CD pipelines using Jenkins and Docker, reducing deployment time from hours to minutes.

    • Collaborated with cross-functional teams to gather requirements and deliver features...

  • Answered by AI
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
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. ML Related question for backend Engineer

Yubi Interview FAQs

How many rounds are there in Yubi Senior Software Engineer interview?
Yubi interview process usually has 2 rounds. The most common rounds in the Yubi interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Yubi 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 Yubi. The most common topics and skills that interviewers at Yubi expect are Front End, Software Design, Computer science, Python and Unit Testing.
What are the top questions asked in Yubi Senior Software Engineer interview?

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

  1. Minimum energy required to cross all the hurdles without loosing life. If any p...read more
  2. Find edge score of the nodes in a directed gr...read more
  3. Minimum number of platforms required for train stat...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.3/5

based on 3 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Join Yubi Go get great
Yubi Senior Software Engineer Salary
based on 111 salaries
₹20.6 L/yr - ₹35 L/yr
64% more than the average Senior Software Engineer Salary in India
View more details

Yubi Senior Software Engineer Reviews and Ratings

based on 12 reviews

2.9/5

Rating in categories

2.9

Skill development

2.8

Work-life balance

3.1

Salary

2.8

Job security

2.7

Company culture

2.8

Promotions

2.8

Work satisfaction

Explore 12 Reviews and Ratings
Senior Software Engineer

Chennai

5-10 Yrs

Not Disclosed

Senior Software Engineer

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Senior Software Engineer

Chennai,

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
112 salaries
unlock blur

₹20.7 L/yr - ₹35 L/yr

Software Engineer
99 salaries
unlock blur

₹13.1 L/yr - ₹25 L/yr

Senior Associate
88 salaries
unlock blur

₹11.3 L/yr - ₹20 L/yr

Associate
68 salaries
unlock blur

₹7.4 L/yr - ₹24.4 L/yr

Associate Vice President
33 salaries
unlock blur

₹18 L/yr - ₹45 L/yr

Explore more salaries
Compare Yubi with

KFintech

3.5
Compare

Angel One

3.8
Compare

AGS Transact Technologies

2.9
Compare

Hitachi Payment Services

3.7
Compare
write
Share an Interview