Upload Button Icon Add office photos
Engaged Employer

i

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

yellow.ai Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

yellow.ai Software Development Engineer II Interview Questions and Answers

Updated 9 Jun 2023

yellow.ai Software Development Engineer II Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed before Jun 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 - Technical 

(2 Questions)

  • Q1. DS problem with arrays like max profit
  • Ans. 

    Find the maximum profit that can be made by buying and selling stocks in an array.

    • Use a greedy approach to find the maximum profit by keeping track of the minimum price and updating the maximum profit.

    • Iterate through the array and calculate the difference between each element and the minimum price seen so far.

    • Return the maximum profit obtained from the array.

  • Answered by AI
  • Q2. String manipulation problem
  • Ans. 

    Reverse each word in a given array of strings

    • Iterate through each string in the array

    • Split each string into individual words

    • Reverse each word and join them back together

    • Return the modified array of strings

  • Answered by AI

Interview Preparation Tips

Topics to prepare for yellow.ai Software Development Engineer II interview:
  • System designs
  • Distributed data processing
Interview preparation tips for other job seekers - Be good in algo and DS
Stong in design problems related to log processing and ticketing systems

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about yellow.ai?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

A company designed the test basically to understand the nature of the interviewee. Simple test.

Round 2 - One-on-one 

(1 Question)

  • Q1. OOP Questions like inheritance, polymorphism, etc.

Interview Preparation Tips

Topics to prepare for Entrata Senior Software Engineer interview:
  • Javascript
  • PHP
  • Postgresql
  • React.Js
Interview preparation tips for other job seekers - OOP Concepts, Database knowledge. Mostly normal interviews do not have many hard questions.

Software Development Engineer II Interview Questions Asked at Other Companies

asked in Zepto
Q1. Given two large numeric comma-separated strings, calculate their ... read more
asked in Pine Labs
Q2. Design a system like Redbus with the following functional require ... read more
asked in Zepto
Q3. Design a file system similar to Google Drive, including file uplo ... read more
asked in Porter
Q4. 1. Given an array find a subset that sums to a given sum K 2. Giv ... read more
asked in Zepto
Q5. How many microservices do you own and at what scale do they handl ... read more

Interview Questionnaire 

1 Question

  • Q1. PHP, OOPS,Mysql

Interview Preparation Tips

Interview preparation tips for other job seekers - Waste of time, even if you are answering all questions in interview they will reject you.

Interview Questionnaire 

1 Question

  • Q1. SQL Basics, CTE, MERGE Statement

Interview Questionnaire 

1 Question

  • Q1. Simple and General Linux related questions, Oracle installations, Linux commands etc

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview for the deployment team to be responsible for deploying the security products to global customers
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website 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 

Programming assessment tools used to objectively evaluate a candidates programing skills across parameters such as problem solving, coding aptitude and debugging

Round 3 - One-on-one 

(2 Questions)

  • Q1. 1. Do you prefer working independently or as a part of a team
  • Ans. 

    I value both independent work and teamwork, as each has unique benefits that contribute to successful software development.

    • Independence: Working independently allows for deep focus and personal accountability, which can lead to innovative solutions. For example, I once developed a feature on my own that improved application performance by 30%.

    • Team Collaboration: Collaborating with a team fosters diverse ideas and persp...

  • Answered by AI
  • Q2. As a part of an

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi, I'm anjali devi maddu and I'm writing about the position of employ with your company . I'm submitted my resume.I think you'll find that my brief personal details could be a good fit for the job and I'd love to discuss my qualifications in more details
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

10 mcq, 2 dsa, 1 assignment question

Round 2 - One-on-one 

(2 Questions)

  • Q1. Javascript basics
  • Q2. Previous projects
  • Ans. 

    Developed a web application for tracking inventory and sales data

    • Used React for front-end development

    • Implemented RESTful APIs for backend using Node.js

    • Utilized MongoDB for database storage

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Behavorial questions
Are these interview questions helpful?
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. DSA coding leer code
  • Q2. Dependency injection
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via Referral and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is closure? Application and concept understanding
  • Ans. 

    Closure is a function that captures the environment in which it was created, allowing it to access variables from that environment even after the function has finished executing.

    • Closure allows a function to access variables from its outer scope even after the function has finished executing.

    • It 'closes over' the variables from the outer scope, preserving their values.

    • Example: function outerFunction() { let outerVar = 'I...

  • Answered by AI
  • Q2. What is event loop?
  • Ans. 

    Event loop is a mechanism that allows for asynchronous programming by handling and executing events in a loop.

    • Event loop is a part of the runtime environment that listens for events and executes callback functions.

    • It allows for non-blocking I/O operations by delegating tasks to the operating system.

    • Event loop is commonly used in JavaScript for handling asynchronous operations like setTimeout, setInterval, and AJAX requ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basic concept though be read and revised

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions medium level

Round 2 - One-on-one 

(2 Questions)

  • Q1. All related to python
  • Q2. ANd Golang

yellow.ai Interview FAQs

How many rounds are there in yellow.ai Software Development Engineer II interview?
yellow.ai interview process usually has 2 rounds. The most common rounds in the yellow.ai interview process are Resume Shortlist and Technical.
How to prepare for yellow.ai Software Development Engineer II 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 yellow.ai. The most common topics and skills that interviewers at yellow.ai expect are Algorithms, CSS, Data Engineering, Data Governance and Data Modeling.
What are the top questions asked in yellow.ai Software Development Engineer II interview?

Some of the top questions asked at the yellow.ai Software Development Engineer II interview -

  1. DS problem with arrays like max pro...read more
  2. String manipulation prob...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Innovaccer Interview Questions
3.4
 • 84 Interviews
NoBrokerHOOD Interview Questions
3.1
 • 61 Interviews
Entrata Interview Questions
4.1
 • 40 Interviews
Mobileum Interview Questions
3.3
 • 38 Interviews
CommVault Interview Questions
3.8
 • 28 Interviews
Twilio Interview Questions
3.9
 • 24 Interviews
View all
yellow.ai Software Development Engineer II Salary
based on 22 salaries
₹17 L/yr - ₹32 L/yr
13% less than the average Software Development Engineer II Salary in India
View more details

yellow.ai Software Development Engineer II Reviews and Ratings

based on 3 reviews

2.2/5

Rating in categories

1.5

Skill development

1.3

Work-life balance

1.3

Salary

1.5

Job security

1.5

Company culture

1.5

Promotions

1.5

Work satisfaction

Explore 3 Reviews and Ratings
Software Engineer
152 salaries
unlock blur

₹4 L/yr - ₹12.3 L/yr

Business Analyst
62 salaries
unlock blur

₹5 L/yr - ₹15.5 L/yr

Senior Software Engineer
42 salaries
unlock blur

₹6.5 L/yr - ₹22 L/yr

Software Development Engineer II
22 salaries
unlock blur

₹17 L/yr - ₹32 L/yr

Software Development Engineer
21 salaries
unlock blur

₹11 L/yr - ₹26 L/yr

Explore more salaries
Compare yellow.ai with

Celebal Technologies

3.1
Compare

NoBrokerHOOD

3.1
Compare

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare
write
Share an Interview