Upload Button Icon Add office photos

Filter interviews by

Lot Technologies Salesforce Developer Interview Questions and Answers

Updated 6 May 2023

Lot Technologies Salesforce Developer Interview Experiences

2 interviews found

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

I applied via Referral and was interviewed in Apr 2023. There were 4 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 - Coding Test 

Ask to write trigger scenarios and LWC component

Round 3 - One-on-one 

(2 Questions)

  • Q1. Basics of Salesforce and scenario-based interview questions
  • Q2. * Sharing and without sharing difference * Difference between "null" and "isbllank" * Challenging scenario in my previous role.
  • Ans. 

    Salesforce Developer interview questions on sharing, null vs isblank, and challenging scenario.

    • Sharing determines the level of access to records for users and groups.

    • Without sharing means that access to records is not restricted by sharing rules.

    • Null means that a field has no value, while isblank checks if a field is null or empty.

    • Challenging scenario in previous role involved integrating multiple systems with complex

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Topics to prepare for Lot Technologies Salesforce Developer interview:
  • LWC
  • Trigger
  • Security
  • Apex
  • Testing
Interview preparation tips for other job seekers - Know strengths and interest
Research potential employees
Tailor your application as per the job role

I applied via Referral and was interviewed before Nov 2021. There were 4 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 - HR 

(3 Questions)

  • Q1. Introduction about yourself
  • Q2. Why do you want to come in Salesforce
  • Q3. What are the hobbies
Round 3 - Technical 

(2 Questions)

  • Q1. Trigger questions were asked
  • Q2. LWC components asked
Round 4 - One-on-one 

(1 Question)

  • Q1. Behavioural interview taken by Owner of company

Interview Preparation Tips

Topics to prepare for Lot Technologies Salesforce Developer interview:
  • Salesforce CRM
  • Lightning Web Components
Interview preparation tips for other job seekers - Good company
Nice mentors
Good projects
In pandemic company gave wfh option

Interview questions from similar companies

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?
  • Q2. Why can't we create a master detail on contact as the child object
  • Q3. What is child to parent communication in LWC?
Round 2 - Technical 

(2 Questions)

  • Q1. Write triggers for updating user email from contact emails.
  • Q2. How does LWC ensure data refresh
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
4-6 weeks
Result
No response

I applied via Campus Placement and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was easy and basic

Round 2 - Coding Test 

Coding questions are bit complicated

Round 3 - Technical 

(2 Questions)

  • Q1. Salesforce platform questions
  • Q2. Basic hr questions and project based question
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Trigger to display all contacts on an account
  • Q2. Diff bw 15 to 18 digits id
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic Apex coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Technical Scenerio in LWC
  • Q2. Basic sceneries in Apex sharing
  • Ans. 

    Apex sharing allows developers to control access to records based on criteria.

    • Apex sharing rules can be used to extend sharing access beyond the organization-wide defaults.

    • Apex managed sharing allows developers to programmatically share records with specific users or groups.

    • Sharing reasons can be used to define the reason for sharing a record in Apex.

    • Apex sharing can be enforced using the 'with sharing' keyword in Apex

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep Basic of Salesforce admin and development
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Life Cycle hook in LWC
  • Ans. 

    Life Cycle hooks in LWC are methods that allow you to interact with the component at specific stages of its lifecycle.

    • There are four main life cycle hooks in LWC: connectedCallback, disconnectedCallback, renderedCallback, and errorCallback.

    • connectedCallback is called when a component is inserted into the DOM.

    • disconnectedCallback is called when a component is removed from the DOM.

    • renderedCallback is called after the com...

  • Answered by AI
  • Q2. In how many ways we can Communicate between component
  • Ans. 

    There are multiple ways to communicate between components in Salesforce, including using events, public properties, and Apex methods.

    • Using events to communicate between components

    • Passing data through public properties

    • Invoking Apex methods to share data

  • Answered by AI
  • Q3. Outbound integration
  • Q4. After having Read, Write permission on the object what will be the reason that user can't see all record.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Write a LWC to display contacts associated to an account.
  • Ans. 

    LWC to display contacts associated to an account

    • Create an Apex class to fetch contacts associated with the account

    • Use Lightning Data Service to retrieve account details

    • Display contacts in a Lightning web component using HTML and CSS

  • Answered by AI
  • Q2. Write a trigger to update field on child record from parent record.
  • Ans. 

    Use trigger to update child record field from parent record

    • Create a trigger on the parent object

    • Query for the child records related to the parent record

    • Update the field on the child records with the desired value

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write a trigger to update a field on child record a default value if the child record is the only child of parent
  • Ans. 

    Write a trigger to update a field on child record with default value if it is the only child of parent

    • Create a trigger on the child object

    • Query for the parent record and check if it has only one child record

    • If the parent has only one child, update the field on the child record with the default value

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary Discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Infosys is not giving salary hike even if you clear all the rounds they come up with an offer of just 10%

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Question related to flow, security
  • Q2. Asked to write trigger related to after update
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Lookup and masterdetail
  • Q2. Owd and profile level permission
  • Q3. Write a trigger
  • Ans. 

    A trigger is a piece of code that is executed before or after a record is inserted, updated, or deleted in Salesforce.

    • Triggers are written in Apex and are used to perform custom actions on records.

    • Triggers can be executed before or after a record is inserted, updated, or deleted.

    • Triggers can be used to enforce validation rules, update related records, or perform other custom logic.

  • Answered by AI
  • Q4. LWC lifecycle hooks
  • Q5. LWC decorators and uses
  • Ans. 

    LWC decorators are used to add metadata to class fields or methods. '@api' is used to expose a public property or method.

    • LWC decorators are used to enhance the functionality of Lightning web components.

    • '@api' decorator is used to expose a public property or method that can be accessed by parent components.

    • Other decorators like '@track', '@wire', '@api get', '@api set' are also commonly used in LWC development.

  • Answered by AI

Skills evaluated in this interview

Lot Technologies Interview FAQs

How many rounds are there in Lot Technologies Salesforce Developer interview?
Lot Technologies interview process usually has 4 rounds. The most common rounds in the Lot Technologies interview process are Resume Shortlist, HR and One-on-one Round.
What are the top questions asked in Lot Technologies Salesforce Developer interview?

Some of the top questions asked at the Lot Technologies Salesforce Developer interview -

  1. * Sharing and without sharing difference * Difference between "null" and "isbll...read more
  2. Basics of Salesforce and scenario-based interview questi...read more
  3. Behavioural interview taken by Owner of comp...read more

Tell us how to improve this page.

People are getting interviews through

based on 2 Lot Technologies interviews
Referral
100%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Lot Technologies Salesforce Developer Salary
based on 50 salaries
₹2 L/yr - ₹4.8 L/yr
48% less than the average Salesforce Developer Salary in India
View more details

Lot Technologies Salesforce Developer Reviews and Ratings

based on 4 reviews

3.6/5

Rating in categories

3.8

Skill development

3.3

Work-Life balance

3.0

Salary & Benefits

3.3

Job Security

3.5

Company culture

3.7

Promotions/Appraisal

3.3

Work Satisfaction

Explore 4 Reviews and Ratings
Salesforce Developer
50 salaries
unlock blur

₹2 L/yr - ₹4.8 L/yr

Software Developer
19 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Devops Engineer
4 salaries
unlock blur

₹3.5 L/yr - ₹7.6 L/yr

Junior Salesforce Developer
4 salaries
unlock blur

₹1.8 L/yr - ₹4.5 L/yr

Explore more salaries
Compare Lot Technologies with

Infosys

3.7
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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