Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ernst & Young Team. If you also belong to the team, you can get access from here

Ernst & Young Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Ernst & Young Microsoft Dynamics CRM Developer Interview Questions and Answers

Updated 14 Oct 2024

Ernst & Young Microsoft Dynamics CRM Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
No response
Round 1 - Technical 

(3 Questions)

  • Q1. Write a code with JS(scenario is auto populate the fields when we select lookup field)
  • Ans. 

    Auto-populate fields in Dynamics CRM using JavaScript when a lookup field is selected.

    • Use the 'onChange' event of the lookup field to trigger the auto-population.

    • Retrieve the selected record's data using the Xrm.WebApi.retrieveRecord method.

    • Set the values of the target fields using the formContext.getAttribute('fieldname').setValue() method.

    • Example: If 'account' is the lookup, use 'accountId' to fetch related fields li...

  • Answered by AI
  • Q2. Explain plugin pipeline
  • Ans. 

    Plugin pipeline is a sequence of events that occur when a plugin is executed in Microsoft Dynamics CRM.

    • Plugin pipeline consists of stages and steps that define the order of execution for plugins.

    • Stages include pre-validation, pre-operation, main operation, and post-operation.

    • Each stage contains multiple steps where plugins can be registered to execute.

    • Plugins can be synchronous or asynchronous, depending on the stage t...

  • Answered by AI
  • Q3. Business rule is applicable for editable grid
  • Ans. 

    Business rules can enhance editable grids in Dynamics CRM by enforcing logic and validation on data entries.

    • Business rules can be applied to editable grids to enforce data validation, such as ensuring required fields are filled.

    • For example, a business rule can prevent saving a record if a 'Status' field is set to 'Inactive'.

    • You can use business rules to show or hide fields based on the values in other fields within the...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic OOPS concepts?
  • Ans. 

    OOP is a programming paradigm based on objects, encapsulating data and behavior for modular and reusable code.

    • Encapsulation: Bundling data and methods that operate on the data within one unit (e.g., a class).

    • Inheritance: Mechanism to create a new class using properties and methods of an existing class (e.g., a 'Dog' class inheriting from an 'Animal' class).

    • Polymorphism: Ability to present the same interface for differe...

  • Answered by AI
  • Q2. Logical Coding like remove duplicates from array

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your basic OOPS concepts

Microsoft Dynamics CRM Developer Interview Questions Asked at Other Companies

Q1. Write JavaScript code to auto-populate fields when a lookup field ... read more
asked in Accenture
Q2. How would you integrate a canvas app into a model-driven app?
asked in Accenture
Q3. In which scenario would you suggest using a Business Rule versus ... read more
asked in Accenture
Q4. What alternatives to plugins or JavaScript would you suggest?
asked in Accenture
Q5. What are Azure Functions and how are they utilized?

I applied via Company Website and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How do you handle downtime

Interview Preparation Tips

Interview preparation tips for other job seekers - Because confident and prepare well for versant test

I applied via Naukri.com and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What synchronous and asynchronous means??
  • Ans. 

    Synchronous operations block execution until completion, while asynchronous operations allow other tasks to run concurrently.

    • Synchronous operations wait for a task to complete before moving to the next one. Example: A function that reads a file and returns its content.

    • Asynchronous operations allow other tasks to run while waiting for a task to complete. Example: A web request that fetches data without blocking the UI.

    • S...

  • Answered by AI
  • Q2. When to use CTE and temp table.

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand question first and answer.

What people are saying about Ernst & Young

View All
a business analyst
1w
EY or not EY? Help me decide!
I'm a Business Analyst with 3+ years of experience. I resigned in May and have 3 offers, including one from EY India. I cleared 4 interview rounds (2 offline, 2 online), and the client interview went well. I got a Senior Consultant role, and working for a Big 4 was my goal, but now I'm second-guessing it because: - The pay is 20% less than my other offers (including variable). - It's 5 days WFO, no exceptions. My other offer is tempting but lacks the brand value: - It's 60% higher (all fixed). - It's a hybrid model. What do you guys think? All advice is welcome!
Got a question about Ernst & Young?
Ask anonymously on communities.

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Assignment 

Cofing round on hackerearth

Round 2 - Case Study 

Case study with algo and db design

Interview Preparation Tips

Interview preparation tips for other job seekers - Great technology, poor worklife balance

I applied via Campus Placement and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. SQL Queries
  • Q2. OOPS Concepts
  • Q3. Program to calculate factorial
  • Q4. Projects- Major , Minor , Internship

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, should have good communication skills.

