Upload Button Icon Add office photos

Ellie Mae

Compare button icon Compare button icon Compare

Filter interviews by

Ellie Mae Interview Questions and Answers

Updated 16 Dec 2021
Popular Designations

8 Interview questions

A Senior Software Engineer was asked
Q. Explain hoisting in JavaScript.
Ans. 

Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

  • Hoisting applies to variable and function declarations, but not to variable assignments

  • Function declarations are hoisted before variable declarations

  • Hoisting can lead to unexpected behavior and should be avoided

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Given a sorted array, find a given element in the shortest possible time.
Ans. 

Use binary search algorithm to find the given element in a sorted array.

  • Start with the middle element of the array.

  • If the middle element is equal to the given element, return its index.

  • If the middle element is greater than the given element, search in the left half of the array.

  • If the middle element is smaller than the given element, search in the right half of the array.

  • Repeat the process until the element is fou...

View all Senior Software Engineer interview questions
A Software Engineer was asked
Q. Explain Web API.
Ans. 

WebAPI is a set of protocols and tools for building web applications and services.

  • WebAPI allows communication between different software systems over the internet.

  • It uses HTTP requests and responses to exchange data.

  • WebAPIs can be used to retrieve data, update data, or perform other operations.

  • Examples of WebAPIs include the Twitter API, the Google Maps API, and the Facebook Graph API.

View all Software Engineer interview questions
A Software Engineer was asked
Q. Explain the difference between PUT and PATCH requests.
Ans. 

Put and Patch are HTTP methods used to update resources. Put replaces the entire resource while Patch updates only the specified fields.

  • Put is used to completely replace an existing resource with a new one

  • Patch is used to update only the specified fields of an existing resource

  • Put requires the entire resource to be sent in the request body

  • Patch requires only the fields to be updated to be sent in the request body

View all Software Engineer interview questions
A Software Engineer was asked
Q. Explain memory management in .NET.
Ans. 

Memory management in .NET involves automatic garbage collection and allocation of memory for objects.

  • Garbage collector automatically frees memory for objects that are no longer in use

  • Memory allocation is done by the Common Language Runtime (CLR)

  • CLR uses a heap to allocate memory for objects

  • Memory leaks can occur if objects are not properly disposed of

  • Managed code is protected from buffer overflows and other memory...

View all Software Engineer interview questions
A Software Engineer was asked
Q. Explain the Liskov Substitution Principle in SOLID.
Ans. 

L stands for Liskov Substitution Principle in SOLID

  • Liskov Substitution Principle states that objects of a superclass should be able to be replaced with objects of its subclass without affecting the correctness of the program

  • This principle ensures that the behavior of the program remains consistent when new classes are added

  • Violating this principle can lead to unexpected behavior and bugs in the program

View all Software Engineer interview questions
A Software Engineer was asked
Q. Explain parallel programming in C#.
Ans. 

Parallel programming in C# allows multiple tasks to be executed simultaneously for improved performance.

  • Parallel programming can be achieved using the Task Parallel Library (TPL) in C#.

  • TPL provides constructs like Parallel.For and Parallel.ForEach to execute loops in parallel.

  • Parallel.Invoke can be used to execute multiple methods in parallel.

  • Data parallelism can be achieved using PLINQ (Parallel LINQ) to execute ...

View all Software Engineer interview questions
Are these interview questions helpful?
A Senior Software Engineer was asked
Q. Specificity in CSS, pseudo selectors
Ans. 

Specificity in CSS refers to the priority given to different CSS rules when multiple rules apply to the same element.

  • Specificity is determined by the number of ID, class, and element selectors in a rule

  • Pseudo selectors like :hover and :active can also affect specificity

  • Using !important can override specificity, but should be used sparingly

  • Understanding specificity is important for avoiding unexpected styling confl...

View all Senior Software Engineer interview questions

Ellie Mae Interview Experiences

4 interviews found

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

Interview Questionnaire 

