Upload Button Icon Add office photos
Engaged Employer

i

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

YASH Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

YASH Technologies Salesforce Developer Interview Questions and Answers

Updated 10 Feb 2024

YASH Technologies Salesforce Developer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. What is Profiles and Permission set
  • Ans. 

    Profiles and Permission sets are used in Salesforce to control access and permissions for users.

    • Profiles define the settings and permissions for a user, such as object and field access, record types, and page layouts.

    • Permission sets are used to grant additional permissions to users, without changing their profile.

    • Profiles are assigned to users when they are created, while permission sets can be assigned or revoked at a...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why do you want to leave your current organisation

Skills evaluated in this interview

Salesforce Developer Jobs at YASH Technologies

View all

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Can we call future method from batch class
  • Ans. 

    Yes, future methods can be called from a batch class in Salesforce.

    • Future methods can be called from batch classes to perform asynchronous processing.

    • This can be useful for offloading long-running tasks to future methods to avoid hitting governor limits.

    • Example: Calling a future method from a batch class to update records in Salesforce asynchronously.

  • Answered by AI
  • Q2. What's the use of @track decorator. Is it mandatory to explicitly use it? If yes, for which use case?
  • Ans. 

    The @track decorator in Salesforce is used to track changes to a property in a Lightning web component.

    • Used to make a property reactive and trigger re-renders when its value changes

    • Not mandatory but recommended for properties that need to be reactive

    • Use @track when you want changes to a property to be reflected in the UI

  • Answered by AI
  • Q3. When does APEX CPU Limit Exceeded error happens. What's the best practice to avoid getting this error?
  • Ans. 

    APEX CPU Limit Exceeded error happens when code consumes too much CPU time. Best practices include optimizing code, reducing loops, and using asynchronous processing.

    • Avoid using nested loops and optimize code for better performance

    • Use asynchronous processing like @future or Queueable to offload CPU intensive tasks

    • Limit the use of SOQL queries inside loops to reduce CPU consumption

  • Answered by AI
  • Q4. When does Mixed DML Exception occurs?
  • Ans. 

    Mixed DML Exception occurs when DML operations are performed on setup and non-setup objects in a single transaction.

    • Occurs when DML operations are performed on both setup and non-setup objects in a single transaction

    • Setup objects include User, Profile, PermissionSet, etc.

    • Non-setup objects include custom objects, standard objects like Account, Contact, etc.

  • Answered by AI
  • Q5. Debug the following code: var a=10; function abc() { console.log(a); var a=2; } abc();
  • Ans. 

    The code will output 'undefined' because variable 'a' is hoisted within the function.

    • Variable 'a' is hoisted to the top of the function scope, so when 'console.log(a)' is called, 'a' is undefined.

    • To fix this, move the declaration of 'var a=2;' above the 'console.log(a);' statement.

  • Answered by AI
  • Q6. Write a SOQL query to fetch the values of description field from the Account. Why does "the description field cannot be filtered in the query call"?
  • Ans. 

    SOQL query to fetch description field from Account and reason for inability to filter

    • SOQL query: SELECT Description FROM Account

    • Description field is not filterable because it is a long text field

    • Long text fields cannot be filtered in SOQL queries

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

20 mins for 30 ques were there.

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Managerial questions about all technical questions as well

I applied via Naukri.com and was interviewed in Jun 2022. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Types of Sharing Rules
  • Ans. 

    Sharing rules control access to records that are owned by other users or in public groups.

    • Criteria-based sharing rules

    • Owner-based sharing rules

    • Manual sharing

    • Apex managed sharing

  • Answered by AI
  • Q2. Trigger Scenario-based Questions
  • Q3. Types of LWC Decorators
  • Ans. 

    LWC Decorators are used to enhance the functionality of Lightning Web Components.

    • Wire Decorator - used to get data from Apex controllers

    • Track Decorator - used to track changes in a property

    • Api Decorator - used to expose a property or method to other components

    • AuraEnabled Decorator - used to call an Apex method from a Lightning component

    • LightningMessageService Decorator - used to subscribe to and publish events

  • Answered by AI

