Upload Button Icon Add office photos

Yodlee

Compare button icon Compare button icon Compare

Filter interviews by

Yodlee Software Engineer Interview Questions, Process, and Tips

Updated 16 Jan 2024

Top Yodlee Software Engineer Interview Questions and Answers

  • Q1. Palindrome Linked List Problem Statement Determine if a given singly linked list of integers is a palindrome. Return true if it is a palindrome, otherwise return false . ...read more
  • Q2. Valid Parentheses Problem Statement Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced. ...read more
  • Q3. to write code to check linked list is palindrome or not, in a single traversal and without using any other data structure
View all 13 questions

Yodlee Software Engineer Interview Experiences

4 interviews found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

Hackerrank algorithms and ds test

Round 3 - One-on-one 

(1 Question)

  • Q1. Technical on java and aws
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical Reasoning, Questions on distances, Questions on directions

Round 2 - Coding Test 

1- Difference between array list and linked list.
2- Reverse the linked list

Round 3 - Coding Test 

1-Difference between Arraylist and Linked list.
2-Check if strings are anagram.

Interview Preparation Tips

Interview preparation tips for other job seekers - Study java OOPS concept, Collections and Basdic array and DS

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

I was interviewed before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

It was on online objective test consisting of 4 sections: Aptitude, Technical MCQs, Code snippet based MCQs and Coding part.

  • Q1. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Q2. 

    Palindrome Linked List Problem Statement

    Determine if a given singly linked list of integers is a palindrome. Return true if it is a palindrome, otherwise return false.

    Example:

    Input:
    1 -> 2 -> ...
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical and managerial round. The interviewer gave me a situation where I am in testing team and I found that customer requirement was drop down list at a place but developer has used bullet selection, and is not ready to change it. How will you manage? I gave some good replies and he was convinced.

  • Q1. What is a virtual function?
  • Q2. Can you explain how to perform a level order traversal of a binary tree in spiral form?
  • Q3. What are abstract classes in C++?
Round 3 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was also a technical round. He asked to optimize the code I wrote in coding round. Then he asked me a few puzzles and questions on OOPS, OS and DBMS.

  • Q1. Can you explain the ACID properties in the context of database management systems?
  • Q2. What is the difference between paging and segmentation in operating systems?
  • Q3. What is concurrency control?
  • Q4. What is the difference between String Buffer and String Builder in Java?
  • Q5. What are smart pointers in C++?
  • Q6. What is the difference between a mutex and a semaphore?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAYodlee interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

user image Shubham Jain

posted on 13 Oct 2015

Interview Questionnaire 

3 Questions

  • Q1. Write a program for snake traversal of binary tree
  • Ans. 

    Program for snake traversal of binary tree

    • Use a stack to keep track of nodes to be visited

    • Start with the root node and push it onto the stack

    • While the stack is not empty, pop a node and print its value

    • If the level is even, push the left child first and then the right child onto the stack

    • If the level is odd, push the right child first and then the left child onto the stack

  • Answered by AI
  • Q2. To write code to check linked list is palindrome or not, in a single traversal and without using any other data structure
  • Ans. 

    Code to check if linked list is palindrome without using any other data structure and in a single traversal.

    • Traverse the linked list using two pointers, one slow and one fast

    • Reverse the first half of the linked list while traversing

    • Compare the reversed first half with the second half of the linked list

  • Answered by AI
  • Q3. Asked about OOPS concepts like abstraction, encapsulation, inheritance and polymorphism in detail and how they are implemented while programming

Interview Preparation Tips

Round: Test
Experience: It was on online objective test consisting of 4 sections: Aptitude, Technical MCQs, Code snippet based MCQs and Coding part.
Coding part had questions like balanced parenthesis check, etc.


Round: Technical Interview
Experience: Technical and managerial. Gave me a situation where I am in testing team and I found that customer requirement was drop down list at a place but developer has used bullet selection, and is not ready to change it. How will you manage? I gave some good replies and he was convinced.
Then he asked 25 horses puzzle (-----.php/puzzles/25-horses-3-fastest-5-races-puzzle/). I solved it.
He then asked me to code it. I wrote an algorithm first and then the code. He was very impressed.
He asked about virtual functions, abstract classes, pure virtual functions.