4 Questions

  • Q1. Given a sorted array, find a given element in shortest possible time
  • Ans. 

    Use binary search algorithm to find the given element in a sorted array.

    • Start with the middle element of the array.

    • If the middle element is equal to the given element, return its index.

    • If the middle element is greater than the given element, search in the left half of the array.

    • If the middle element is smaller than the given element, search in the right half of the array.

    • Repeat the process until the element is found or...

  • Answered by AI
  • Q2. Closures, Promises, Callback
  • Q3. Hoisting in JavaScript
  • Ans. 

    Hoisting is a JavaScript mechanism where variables and function declarations are moved to the top of their scope.

    • Hoisting applies to variable and function declarations, but not to variable assignments

    • Function declarations are hoisted before variable declarations

    • Hoisting can lead to unexpected behavior and should be avoided

  • Answered by AI
  • Q4. Specificity in CSS, pseudo selectors
  • Ans. 

    Specificity in CSS refers to the priority given to different CSS rules when multiple rules apply to the same element.

    • Specificity is determined by the number of ID, class, and element selectors in a rule

    • Pseudo selectors like :hover and :active can also affect specificity

    • Using !important can override specificity, but should be used sparingly

    • Understanding specificity is important for avoiding unexpected styling conflicts

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - HR will low ball you. Even though salary expectation are confirmed before technical discussion, they will low ball you in HR round. Also they will offer you one level below designation than your experience. Even when you point this, they will argue that nothing can't be done. But as soon as you say no to opportunity, they will agree for it as favour.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Explain memory management in dotnet
  • Ans. 

    Memory management in .NET involves automatic garbage collection and allocation of memory for objects.

    • Garbage collector automatically frees memory for objects that are no longer in use

    • Memory allocation is done by the Common Language Runtime (CLR)

    • CLR uses a heap to allocate memory for objects

    • Memory leaks can occur if objects are not properly disposed of

    • Managed code is protected from buffer overflows and other memory-rela...

  • Answered by AI
  • Q2. Explain webAPI
  • Ans. 

    WebAPI is a set of protocols and tools for building web applications and services.

    • WebAPI allows communication between different software systems over the internet.

    • It uses HTTP requests and responses to exchange data.

    • WebAPIs can be used to retrieve data, update data, or perform other operations.

    • Examples of WebAPIs include the Twitter API, the Google Maps API, and the Facebook Graph API.

  • Answered by AI
  • Q3. Explain put vs patch
  • Ans. 

    Put and Patch are HTTP methods used to update resources. Put replaces the entire resource while Patch updates only the specified fields.

    • Put is used to completely replace an existing resource with a new one

    • Patch is used to update only the specified fields of an existing resource

    • Put requires the entire resource to be sent in the request body

    • Patch requires only the fields to be updated to be sent in the request body

  • Answered by AI
  • Q4. Explain L in SOLID
  • Ans. 

    L stands for Liskov Substitution Principle in SOLID

    • Liskov Substitution Principle states that objects of a superclass should be able to be replaced with objects of its subclass without affecting the correctness of the program

    • This principle ensures that the behavior of the program remains consistent when new classes are added

    • Violating this principle can lead to unexpected behavior and bugs in the program

  • Answered by AI
  • Q5. Explain parallel programming in csharp
  • Ans. 

    Parallel programming in C# allows multiple tasks to be executed simultaneously for improved performance.

    • Parallel programming can be achieved using the Task Parallel Library (TPL) in C#.

    • TPL provides constructs like Parallel.For and Parallel.ForEach to execute loops in parallel.

    • Parallel.Invoke can be used to execute multiple methods in parallel.

    • Data parallelism can be achieved using PLINQ (Parallel LINQ) to execute LINQ ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are going for dotnet interview look at OOP concept ,SOLID principle, Singleton vs static, MVC features ,webAPI ,swagger,microservices knoledge,practice programming to show problem solving skills, prepare on LINQ ,focus on dotnet part than db.
Good luck!

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. API specifications

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t schedule for an interview with Ellie Mae. They will schedule all of the interviews at odd times and finally they will put you on hold. It has happened with me and many of my friends that after 5-6 rounds of interview they put profile on hold and will never get back to you. I have a feeling that they are just trying to create a name for themselves in market and they don’t have any actual positions open with them.
Hope it will save lot of time for you and will save you from unwanted tension.

I applied via Naukri.com and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Self introduction and previous job experience

Interview Preparation Tips

Interview preparation tips for other job seekers - You have good self confidence and communication skills definitely get this job

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Ellie Mae?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Technical
  • Q2. Be yourself

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What are different types of cloud?
  • Q2. What is workflow,trigger, different types of reports, roles, profiles, permission set, sharing rules etc?
  • Ans. 

    Workflow, trigger, reports, roles, profiles, permission set, and sharing rules are all important features in Salesforce.

    • Workflow is a series of automated steps that can be used to streamline business processes.

    • Triggers are used to execute code before or after a record is inserted, updated, or deleted.

    • Reports are used to display data in a visual format, such as a table or chart.

    • Roles are used to define the hierarchy of ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Google the question related to your topic and also become 100% prepared with your resume.

Skills evaluated in this interview

I appeared for an interview before Jul 2020.

Interview Questionnaire 