Skills evaluated in this interview

Ernst & Young HR Interview Questions

232 questions and answers

Q. How long was your undergraduate program?
Q. What is your name?
Q. What does work-life balance mean to you?

I applied via Walk-in and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQs ques related to dbms,os ,oops

Round 2 - Coding Test 

2 coding question on basic dsa and arrays and 2 SQL queries

Interview Preparation Tips

Topics to prepare for ZS Software Engineer interview:
  • dsa
  • sql
  • arrays
  • trees
Interview preparation tips for other job seekers - Prepare DSA and sql well if u want to get selected
Are these interview questions helpful?

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This test consists of two coding questions and some MCQ regarding computer fundamentals.

  • Q1. 

    Kevin and His Cards Problem Statement

    Kevin has two packs of cards. The first pack contains N cards, and the second contains M cards. Each card has an integer written on it. Determine two results: the tot...

  • Ans. 

    Find total distinct card types and common card types between two packs of cards.

    • Create a set to store distinct card types when combining both packs.

    • Iterate through each pack and add card types to the set.

    • Find the intersection of card types between the two packs to get common card types.

  • Answered by AI
  • Q2. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through all possible allocations of books to students.

    • Calculate the maximum number of pages assigned to a student for each allocation.

    • Return the minimum of these maximums as the result.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 40 minutes
Round difficulty - Easy

It was a technical round that is based on DSA and computer fundamentals.

  • Q1. 

    Reverse Linked List Problem Statement

    Given a singly linked list of integers, return the head of the reversed linked list.

    Example:

    Initial linked list: 1 -> 2 -> 3 -> 4 -> NULL
    Reversed link...
  • Ans. 

    Reverse a singly linked list of integers and return the head of the reversed linked list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers - prev, current, and next to reverse the linked list in O(N) time and O(1) space complexity.

    • Update the head of the reversed linked list as the last node encountered during the reversal process.

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an array of 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of 0s, 1s, and 2s while traversing the array.

    • Swap elements based on the values encountered to sort the array in-place.

    • Time complexity should be O(N) and space complexity should be O(1).

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in PuneEligibility criteria10- above 60% 12- ABove 60 percentZS Associates interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, DBMS, OOPS, Operating System , System DesignTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : If you are not able to complete something in-depth, clearly mention that to the interviewer.
Tip 2 : Practice DSA well.
Tip 3 : Try to think analytically and more logically,Your thinking skills matters a lot.

Application resume tips for other job seekers

Tip 1 : Try to mention max no of projects
Tip 2 : DO not fake in your resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Reverse a LL, Git use cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself

Interview Questionnaire 

1 Question

  • Q1. Scenario based question on Relationship, Role, OWD,

Ernst & Young Interview FAQs

How many rounds are there in Ernst & Young Microsoft Dynamics CRM Developer interview?
Ernst & Young interview process usually has 1 rounds. The most common rounds in the Ernst & Young interview process are Technical.
How to prepare for Ernst & Young Microsoft Dynamics CRM Developer 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 Ernst & Young. The most common topics and skills that interviewers at Ernst & Young expect are Media Management, Testing and dedicated.
What are the top questions asked in Ernst & Young Microsoft Dynamics CRM Developer interview?

Some of the top questions asked at the Ernst & Young Microsoft Dynamics CRM Developer interview -

  1. Write a code with JS(scenario is auto populate the fields when we select lookup...read more
  2. Business rule is applicable for editable g...read more
  3. Explain plugin pipel...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%
View more
Ernst & Young Microsoft Dynamics CRM Developer Salary
based on 4 salaries
₹9 L/yr - ₹14 L/yr
49% more than the average Microsoft Dynamics CRM Developer Salary in India
View more details
Senior Consultant
19.9k salaries
unlock blur

₹15 L/yr - ₹27 L/yr

Consultant
13.6k salaries
unlock blur

₹10 L/yr - ₹18.2 L/yr

Manager
8.3k salaries
unlock blur

₹23 L/yr - ₹40 L/yr

Assistant Manager
6.9k salaries
unlock blur

₹14.3 L/yr - ₹25.5 L/yr

Associate Consultant
4.4k salaries
unlock blur

₹5.2 L/yr - ₹12 L/yr

Explore more salaries
Compare Ernst & Young with

Deloitte

3.7
Compare

PwC

3.3
Compare

EY Global Delivery Services ( EY GDS)

3.5
Compare

Accenture

3.7
Compare
write
Share an Interview