Upload Button Icon Add office photos

Yodlee

Compare button icon Compare button icon Compare

Filter interviews by

Yodlee Software Developer Interview Questions, Process, and Tips

Updated 4 Apr 2022

Yodlee Software Developer Interview Experiences

1 interview found

I appeared for an interview before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

The second round is also written but you need to write programming based on their concept.

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q2. 

    Palindrome String Validation

    Determine if a given string 'S' is a palindrome, considering only alphanumeric characters and ignoring spaces and symbols.

    Note:
    The string 'S' should be evaluated in a case...
  • Ans. 

    Check if a given string is a palindrome after removing special characters, spaces, and converting to lowercase.

    • Remove special characters and spaces from the string

    • Convert the string to lowercase

    • Check if the modified string is a palindrome by comparing characters from start and end

  • Answered by AI
Round 2 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Technical round with questions mainly on Java and OOPS concepts.

  • Q1. What is the difference between static methods and instance methods in Java?
  • Ans. 

    Static methods belong to the class itself, while instance methods belong to individual objects of the class.

    • Static methods are called using the class name, while instance methods are called using object references.

    • Static methods cannot access instance variables directly, while instance methods can access both static and instance variables.

    • Static methods are shared among all instances of the class, while instance method...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface in Java?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, member variables, and methods with implementation.

    • Interface can only have abstract methods and constants.

    • A class can implement multiple interfaces but can only extend one abstract class.

    • Example: Abstract class - Animal with abstract method 'eat', Interface - Flyable with m

  • Answered by AI
  • Q3. 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 a cla...

  • Answered by AI
  • Q4. 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 meant...

  • Answered by AI
  • Q5. What is SerialVersionUID in Java?
  • Ans. 

    SerialVersionUID is a unique identifier used by Java to ensure the compatibility of serialized objects.

    • SerialVersionUID is a static final long variable in a class that implements Serializable interface.

    • It is used to ensure that the serialized object can be deserialized correctly even if the class definition has changed.

    • If the SerialVersionUID of the serialized object does not match the one in the class, an InvalidClass...

  • Answered by AI
  • Q6. 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

  • Answered by AI

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

Interview questions from similar companies

I appeared for an interview in Jun 2017.

Interview Questionnaire 

2 Questions

  • Q1. What is HTML, PHP and CSS
  • Ans. 

    HTML, PHP, and CSS are programming languages used for creating and designing websites.

    • HTML (Hypertext Markup Language) is used for creating the structure and content of web pages.

    • PHP (Hypertext Preprocessor) is a server-side scripting language used for creating dynamic web pages.

    • CSS (Cascading Style Sheets) is used for styling and formatting the layout of web pages.

    • Example: HTML is used to create headings, paragraphs, ...

  • Answered by AI
  • Q2. In my technical test, they asked me to replicate the privacy pages of Twitter and facebook.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I was referred to by a friend so this step was comparatively easier.
Tips: Resume should be straightforward and extra and incomplete information should be avoided.

Round: Technical + HR Interview
Experience: A formal face to face interview was conducted. They tested my past knowledge about concepts related to the functioning of their company. It was a smooth interview.
Tips: Be confident, and if you are not thorough with a particular topic, be straightforward and tell the interviewer. Honesty is the best policy to crack an interview.

Round: Client interview
Experience: In this round, a conference call was held between the client in US and me. I was expected to put my exisiting knowledge in to practice to solve the problem at hand.
Tips: Be clear and concise and communicate appropriately. At this stage, a proficiency in English language and a good command over it is a must. Even if you are nervous and sweating, don't EVER show it.

Skills: Technical Analysis, Communication

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Mostly on C language especially strings.Implement strcmp,strcat,strrev and structures and unions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush your knowledge on basics of C

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

Interview Questionnaire 

4 Questions

  • Q1. Core java concepts
  • Q2. Multithreading questions
  • Q3. Previous project details
  • Ans. 

    Developed a web application for managing customer orders and inventory

    • Used Java and Spring framework for backend development

    • Implemented a responsive user interface using HTML, CSS, and JavaScript

    • Integrated with a relational database for data storage and retrieval

    • Implemented authentication and authorization features for secure access

    • Performed unit testing and bug fixing throughout the development process

  • Answered by AI
  • Q4. Java Programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics and practice coding questions to increase performance and quality of code
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Reverse Linked List
Pallindrome of String

Round 2 - Group Discussion 

Flyover building in team with strength

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic technical question oops concept
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself?
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Campus Placement and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Coding Test 

Questions were high level

Interview Preparation Tips

Topics to prepare for SOTI Software Engineer interview:
  • array
  • Data Dictionary
  • tree
Interview preparation tips for other job seekers - before applying to soti you should have a good coding skill
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Coding Test 

There will be 3 coding questions given to us for solving,we need solve two questions compulsory.

Round 2 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

  • Answered by AI
  • Q2. Questions related to frontend

I applied via Company Website and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. OOPS concept, c# Keywords, Ref and Out, Abstract class interface, exception handling, throw vs throw ex
  • Q2. Store Procedure, Joins, Trigger, Jobs, Magic table, Nolock

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident, learn interview question with test cases

Tell us how to improve this page.

Yodlee Software Developer Salary
based on 32 salaries
₹4 L/yr - ₹11 L/yr
16% less than the average Software Developer Salary in India
View more details

Yodlee Software Developer Reviews and Ratings

based on 3 reviews

4.1/5

Rating in categories

3.6

Skill development

3.6

Work-life balance

3.6

Salary

3.6

Job security

3.6

Company culture

3.4

Promotions

3.6

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
243 salaries
unlock blur

₹7.3 L/yr - ₹22 L/yr

Software Engineer
212 salaries
unlock blur

₹4.8 L/yr - ₹13 L/yr

Member Technical Staff
130 salaries
unlock blur

₹11 L/yr - ₹30.1 L/yr

Senior Member of Technical Staff
68 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

Duck Creek Technologies

4.4
Compare

FinThrive

3.7
Compare

Mobileum

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