Upload Button Icon Add office photos
Premium Employer

i

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

NTT Data

Compare button icon Compare button icon Compare
3.9

based on 3.6k Reviews

Filter interviews by

NTT Data Senior Salesforce Developer Interview Questions and Answers

Updated 25 Aug 2024

NTT Data Senior Salesforce Developer Interview Experiences

3 interviews found

Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Inheritance in apex class?
  • Ans. 

    Inheritance in Apex class allows a class to inherit properties and methods from another class.

    • Inheritance is achieved using the 'extends' keyword in Apex.

    • Child classes can access all non-private members of the parent class.

    • Child classes can override methods from the parent class.

    • Example: Class B extends Class A.

  • Answered by AI
  • Q2. 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 tables are used to store frequently accessed fields in a denormalized form to improve query performance.

    • They are created by Salesforce automatically based on the fields accessed in reports, list views, and SOQL queries.

    • Skinny tables are read-only and are automatically update...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic salesforce concepts.
Round 2 - Technical 

(1 Question)

  • Q1. Scenarios based questions.
Round 3 - Behavioral 

(1 Question)

  • Q1. Technical check by MCQ

Senior Salesforce Developer Interview Questions Asked at Other Companies

asked in Infosys
Q1. What are best practices to write trigger? What are execution orde ... read more
Q2. Can an email message from a trigger be sent after logic gets into ... read more
Q3. Lightning requirement WRT mobile friendly design . How to show as ... read more
asked in TCS
Q4. What is difference between custom settings and custom metadata
asked in Capgemini
Q5. Write a trigger on Order Products. It should display the most num ... read more
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - Coding Test 

Questions related to Apex, Aura, visual force and integration

Senior Salesforce Developer Jobs at NTT Data