1 Question

  • Q1. Is Infosys listed?
  • Ans. 

    Yes, Infosys is listed on the Indian stock exchanges as well as on the NYSE.

    • Infosys is listed on the Bombay Stock Exchange (BSE) and National Stock Exchange of India (NSE)

    • It is also listed on the New York Stock Exchange (NYSE)

    • Infosys has a market capitalization of over $80 billion as of 2021

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in advance
Are these interview questions helpful?

I applied via Job Fair and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. Basic accounting methods and journals

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident About what you are saying

I applied via Naukri.com and was interviewed in Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why are you looking for the job change?
  • Ans. 

    I'm seeking new challenges and opportunities for growth that align with my career goals and aspirations.

    • Desire for professional growth: I'm looking to expand my skill set and take on more leadership responsibilities.

    • Seeking a better cultural fit: My current company has a different work culture than what I thrive in; I value collaboration and innovation.

    • Interest in new technologies: I'm excited about working with cuttin...

  • Answered by AI
  • Q2. Relevant technical questions, as per my current technology

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and be yourself. That's what the interviewers looked into. Also a thorough understanding of the technology is a must and that is what will help you in cracking the interview. You don't have to go in-depth, just the overview and what happens when is what they look for. Good communication skills is also an added incentive, something I always try to work on. All the best

I applied via Approached by Company and was interviewed before May 2018. There were 6 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. This is face to face interview... They are observing our behaviour... Attitude... Etc
  • Q2. Introduce u r self....
  • Ans. 

    I am a dedicated and hardworking individual with a passion for learning and growth.

    • I have a Bachelor's degree in Business Administration from XYZ University.

    • I have 3 years of experience working in marketing and sales roles.

    • I am proficient in Microsoft Office Suite and have strong communication skills.

    • I am a team player and enjoy collaborating with others to achieve common goals.

  • Answered by AI
  • Q3. U r carrier objections
  • Ans. 

    My career objectives focus on continuous growth, contributing to team success, and making a positive impact in my field.

    • Aim to develop expertise in my field, such as becoming a certified project manager.

    • Seek leadership opportunities to guide and mentor junior team members.

    • Aspire to work on innovative projects that challenge my skills and creativity.

    • Desire to contribute to a company's mission, like improving customer sa...

  • Answered by AI
  • Q4. About TCS
  • Q5. Why should u select TCS
  • Ans. 

    TCS is a global leader in IT services with a strong reputation for innovation and client satisfaction.

    • TCS has a proven track record of delivering high-quality services to clients worldwide.

    • TCS offers a wide range of opportunities for career growth and development.

    • TCS values diversity and inclusion, creating a supportive work environment for employees.

    • TCS invests in cutting-edge technologies and training programs to kee...

  • Answered by AI

Interview Preparation Tips

Round: Group Discussion
Experience: Any kind of topic u cn select... Sales, accounts, service

Round: Test
Experience: Aptitude test... Mathematic and problem solving... General knowledge is very important

Round: Telephonic
Experience: This is final round... BH directly interact with us...

General Tips: Be confident... Be clam.... Keep smiling face... That is the way to win
Skills: Communication, Body Language, Leadership, Presentation Skills, Time Management
Duration: <1 week

Ellie Mae Interview FAQs

How to prepare for Ellie Mae 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 Ellie Mae. The most common topics and skills that interviewers at Ellie Mae expect are Java, AWS, Web Technologies, Software Development and C#.
What are the top questions asked in Ellie Mae interview?

Some of the top questions asked at the Ellie Mae interview -

  1. Given a sorted array, find a given element in shortest possible t...read more
  2. Specificity in CSS, pseudo select...read more
  3. Explain memory management in dot...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.1k Interviews
HCLTech Interview Questions
3.5
 • 4.1k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
HCL Infosystems Interview Questions
3.9
 • 144 Interviews
View all

Ellie Mae Reviews and Ratings

based on 16 reviews

3.7/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

4.0

Salary

3.8

Job security

3.6

Company culture

3.7

Promotions

3.3

Work satisfaction

Explore 16 Reviews and Ratings
Document Processor
14 salaries
unlock blur

₹2.4 L/yr - ₹3.5 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹17 L/yr - ₹24 L/yr

Technical Support Analyst
6 salaries
unlock blur

₹9 L/yr - ₹10.9 L/yr

Software Engineer
4 salaries
unlock blur

₹6.6 L/yr - ₹10.7 L/yr

Accountant
4 salaries
unlock blur

₹6 L/yr - ₹7 L/yr

Explore more salaries
Compare Ellie Mae with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Capgemini

3.7
Compare
write
Share an Interview