Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by EY Global Delivery Services ( EY GDS) Team. If you also belong to the team, you can get access from here

EY Global Delivery Services ( EY GDS) Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

EY Global Delivery Services ( EY GDS) Salesforce Developer Interview Questions, Process, and Tips

Updated 1 Aug 2024

Top EY Global Delivery Services ( EY GDS) Salesforce Developer Interview Questions and Answers

  • Q1. How to convert Json data into string in LWC Can we do callouts from LWC? What is the precautions need to take care Before writing queaueable apex class? Have you worked o ...read more
  • Q2. What is the by default sharing method followed by apex code
  • Q3. How to bypass sharing rules via apex class
View all 6 questions

EY Global Delivery Services ( EY GDS) Salesforce Developer Interview Experiences

3 interviews found

Salesforce Developer Interview Questions & Answers

user image Aditya Dhulipala

posted on 13 May 2024

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

(3 Questions)

  • Q1. What is the by default sharing method followed by apex code
  • Ans. 

    Apex code follows the by default sharing method of 'with sharing'.

    • By default, Apex code enforces sharing rules that apply to the current user.

    • This means that the code runs in the user's context and respects their sharing settings.

    • Developers can also use 'without sharing' to bypass sharing rules if necessary.

  • Answered by AI
  • Q2. How to bypass sharing rules via apex class
  • Ans. 

    Bypassing sharing rules via apex class involves using 'without sharing' keyword in the class definition.

    • Use 'without sharing' keyword in the class definition to bypass sharing rules.

    • This keyword allows the apex class to ignore sharing rules and access all data regardless of the user's permissions.

  • Answered by AI
  • Q3. How to convert Json data into string in LWC Can we do callouts from LWC? What is the precautions need to take care Before writing queaueable apex class? Have you worked on platform events? How to communi...
  • Ans. 

    To convert Json data into string in LWC, use JSON.stringify() method.

    • Use JSON.stringify() method to convert Json data into string in LWC.

    • Yes, callouts can be made from LWC using imperative Apex.

    • Precautions before writing queueable Apex class include governor limits, bulkification, and error handling.

    • Platform events can be used for inter-component communication in LWC.

    • To communicate unrelated LWC components, use Lightni

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. What are types of flows
  • Ans. 

    Types of flows include autolaunched flows, screen flows, and scheduled flows.

    • Autolaunched flows are triggered by a process or record change

    • Screen flows guide users through a series of screens to collect information

    • Scheduled flows are triggered based on a schedule or time-based event

  • Answered by AI
  • Q2. What are types of table in report
  • Ans. 

    Types of tables in reports include summary tables, matrix tables, and joined tables.

    • Summary tables provide a high-level overview of data, often with subtotals and grand totals.

    • Matrix tables allow for data to be grouped and summarized in rows and columns.

    • Joined tables combine data from multiple sources or objects in a single report.

  • Answered by AI
  • Q3. What is skinny table
  • Ans. 

    Skinny table is a custom table in Salesforce that contains a subset of fields from standard and custom objects for performance optimization.

    • Skinny table is used to improve query performance by reducing the number of joins needed.

    • It contains frequently accessed fields from standard and custom objects.

    • Data in skinny tables is automatically synchronized with the source objects.

    • Skinny tables are read-only and cannot be dir

  • Answered by AI

Skills evaluated in this interview

Salesforce Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Write a trigger to update contact when accounts phone changed.
asked in Infosys
Q2. How do you make the child records read only of its parent record' ... read more
asked in TCS
Q3. Difference between Roles & Profiles, Difference between Workf ... read more
asked in Infosys
Q4. How do load both parent and child records at a time using data lo ... read more
asked in Infosys
Q5. How do you call a controllor method from javascript in visualforc ... read more

Salesforce Developer Interview Questions & Answers

user image Bhupesh Kumar Turkar

posted on 1 Aug 2024

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

(3 Questions)

  • Q1. Integration related
  • Q2. Trigger related
  • Q3. LWC use case related ques.

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

Interview Questionnaire 

2 Questions

  • Q1. They asked me on java and I have joined as a fresher they not much questions as I got selected as fresher on oops concepts and collections
  • Q2. Please be confident while facing interview and they will check your communication skills

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

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)

EY Global Delivery Services ( EY GDS) Interview FAQs

How many rounds are there in EY Global Delivery Services ( EY GDS) Salesforce Developer interview?
EY Global Delivery Services ( EY GDS) interview process usually has 1 rounds. The most common rounds in the EY Global Delivery Services ( EY GDS) interview process are Technical.
What are the top questions asked in EY Global Delivery Services ( EY GDS) Salesforce Developer interview?

Some of the top questions asked at the EY Global Delivery Services ( EY GDS) Salesforce Developer interview -

  1. How to convert Json data into string in LWC Can we do callouts from LWC? What ...read more
  2. What is the by default sharing method followed by apex c...read more
  3. How to bypass sharing rules via apex cl...read more

Tell us how to improve this page.

EY Global Delivery Services ( EY GDS) Salesforce Developer Interview Process

based on 3 interviews

1 Interview rounds

  • Technical Round
View more
EY Global Delivery Services ( EY GDS) Salesforce Developer Salary
based on 17 salaries
₹6 L/yr - ₹24.1 L/yr
95% more than the average Salesforce Developer Salary in India
View more details

EY Global Delivery Services ( EY GDS) Salesforce Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

3.0

Salary

5.0

Job security

5.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Consultant
3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
2.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
1.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
1.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
1.4k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare EY Global Delivery Services ( EY GDS) with

Ernst & Young

3.4
Compare

TCS

3.7
Compare

Accenture

3.8
Compare

Deloitte

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