Round: Technical Interview
Experience: He asked to optimize the code I wrote in coding round.
Then he asked me candle puzzle on how to measure 30 min and 45 min.
Then he asked me the chocolate puzzle (-----.html).
What is paging and segmentation?
What are ACID properties in DBMS?
What is transaction and how is concurrency control done?
What is the difference between string builder and string buffer?
What is string pool in java?
What is JVM, JRE, JDK?
Differentiate between mutex and semaphore?
Can you override private and static members?
Contiguous and non-contiguous memory allocation?
What are Smart pointers?


Skills:
College Name: NIT Jalandhar

Skills evaluated in this interview

Yodlee interview questions for designations

 Associate Software Engineer

 (1)

 Senior Software Engineer

 (1)

 Software Developer

 (1)

 Software Developer Intern

 (1)

 Devops Engineer

 (1)

 Senior Network Engineer

 (1)

 Associate System Analyst

 (1)

 System Analyst

 (1)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Sql related questions were asked
  • Q2. Manual testing questions were asked
  • Q3. Joins questions
  • Q4. Where clause questions
  • Q5. Manual testing questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

A good DSA question, based on array manipulation and queues. Platform was Zoom call, so you can use any online IDE.

Round 2 - One-on-one 

(3 Questions)

  • Q1. Question related to previous job Experience
  • Q2. Questions related to OOPS concepts
  • Q3. Question on System Design and Fundamentals of Language.
Round 3 - Behavioral interview 

(4 Questions)

  • Q1. Past Experience
  • Q2. How you tackle with challenges in less time
  • Q3. How you handle complete new tech stack?
  • Q4. Approach towards trivial puzzles.
Round 4 - HR 

(1 Question)

  • Q1. Compensation Decisions

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep concepts clear, and you should back up your answers with real-life examples that everyone uses, so the interviewer can understand better and relate.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Sorting of an array
  • Q2. Bubble sorting algorithm
Round 2 - Technical 

(1 Question)

  • Q1. Java oops question
Round 3 - Technical 

(1 Question)

  • Q1. API questions related to put and patch api
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

30 mins interview. Asked about resume, APIs, Stack DSA question and one Sorting algorithm question.

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

I applied via Naukri.com and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basics of javascript
Round 2 - Technical 

(1 Question)

  • Q1. Advance javascript coding questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Know your resume and your basics

Round 2 - Coding Test 

Know class diagrams. Very Huge for workday.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just know your resume

Yodlee Interview FAQs

How many rounds are there in Yodlee Software Engineer interview?
Yodlee interview process usually has 3 rounds. The most common rounds in the Yodlee interview process are Coding Test, Resume Shortlist and One-on-one Round.
How to prepare for Yodlee 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 Yodlee. The most common topics and skills that interviewers at Yodlee expect are Linux, Python, Java, Perl and Continuous Integration.
What are the top questions asked in Yodlee Software Engineer interview?

Some of the top questions asked at the Yodlee Software Engineer interview -

  1. to write code to check linked list is palindrome or not, in a single traversal ...read more
  2. write a program for snake traversal of binary t...read more
  3. asked about OOPS concepts like abstraction, encapsulation, inheritance and poly...read more

Tell us how to improve this page.

Yodlee Software Engineer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
Yodlee Software Engineer Salary
based on 224 salaries
₹4.2 L/yr - ₹12.5 L/yr
8% less than the average Software Engineer Salary in India
View more details

Yodlee Software Engineer Reviews and Ratings

based on 54 reviews

3.4/5

Rating in categories

2.8

Skill development

3.4

Work-life balance

3.5

Salary

3.4

Job security

3.5

Company culture

3.0

Promotions

2.9

Work satisfaction

Explore 54 Reviews and Ratings
Senior Software Engineer
250 salaries
unlock blur

₹7.3 L/yr - ₹22 L/yr

Software Engineer
224 salaries
unlock blur

₹4.2 L/yr - ₹12.5 L/yr

Member Technical Staff
130 salaries
unlock blur

₹11 L/yr - ₹30.1 L/yr

Senior Member of Technical Staff
70 salaries
unlock blur

₹17.5 L/yr - ₹38 L/yr

Data Analyst
47 salaries
unlock blur

₹3 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Yodlee with

Intuit

3.5
Compare

Mphasis

3.4
Compare

Nucleus Software Exports

3.5
Compare

Intellect Design Arena

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