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 Salesforce Administrator Interview Questions and Answers

Updated 23 Mar 2022

NTT Data Salesforce Administrator Interview Experiences

1 interview found

I applied via Company Website and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - HR 

(8 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why should we hire you?
  • Q5. Why are you looking for a change?
  • Q6. Where do you see yourself in 5 years?
  • Q7. What are your strengths and weaknesses?
  • Q8. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Create a positive candidate experience. ....

Interview questions from similar companies

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

Coding was easy to medium level. 2 questions are there 1 is too simple second one is easy to medium level

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on networking cloud computing and basic dsa questions

I applied via Company Website and was interviewed in Oct 2022. There were 3 interview rounds.

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 - Aptitude Test 

Number systems, ratio & propotions ,calenders

Round 3 - Coding Test 

Databases,looping,functions,keywords,psudocodes

Interview Preparation Tips

Topics to prepare for IBM Salesforce Administrator interview:
  • jam
  • self details
Interview preparation tips for other job seekers - yes,i am interested so guidence of comany is so well
Round 1 - One-on-one 

(3 Questions)

  • Q1. Work knowledge and experience
  • Q2. Working experience and some questions
  • Q3. Other
Round 2 - One-on-one 

(1 Question)

  • Q1. Self introduction employee

Interview Preparation Tips

Interview preparation tips for other job seekers - Need a job
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. How to invoke flows - using other flows and Apex. How do we invoke an apex class from a flow and pass variables?
  • Ans. 

    Flows can be invoked using other flows and Apex. Apex classes can be invoked from a flow by using invocable methods and passing variables as input parameters.

    • To invoke a flow from another flow, use the 'Launch Flow' element in the Flow Designer.

    • To invoke an Apex class from a flow, create an invocable method in the Apex class and annotate it with @InvocableMethod.

    • Pass variables from a flow to an Apex class by defining i...

  • Answered by AI
  • Q2. Why can't we create a master detail on contact as the child object
  • Ans. 

    Master-detail relationship on Contact as child object is not allowed due to data integrity concerns.

    • Contact is a standard object and cannot be a child object in a master-detail relationship

    • Master-detail relationships require the child object to have a lookup to the parent object

    • Contacts are often used as the primary object in many relationships, making it unsuitable as a child object

  • Answered by AI
  • Q3. What is child to parent communication in LWC?
  • Ans. 

    Child to parent communication in LWC allows a child component to communicate with its parent component.

    • Child components can dispatch custom events to communicate with parent components.

    • Parent components can listen for these custom events and handle them accordingly.

    • This communication pattern helps in passing data and triggering actions between components.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Write triggers for updating user email from contact emails.
  • Ans. 

    Write triggers to update user email from contact emails

    • Create a trigger on the User object

    • Query for related Contact records

    • Update User email field with Contact email

  • Answered by AI
  • Q2. How does LWC ensure data refresh
  • Ans. 

    LWC ensures data refresh by using Lightning Data Service and @wire decorator.

    • LWC uses Lightning Data Service to ensure data refresh without needing to write Apex code.

    • The @wire decorator in LWC allows for declarative data binding and automatic refresh when data changes.

    • LWC components can also manually refresh data using imperative Apex calls or by calling the refreshApex() method.

  • Answered by AI
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
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Resume shortlist
Round 2 - Technical 

(4 Questions)

  • Q1. Decorators in lwc
  • Ans. 

    Decorators in LWC are a way to enhance the functionality of a component by adding metadata and modifying behavior.

    • Decorators are used to modify the behavior of properties, methods, and getters/setters in LWC.

    • They are defined using the @ symbol followed by the decorator name.

    • Some commonly used decorators in LWC are @api, @track, @wire, and @track.

    • The @api decorator allows a property to be accessed by parent components.

    • T...

  • Answered by AI
  • Q2. User need to choose the profile before login to salesforce
  • Q3. How manual sharing works and how to see manually shared rercords
  • Ans. 

    Manual sharing allows users to manually grant access to records. To see manually shared records, use the 'Sharing' button on the record detail page.

    • Manual sharing is a feature in Salesforce that allows users to manually grant access to records.

    • It is useful when users need to share specific records with other users or groups.

    • To manually share a record, users can click on the 'Sharing' button on the record detail page.

    • Fr...

  • Answered by AI
  • Q4. Write trigger on opportunity to sum of total opps and populate on account sumofopps field
  • Ans. 

    Write a trigger on Opportunity to calculate the sum of total opportunities and populate it on the Account's 'SumOfOpps' field.

    • Create a trigger on the Opportunity object

    • Use an aggregate query to calculate the sum of the 'Amount' field on all related Opportunities

    • Update the 'SumOfOpps' field on the related Account with the calculated sum

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Write trigger , there are 3 objects, a is parent, b child, c is grand child, when grand child updated update grand child desc on a object desc
  • Ans. 

    Write a trigger to update the description field on the parent object when the grandchild object is updated.

    • Create a trigger on the grandchild object

    • Use a SOQL query to retrieve the parent object

    • Update the description field on the parent object with the grandchild's description

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Apex trigger security model etc
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial round
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have high expectations on salary please don’t join this
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Logical questions where asked and there were no more rounds

Round 2 - Technical 

(4 Questions)

  • Q1. Asked about react and basic javascript
  • Q2. What is Salesforce What is crm
  • Ans. 

    Salesforce is a cloud-based customer relationship management (CRM) platform that helps businesses manage their sales, customer service, marketing, and more.

    • Salesforce is a CRM platform used by businesses to manage customer relationships and interactions.

    • It provides tools for sales, customer service, marketing, and analytics.

    • Salesforce is cloud-based, allowing users to access it from anywhere with an internet connection...

  • Answered by AI
  • Q3. What is testing has been asked
  • Ans. 

    Testing in Salesforce involves validating configurations, customizations, and integrations to ensure they work as expected.

    • Testing can include unit testing, integration testing, system testing, and user acceptance testing.

    • It is important to test different scenarios to ensure all functionalities are working correctly.

    • Salesforce provides tools like Salesforce Inspector and Apex Debugger to assist with testing.

    • Automated t...

  • Answered by AI
  • Q4. What is api and how it works
  • Ans. 

    API stands for Application Programming Interface, it allows different software applications to communicate with each other.

    • API is a set of rules and protocols that allows different software applications to communicate with each other.

    • It defines the methods and data formats that applications can use to request and exchange information.

    • APIs can be used to access data or functionality from a remote server or service.

    • Examp...

  • Answered by AI

Skills evaluated in this interview

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

NTT Data Interview FAQs

How many rounds are there in NTT Data Salesforce Administrator interview?
NTT Data interview process usually has 1 rounds. The most common rounds in the NTT Data interview process are HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 NTT Data interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
NTT Data Salesforce Administrator Salary
based on 13 salaries
₹4.5 L/yr - ₹11.5 L/yr
33% more than the average Salesforce Administrator Salary in India
View more details

NTT Data Salesforce Administrator Reviews and Ratings

based on 2 reviews

4.9/5

Rating in categories

4.9

Skill development

4.9

Work-Life balance

4.8

Salary & Benefits

4.9

Job Security

4.9

Company culture

4.8

Promotions/Appraisal

4.9

Work Satisfaction

Explore 2 Reviews and Ratings
Software Engineer
932 salaries
unlock blur

₹2.8 L/yr - ₹11 L/yr

Senior Associate
762 salaries
unlock blur

₹1.2 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