View all

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Job Portal and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(16 Questions)

  • Q1. Introduce yourself.
  • Q2. Explain your role in current project
  • Q3. Can we use multiple decorators in Lwc on a property? Answer is No
  • Q4. What are the decorators in Lwc and its uses?
  • Q5. What is promise and promiseAll?
  • Ans. 

    Promise is an object representing the eventual completion (or failure) of an asynchronous operation, and promiseAll is a method that takes an iterable of promises and returns a single Promise that resolves when all of the promises have resolved.

    • Promise is used in JavaScript to handle asynchronous operations.

    • It represents a value that may not be available yet, but will be resolved at some point in the future.

    • PromiseAll ...

  • Answered by AI
  • Q6. How connection is done from Mulesoft to Salesforce
  • Ans. 

    Connection from Mulesoft to Salesforce is done using Salesforce Connector in Mulesoft Anypoint Platform.

    • Use Salesforce Connector in Mulesoft Anypoint Platform to establish connection

    • Authenticate using Salesforce credentials (username, password, security token)

    • Utilize Salesforce APIs to interact with Salesforce data

  • Answered by AI
  • Q7. What is connected App, remote site settings and OAuth?
  • Ans. 

    Connected App, remote site settings, and OAuth are key components in Salesforce for enabling secure external access to Salesforce data and functionality.

    • Connected App is a framework that enables external applications to securely integrate with Salesforce using APIs.

    • Remote Site Settings allow Salesforce to make callouts to external services over HTTPS.

    • OAuth is an open standard for access delegation, commonly used in Sal...

  • Answered by AI
  • Q8. What are best practices in Trigger? And what are trigger events?
  • Ans. 

    Best practices in Trigger and trigger events

    • Best practices include bulkifying triggers, using helper classes, and limiting logic in triggers

    • Trigger events are before insert, before update, after insert, after update, etc.

    • Examples of trigger events include before insert, after update, etc.

  • Answered by AI
  • Q9. What is rollup summary field?
  • Ans. 

    Rollup summary field is a field in Salesforce that calculates values from related records and displays the result on a parent record.

    • Rollup summary fields are used to perform calculations on child records and display the result on a parent record.

    • They can be used to calculate the sum, count, minimum, or maximum of a field in related records.

    • For example, a rollup summary field can be used to calculate the total amount o...

  • Answered by AI
  • Q10. What is with and without sharing?
  • Ans. 

    With and without sharing in Salesforce determines whether sharing rules are enforced for a class.

    • With sharing keyword enforces sharing rules, restricting access to records based on the user's profile and organization-wide defaults.

    • Without sharing keyword does not enforce sharing rules, allowing full access to all records regardless of the user's profile or organization-wide defaults.

  • Answered by AI
  • Q11. Difference between Future and Queable Apex?
  • Ans. 

    Future is asynchronous and runs in a separate thread, while Queueable Apex runs in the same thread but can be queued for execution.

    • Future methods are used for executing code asynchronously, while Queueable Apex is used for chaining jobs and running them in a specific order.

    • Future methods have a limit of 50 per transaction, while Queueable Apex has a limit of 50 jobs in the queue per transaction.

    • Future methods cannot be...

  • Answered by AI
  • Q12. What type of parameters can be passed to Future?
  • Ans. 

    Future methods in Salesforce can accept primitive data types as parameters.

    • Primitive data types like Integer, String, Boolean, etc. can be passed as parameters to Future methods.

    • Non-primitive data types like custom objects or collections cannot be passed as parameters to Future methods.

    • Example: @future public static void myFutureMethod(Integer param1, String param2) { }

  • Answered by AI
  • Q13. How to pass subjects to future methods?
  • Ans. 

    To pass subjects to future methods, use the @future annotation in Apex.

    • Use the @future annotation before the method declaration to indicate that the method will run asynchronously in the future.

    • Pass the subject parameters to the @future method as arguments when calling the method.

    • Ensure that the subject parameters are serializable to be passed to future methods.

  • Answered by AI
  • Q14. What are the tools for deployment?
  • Ans. 

    Tools for deployment include Salesforce DX, Ant Migration Tool, Change Sets, and Metadata API.

    • Salesforce DX is a command-line interface for development and deployment

    • Ant Migration Tool is a Java/Ant-based tool for moving metadata between environments

    • Change Sets allow for moving configuration changes between orgs

    • Metadata API is a web service for managing metadata

  • Answered by AI
  • Q15. Write a trigger on contact to display the number of contact on Account.
  • Ans. 

    Create a trigger on Contact to display the number of contacts on the related Account.

    • Create an after insert, update, delete trigger on Contact object

    • Query for the count of contacts related to the Account

    • Update a custom field on the Account with the count of contacts

  • Answered by AI
  • Q16. Write a trigger on Account. if one or more contact is associated with Account then show error if user tries to delete the account
  • Ans. 

    Create a trigger on Account to prevent deletion if associated with one or more contacts

    • Create an after delete trigger on Account object

    • Query for related contacts using SOQL

    • If contacts are found, add an error message to prevent deletion

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Write lwc code for displaying Accounts with related contacts in a list
  • Ans. 

    Display Accounts with related contacts in a list using LWC code

    • Create a Lightning web component (LWC) to display the list

    • Use Apex to query for Accounts and their related Contacts

    • Iterate over the data to display Accounts and their related Contacts in the list

  • Answered by AI
  • Q2. Write a trigger on Order Products. It should display the most number of sold product type on the account. Eg: if most order products sold out of Tv, Ac and Fridge is Tv then update Tv as the most_sold_prod...
  • Ans. 

    Create a trigger on Order Products to display the most sold product type on the account

    • Create a trigger on Order Products object in Salesforce

    • Use SOQL query to count the number of each product type sold

    • Update the most_sold_product field on the Account object with the highest sold product type

  • Answered by AI
  • Q3. Write syntax for batch class
  • Ans. 

    Batch class syntax in Salesforce

    • Batch class must implement Database.Batchable interface

    • Define start, execute, and finish methods

    • Use Database.executeBatch method to execute the batch class

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - One quesion for sure will be on triggers so please practice Triggers.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - This was round1 

(2 Questions)

  • Q1. NA explained below
  • Q2. NA explained below1
Round 2 - One-on-one 

(2 Questions)

  • Q1. Project related questions
  • Q2. Flows, lwc, sharing, cdc, exp cloud

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 1: Sr Salesforce Developer
> Duration 45 minutes
Asked about the project I mentioned and what all clouds I have worked on.
Security model and related questions
Flows questions (scheduled flows, how can we monitor the progress, how to show LWC on screen flows, how to call an apex from flow )
Explained CDC as I said I have worked on it
Experience cloud basic questions
Expalained LWC lifecycle hook : when which hook get called.
Apex and Manual sharing, what is Rowcause in it.

Interviewer was friendly and overall experience was good
Got selected for the 2nd round
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal

Round 1 - Technical 

