Upload Button Icon Add office photos

Filter interviews by

Yodlee Software Engineer Interview Questions, Process, and Tips

Updated 16 Jan 2024

Top Yodlee Software Engineer Interview Questions and Answers

  • Q1. Check if a linked list is palindrome You are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise ...read more
  • Q2. Valid Parentheses You're given string ‘STR’ consisting solely of “{“, “}”, “(“, “)”, “[“ and “]” . Determine whether the parentheses are balanced. Input Format: The first ...read more
  • Q3. Puzzle There are 25 horses among which you need to find out the fastest 3 horses. You can conduct race among at most 5 to find out their relative speed. At no point you c ...read more
View all 16 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 DuplicateYou have been given an integer array/list(ARR) of s ... 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

    You're given string ‘STR’ consisting solely of “{“, “}”, “(“, “)”, “[“ and “]” . Determine whether the parentheses are balanced.

    Input Format:
    The first line contains an Integer &...
  • Ans. 

    A stack can be used to solve this question. 
    We traverse the given string s and if we:
    1. see open bracket we put it to stack
    2. see closed bracket, then it must be equal to bracket in the top of our stack, so we check it and if it is true, we remove this pair of brackets.
    3. In the end, if and only if we have empty stack, we have valid string.
    Complexity: time complexity is O(n): we put and pop each element of string ...

  • Answered by CodingNinjas
  • Q2. Check if a linked list is palindrome

    You are given a singly Linked List of integers. Your task is to return true if the given singly linked list is a palindrome otherwise returns false.

    For example:
    The ...
  • Ans. 

    A simple approach could be to use a stack. Traverse the given list and push all the nodes to a stack. Now, Traverse the list again. For every visited node, pop the topmost node from the stack and compare data of popped node with the currently visited node. If all nodes match, then the linked list is a palindrome. 
    Time Complexity : O(N) 
    Auxiliary Space : O(N)


    A better approach would be to reverse the second hal...

  • Answered by CodingNinjas
Round 2 - Face to Face 

(4 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. Puzzle

    There are 25 horses among which you need to find out the fastest 3 horses. You can conduct race among at most 5 to find out their relative speed. At no point you can find out the actual speed of the ...

  • Ans. 

    Make group of 5 horses and run 5 races. Suppose five groups are a,b,c,d,e and next alphabet is its individual rank in tis group(of 5 horses).for eg. d3 means horse in group d and has rank 3rd in his group. [ 5 RACES DONE ] 
    a1 b1 c1 d1 e1 
    a2 b2 c2 d2 e2 
    a3 b3 c3 d3 e3 
    a4 b4 c4 d4 e4 
    a5 b5 c5 d5 e5 

    Now make a race of (a1,b1,c1,d1,e1).[RACE 6 DONE] suppose result is a1>b1>c1>d1>e1...

  • Answered by CodingNinjas
  • Q2. OOPS Question

    What is a virtual function?

  • Ans. 

    A C++ virtual function is a member function in the base class that you redefine in a derived class. It is declared using the virtual keyword. It is used to tell the compiler to perform dynamic linkage or late binding on the function. A 'virtual' is a keyword preceding the normal declaration of a function. When the function is made virtual, C++ determines which function is to be invoked at the runtime based on the type

  • Answered by CodingNinjas
  • Q3. Level order traversal in spiral form

    Level order traversal in spiral form

  • Ans. 

    To print the nodes in spiral order, nodes at different levels should be printed in alternating order. An additional Boolean variable ltr is used to change printing order of levels. If ltr is 1 then printGivenLevel() prints nodes from left to right else from right to left. Value of ltr is flipped in each iteration to change the order.

     

    Function to print level order traversal of tree : 

     

    printSpiral(tree)
    	...
  • Answered by CodingNinjas
  • Q4. OOPS Question

    What are abstract classes in C++?

  • Ans. 

    An abstract class in C++ is a class that has at least one pure virtual function (i.e., a function that has no definition). The classes inheriting the abstract class must provide a definition for the pure virtual function; otherwise, the subclass would become an abstract class itself. Abstract classes are essential to providing an abstraction to the code to make it reusable and extendable.

  • Answered by CodingNinjas
Round 3 - Face to Face 

(8 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. Puzzle

    Given two candles. Each of them burns for one hour. They burn unevenly in different parts though. In addition, let’s have a box of matches. Measure 45 minutes and 15 minutes.

  • Ans. 

    Step1: Both ends of the first candle should be lit, but only one end of the second candle should be lit. After the first candle has burned fully in 30 minutes, the remaining time is 30 minutes to burn the other candle with one end unburned.


    Step2: Now lit both the ends of the 30-min(remaining) length of candle 2, it will burn in 15 minutes. Now let’s have a look at the solution candle-wise.
    Candle1: The first candle is l...

  • Answered by CodingNinjas
  • Q2. DBMS Question

    Explain the ACID properties.

  • Ans. 

    Atomicity :
    By this, we mean that either the entire transaction takes place at once or doesn’t happen at all. There is no midway i.e. transactions do not occur partially. Each transaction is considered as one unit and either runs to completion or is not executed at all. It involves the following two operations. 
    —Abort: If a transaction aborts, changes made to database are not visible. 
    —Commit: If a transaction...

  • Answered by CodingNinjas
  • Q3. Operating System Question

    What is Paging and Segmentation?

  • Ans. 

    Paging is a method or techniques which is used for non-contiguous memory allocation. It is a fixed size partitioning theme (scheme). In paging, both main memory and secondary memory are divided into equal fixed size partitions. The partitions of secondary memory area unit and main memory area unit known as as pages and frames respectively.

    Segmentation is another non-contiguous memory allocation scheme like paging. like...

  • Answered by CodingNinjas
  • Q4. DBMS Question

    What is concurrency control?

  • Ans. 

    Concurrency Control: The process of managing the simultaneous execution of transactions in a shared database, is known as concurrency control. Basically, concurrency control ensures that correct results for concurrent operations are generated, while getting those results as quickly as possible.

  • Answered by CodingNinjas
  • Q5. Java Question

    Difference between String Buffer and String Builder

  • Ans. 

    1. StringBuffer is synchronized i.e. thread safe. It means two threads can't call the methods of StringBuffer simultaneously. StringBuilder is non-synchronized i.e. not thread safe. It means two threads can call the methods of StringBuilder simultaneously.


    2) StringBuffer is less efficient than StringBuilder. StringBuilder is more efficient than StringBuffer.
     

    3) StringBuffer was introduced in Java 1.0. StringBuilde

  • Answered by CodingNinjas
  • Q6. C++ Question

    What are smart pointers?

  • Ans. 

    A Smart Pointer is a wrapper class over a pointer with an operator like * and -> overloaded. The objects of the smart pointer class look like normal pointers. But, unlike Normal Pointers it can deallocate and free destroyed object memory. The idea is to take a class with a pointer, destructor and overloaded operators like * and ->. Since the destructor is automatically called when an object goes out of scope, the...

  • Answered by CodingNinjas
  • Q7. Puzzle

    A shop sells chocolates @ Re.1 each. You can exchange 3 wrappers for 1 chocolate. If you have Rs.15/- how many chocolates can you get totally?

  • Ans. 

    For 15 rupees you get 15 chocolates.
    On returning 15 wrappers you get 5 chocolates.
    On returning 3 wrappers (keeping two wrappers in hand) you get 1 chocolate.
    Now this one chocolate. wrapper and the twp wrapers you had will add on three.
    Atlast on returning 3 wrappers you get 1 chocolate.
    i.e., 15+5+1+1 = 22 chocolates.

  • Answered by CodingNinjas
  • Q8. Operating System Question

    Difference between Mutex and Semaphore

  • Ans. 

    1. Mutex uses a locking mechanism i.e. if a process wants to use a resource then it locks the resource, uses it and then release it. But on the other hand, semaphore uses a signalling mechanism where wait() and signal() methods are used to show if a process is releasing a resource or taking a resource.


    2. A mutex is an object but semaphore is an integer variable.
     

    3. In semaphore, we have wait() and signal() functio...

  • Answered by CodingNinjas

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)

 System Analyst

 (1)

 Associate 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.

People are getting interviews through

based on 1 Yodlee interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Yodlee Software Engineer Salary
based on 241 salaries
₹4.8 L/yr - ₹13 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 & Benefits

3.4

Job Security

3.5

Company culture

3.0

Promotions/Appraisal

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
241 salaries
unlock blur

₹4.8 L/yr - ₹13 L/yr

Member Technical Staff
129 salaries
unlock blur

₹11 L/yr - ₹30.1 L/yr

Senior Member of Technical Staff
72 salaries
unlock blur

₹17.5 L/yr - ₹40 L/yr

Data Analyst
47 salaries
unlock blur

₹3 L/yr - ₹9.5 L/yr

Explore more salaries
Compare Yodlee with

Intuit

3.6
Compare

Mphasis

3.4
Compare

Nucleus Software Exports

3.5
Compare

Intellect Design Arena

4.1
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