Interview Preparation Tips

Topics to prepare for DXC Technology Salesforce Developer interview:
  • Apex
  • Sharing rules
  • LWC
Interview preparation tips for other job seekers - I didn't really linked the Interviewer, He is about 60+ I think. Not at all professional behavior.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Question about Trigger Events
  • Q2. Wire services in LWC Component
  • Ans. 

    Wire services in LWC Component allow communication between components and Salesforce.

    • Wire services are used to fetch data from Salesforce without needing to write Apex code.

    • They enable reactive programming, automatically updating data when it changes in Salesforce.

    • Examples include @wire(getRecord) to retrieve a record, @wire(getObjectInfo) to get object metadata.

    • Wire adapters like @wire(getRecord) and @wire(getObjectIn

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Feb 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 - Aptitude Test 

Basic apti questions. search for nagarro aptitude test on youtube and prepare for it.

Round 3 - Technical 

(1 Question)

  • Q1. Admin related questions: basic concepts should be clear and 1 coding question asking to write a simple class in Apex Read: OWD, Batch Apex, Wrapper Class concept, can you call another class in batch apex,...
Round 4 - HR 

(1 Question)

  • Q1. Where do you want to switch, where do you see yourself in 5 years, about yourself etc

Interview Preparation Tips

Topics to prepare for Nagarro Salesforce Developer interview:
  • lwc
  • batch apex
  • apex
  • wrapper class
  • sharing model
Interview preparation tips for other job seekers - Its pretty simple if your concepts are clear and if I can get a placement offer so can you!
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at IPS Academy, Indore and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. What is data loader how we can use deleteall and delete difference between lwc and aura
  • Ans. 

    Data Loader is a tool provided by Salesforce for importing, exporting, and deleting data in Salesforce.

    • Data Loader is used for bulk importing, exporting, and deleting data in Salesforce

    • DeleteAll operation in Data Loader deletes all records in a specified object

    • Delete operation in Data Loader deletes specific records based on a query

    • Difference between LWC and Aura: LWC is a new programming model for building Lightning c...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why do you want to join DXC Are you comfortable to work at night shift

Skills evaluated in this interview

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 Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Trigger scenario based question
  • Q2. Project related question

I applied via Naukri.com and was interviewed in Oct 2022. 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 - Aptitude Test 

Its easy 30 question in 20 min

Round 3 - Technical 

(1 Question)

  • Q1. Normal admin related question.
Round 4 - Technical 

(1 Question)

  • Q1. All coding level question

Interview Preparation Tips

Interview preparation tips for other job seekers - Company process is very good I m rejected at third round...

YASH Technologies Interview FAQs

How many rounds are there in YASH Technologies Salesforce Developer interview?
YASH Technologies interview process usually has 2 rounds. The most common rounds in the YASH Technologies interview process are Technical and HR.
How to prepare for YASH Technologies Salesforce 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 YASH Technologies. The most common topics and skills that interviewers at YASH Technologies expect are Salesforce, Integration, Lighting, Agile Coaching and Lightning.

Tell us how to improve this page.

YASH Technologies Salesforce Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
YASH Technologies Salesforce Developer Salary
based on 33 salaries
₹3.8 L/yr - ₹9.3 L/yr
20% less than the average Salesforce Developer Salary in India
View more details

YASH Technologies Salesforce Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Salesforce Developer Job

Kolkata,

Mumbai

+5

3-5 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.3k salaries
unlock blur

₹2.4 L/yr - ₹12.8 L/yr

Senior Software Engineer
1.3k salaries
unlock blur

₹7 L/yr - ₹24 L/yr

Associate Consultant
779 salaries
unlock blur

₹2 L/yr - ₹10.6 L/yr

Consultant
730 salaries
unlock blur

₹5 L/yr - ₹20.3 L/yr

Module Lead
530 salaries
unlock blur

₹8.7 L/yr - ₹32 L/yr

Explore more salaries
Compare YASH Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

Tech Mahindra

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