Upload Button Icon Add office photos

Filter interviews by

Yodlee Interview Questions and Answers

Updated 14 Jul 2024
Popular Designations

28 Interview questions

A System Analyst was asked
Q. How do you retrieve the roll numbers of students enrolled in the same subjects?
Ans. 

To get roll numbers of same subjects, filter the data by subject and extract roll numbers.

  • Filter the data by subject using a loop or filter function

  • Extract roll numbers of filtered data using map or forEach function

  • Store the roll numbers in an array of strings

View all System Analyst interview questions
A System Analyst was asked
Q. How do you calculate the average of marks in Excel?
Ans. 

To get the average of marks in Excel, use the AVERAGE function.

  • Select the range of cells containing the marks

  • Type =AVERAGE(

  • Select the range of cells again

  • Close the parentheses and press Enter

  • The average of the marks will be displayed

View all System Analyst interview questions
A Business Analyst was asked
Q. Can you write basic SQL queries, like joins and where clauses?
Ans. 

Basic SQL queries involve using commands like SELECT, JOIN, and WHERE to retrieve and manipulate data from databases.

  • SELECT statement: Used to select data from a database. Example: SELECT * FROM employees;

  • WHERE clause: Filters records based on specified conditions. Example: SELECT * FROM employees WHERE age > 30;

  • JOIN operation: Combines rows from two or more tables based on a related column. Example: SELECT emp...

View all Business Analyst interview questions
A Data Analyst was asked
Q. Are you proficient with Excel and Excel macros?
Ans. 

Yes, I am proficient in Excel and Excel macros.

  • I have extensive experience in using Excel for data analysis and manipulation.

  • I am skilled in creating and modifying Excel macros to automate repetitive tasks.

  • I am familiar with advanced Excel functions such as VLOOKUP, PivotTables, and conditional formatting.

  • I have used Excel to create charts and graphs to visualize data.

  • I am comfortable working with large datasets i...

View all Data Analyst interview questions
A Software Engineer was asked
Q. Write a program for snake traversal of a 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

View all Software Engineer interview questions
A Software Engineer was asked
Q. Write code to check if a linked list is a palindrome 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

View all Software Engineer interview questions
A Software Engineer was asked
Q. Can you explain OOPS concepts like abstraction, encapsulation, inheritance, and polymorphism in detail and how they are implemented while programming?
Ans. 

OOP concepts like abstraction, encapsulation, inheritance, and polymorphism are fundamental to software design and implementation.

  • Abstraction: Hides complex implementation details, exposing only necessary features. Example: Abstract classes in Java.

  • Encapsulation: Bundles data and methods that operate on the data within a single unit (class). Example: Private variables in a class.

  • Inheritance: Allows a new class to ...

View all Software Engineer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. What are the requirements for creating an immutable class in Java?
Ans. 

Requirements for creating an immutable class in Java

  • Make the class final so it cannot be extended

  • Make all fields private and final

  • Do not provide setter methods, only getter methods

  • Ensure that mutable objects are not returned in getter methods

  • Override equals() and hashCode() methods for proper comparison

  • Consider making defensive copies of mutable fields in constructor or getter methods

View all Software Developer interview questions
A Software Developer was asked
Q. What is the difference between ClassNotFoundException and NoClassDefFoundError in Java?
Ans. 

ClassNotFoundException occurs when a class is not found during runtime, while NoClassDefFoundError occurs when a class was found during compilation but not during runtime.

  • ClassNotFoundException is a checked exception, while NoClassDefFoundError is an Error.

  • ClassNotFoundException occurs when a class is not found at runtime, usually due to a missing classpath or incorrect class name.

  • NoClassDefFoundError occurs when ...

View all Software Developer interview questions
A Software Developer was asked
Q. What is the difference between an Error and an Exception in Java?
Ans. 

Error is a serious issue that cannot be handled at runtime, while Exception is a recoverable issue that can be caught and handled.

  • Error is a subclass of Throwable and is usually caused by the environment or system, such as running out of memory or stack overflow.

  • Exception is also a subclass of Throwable but is caused by the application code, such as invalid input or file not found.

  • Errors are unchecked and are not ...

View all Software Developer interview questions

Yodlee Interview Experiences

17 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell Me about yourself and ice breaker questions
  • Q2. About Excel pivot table vlookup charts and SQL joins extraction questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Normal Behavioral questions
Round 3 - HR 

(1 Question)

  • Q1. About educational Background and usual HR questions
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
Round 1 - One-on-one 

(4 Questions)

  • Q1. How to get the average of marks in excel
  • Ans. 

    To get the average of marks in Excel, use the AVERAGE function.

    • Select the range of cells containing the marks

    • Type =AVERAGE(

    • Select the range of cells again

    • Close the parentheses and press Enter

    • The average of the marks will be displayed

  • Answered by AI
  • Q2. How to get the roll numbers of same subjects
  • Ans. 

    To get roll numbers of same subjects, filter the data by subject and extract roll numbers.

    • Filter the data by subject using a loop or filter function

    • Extract roll numbers of filtered data using map or forEach function

    • Store the roll numbers in an array of strings

  • Answered by AI
  • Q3. Puzzles: suppose you have 10 boxes and each boxes contain 100 tablets.
  • Q4. Puzzle: Measure a time of 45 minutes by burning 2 ropes each of which takes 30 min.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume and must have good presence of mind.

Skills evaluated in this interview

Round 1 - Aptitude Test 

Basic mathematical and logical reasoning questions

Round 2 - Group Discussion 

Share your knowledge about the given topic

Round 3 - Technical 

(1 Question)

  • Q1. Technical interview mainly they validate your knowledge of the subjects
Round 4 - HR 

(1 Question)

  • Q1. Will you be able to relocate ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and make sure your confident on what your saying

I appeared for an interview in Sep 2021.

Round 1 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

The round was technical round and it was held on google meet around 1 pm

  • Q1. 

    Maximum Sum Rectangle Problem

    Given an M x N matrix of integers ARR, your task is to identify the rectangle within the matrix that has the greatest sum of its elements.

    Input:

    The first line of input co...
  • Ans. 

    Find the rectangle with the maximum sum of elements in a given matrix.

    • Iterate through all possible rectangles within the matrix and calculate the sum of each rectangle.

    • Keep track of the maximum sum encountered so far.

    • Optimize the solution by using Kadane's algorithm for 1D array to find the maximum sum subarray in each row.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It was managerial round and took place around 3 pm

  • Q1. 

    Infix to Postfix Conversion

    You are provided with a string EXP which represents a valid infix expression. Your task is to convert this given infix expression into a postfix expression.

    Explanation:

    An i...

  • Ans. 

    Convert infix expression to postfix expression.

    • Use a stack to keep track of operators and operands.

    • Follow the rules of precedence for operators.

    • Handle parentheses by pushing them onto the stack.

    • Pop operators from the stack based on precedence.

    • Append operands and operators to the postfix expression.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Indian Institute of Technology Patna. I applied for the job as SDE - Intern in BangaloreEligibility criteria7 CGPA , Computer Science branchEnvestnet | Yodlee India interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, C++, Java, Object Oriented Programming, PointersTime required to prepare for the interview - 0.5 MonthsInterview preparation tips for other job seekers

Tip 1 : Java concepts should be strong
Tip 2 : OOPS
Tip 3 : Projects should have scalability

Application resume tips for other job seekers

Tip 1 : Projects detail should be short and precise
Tip 2 : Don't fake technical skills

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Oct 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Scenario based questions
  • Q2. Linux basic commands
Round 2 - Technical 

(1 Question)

  • Q1. Linux troubleshooting questions
Round 3 - HR 

(3 Questions)

  • Q1. Why are you looking for a change?
  • Q2. What are your strengths and weaknesses?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand the job roles and responsibilities and technology they will be working on on day to day. Deep understanding of linux is required.

Interview Questionnaire 

2 Questions

  • Q1. Basic sql queries, like joins, where etc?
  • Ans. 

    Basic SQL queries involve using commands like SELECT, JOIN, and WHERE to retrieve and manipulate data from databases.

    • SELECT statement: Used to select data from a database. Example: SELECT * FROM employees;

    • WHERE clause: Filters records based on specified conditions. Example: SELECT * FROM employees WHERE age > 30;

    • JOIN operation: Combines rows from two or more tables based on a related column. Example: SELECT employee...

  • Answered by AI
  • Q2. They might ask you technical questions related to basic sql

Interview Preparation Tips

Interview preparation tips for other job seekers - It will be a chill interview

I applied via LinkedIn and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Its pretty straight forward with respect to the position I applied. First round was all about basics and they ask most of the questions from the resume and from previous experience. Second round most of th...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be loyal and confident with what you know and make sure you show interest towards the role you apply for.

Right attitude is highly appreciated here

Data Analyst Interview Questions & Answers

user image Anonymous

posted on 8 Mar 2021

Interview Questionnaire 

3 Questions

  • Q1. Proficiency with excel and excel macros ??
  • Ans. 

    Yes, I am proficient in Excel and Excel macros.

    • I have extensive experience in using Excel for data analysis and manipulation.

    • I am skilled in creating and modifying Excel macros to automate repetitive tasks.

    • I am familiar with advanced Excel functions such as VLOOKUP, PivotTables, and conditional formatting.

    • I have used Excel to create charts and graphs to visualize data.

    • I am comfortable working with large datasets in Exc...

  • Answered by AI
  • Q2. What projects had done ??
  • Q3. Previous work details

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (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 Yodlee?
Ask anonymously on communities.

Yodlee Interview FAQs

How many rounds are there in Yodlee interview?
Yodlee interview process usually has 2-3 rounds. The most common rounds in the Yodlee interview process are One-on-one Round, HR and Coding Test.
How to prepare for Yodlee 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 Python, SQL, Java, Javascript and AWS.
What are the top questions asked in Yodlee interview?

Some of the top questions asked at the Yodlee interview -

  1. asked about OOPS concepts like abstraction, encapsulation, inheritance and poly...read more
  2. to write code to check linked list is palindrome or not, in a single traversal ...read more
  3. write a program for snake traversal of binary t...read more
What are the most common questions asked in Yodlee HR round?

The most common HR questions asked in Yodlee interview are -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. Tell me about yourse...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.4/5

based on 5 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Mobileum Interview Questions
3.3
 • 38 Interviews
SOTI Interview Questions
3.2
 • 24 Interviews
Backbase Interview Questions
3.7
 • 23 Interviews
FinThrive Interview Questions
3.7
 • 21 Interviews
Bentley Systems Interview Questions
4.3
 • 21 Interviews
3Pillar Global Interview Questions
3.2
 • 20 Interviews
Bottomline Interview Questions
3.4
 • 20 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
View all

Yodlee Reviews and Ratings

based on 258 reviews

3.9/5

Rating in categories

3.2

Skill development

3.9

Work-life balance

3.8

Salary

3.4

Job security

3.9

Company culture

3.4

Promotions

3.2

Work satisfaction

Explore 258 Reviews and Ratings
Associate Consultant - Product Development

Thiruvananthapuram

2-5 Yrs

Not Disclosed

Lead - Business System Analysis

Thiruvananthapuram

5-10 Yrs

Not Disclosed

Associate Consultant - Product Development

Thiruvananthapuram

9-14 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
234 salaries
unlock blur

₹11.3 L/yr - ₹19.9 L/yr

Software Engineer
177 salaries
unlock blur

₹4.8 L/yr - ₹11 L/yr

Member Technical Staff
135 salaries
unlock blur

₹15.8 L/yr - ₹29 L/yr

Senior Member of Technical Staff
65 salaries
unlock blur

₹22 L/yr - ₹38 L/yr

Data Analyst
39 salaries
unlock blur

₹3.7 L/yr - ₹7.9 L/yr

Explore more salaries
Compare Yodlee with

Intuit

3.4
Compare

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare

Mobileum

3.3
Compare
write
Share an Interview