(3 Questions)

  • Q1. LWC, parent child communication
  • Q2. Asynchronous apex
  • Ans. 

    Asynchronous apex refers to code that runs in the background without user interaction.

    • Asynchronous apex is used for long-running processes that do not need to be completed immediately.

    • It allows for better performance by not blocking the user interface.

    • Examples include batch apex, future methods, and queueable apex.

  • Answered by AI
  • Q3. Apex integration

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What are OWDs in SF
  • Ans. 

    OWDs in SF refer to Organization-Wide Defaults which control the default level of access users have to records in Salesforce.

    • OWDs determine the baseline level of access for all records in an organization

    • They can be set to Public Read/Write, Public Read Only, Private, or Controlled by Parent

    • OWDs can be further refined using sharing rules and manual sharing

  • Answered by AI
  • Q2. Asynchronous Apex
  • Ans. 

    Asynchronous Apex is used to run processes in the background without user interaction.

    • Asynchronous Apex is used for long-running processes that don't require immediate user interaction.

    • It allows for better performance by running tasks in the background.

    • Examples include batch Apex, future methods, and queueable Apex.

  • Answered by AI
  • Q3. LWC in omnistudio
  • Ans. 

    LWC in omnistudio refers to using Lightning Web Components in Salesforce's OmniStudio for building custom applications.

    • LWC can be used in OmniStudio to create custom components and pages for applications.

    • LWC allows for building interactive and responsive user interfaces in OmniStudio.

    • LWC can be integrated with other Salesforce tools and services within OmniStudio.

    • Example: Creating a custom LWC component to display data...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Accenture Senior Salesforce Developer interview:
  • Apex
  • Omnistudio
  • LWC
  • Salesforce CRM

Skills evaluated in this interview

Interview experience
5
Excellent
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 - HR 

(1 Question)

  • Q1. Excepted Compensation
Round 3 - Technical 

(1 Question)

  • Q1. I informed them I am good at Flows. Questions about Flows and basic Salesforce developer questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Knowledge and scenario based questions that involved coding.
Round 2 - Behavioral 

(1 Question)

  • Q1. Design based on OOPs and mostly looking for culture fit.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with concepts as generally the questions are scenario based where the application of knowledge matters.

I applied via Naukri.com and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Integration, LWC, aura

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on the above key topics those were the questions more about

NTT Data Interview FAQs

How many rounds are there in NTT Data Senior Salesforce Developer interview?
NTT Data interview process usually has 1-2 rounds. The most common rounds in the NTT Data interview process are Technical, Behavioral and Coding Test.
What are the top questions asked in NTT Data Senior Salesforce Developer interview?

Some of the top questions asked at the NTT Data Senior Salesforce Developer interview -

  1. What is Skinny ta...read more
  2. Inheritance in apex cla...read more
  3. Basic salesforce concep...read more

Tell us how to improve this page.

NTT Data Senior Salesforce Developer Interview Process

based on 3 interviews in last 1 year

Interview experience

4.7
  
Excellent

People are getting interviews through

based on 3 NTT Data interviews
Job Portal
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
NTT Data Senior Salesforce Developer Salary
based on 19 salaries
₹7.5 L/yr - ₹28.8 L/yr
At par with the average Senior Salesforce Developer Salary in India
View more details

NTT Data Senior Salesforce Developer Reviews and Ratings

based on 3 reviews

3.1/5

Rating in categories

2.1

Skill development

3.3

Work-Life balance

2.5

Salary & Benefits

4.5

Job Security

2.9

Company culture

1.8

Promotions/Appraisal

1.8

Work Satisfaction

Explore 3 Reviews and Ratings
Senior Salesforce Developer - Digital Solution Consultant

Hyderabad / Secunderabad

6-11 Yrs

Not Disclosed

Senior Salesforce Developer

Hyderabad / Secunderabad

5-10 Yrs

Not Disclosed

Explore more jobs
Software Engineer
932 salaries
unlock blur

₹2.8 L/yr - ₹11 L/yr

Senior Associate
767 salaries
unlock blur

₹1.1 L/yr - ₹9.3 L/yr

Network Engineer
647 salaries
unlock blur

₹1.8 L/yr - ₹10 L/yr

Software Developer
615 salaries
unlock blur

₹2.5 L/yr - ₹13 L/yr

Senior Software Engineer
512 salaries
unlock blur

₹6.5 L/yr - ₹24 L/yr

Explore more salaries
Compare NTT Data with

Tata Communications

4.1
Compare

Bharti Airtel

4.0
Compare

Reliance Communications

4.0
Compare

Vodafone Idea

4.1
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview