Upload Button Icon Add office photos
Engaged Employer

i

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

Lirik Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Lirik Infotech Salesforce Developer Interview Questions and Answers

Updated 1 Aug 2024

Lirik Infotech Salesforce Developer Interview Experiences

3 interviews found

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

(1 Question)

  • Q1. About admin and developing part and also asked security related questions and write one logic related to trigger.
Round 2 - Technical 

(1 Question)

  • Q1. Same questions as in first round but they are now some triky and scneario questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn and prepare yourself from youtube interview videos.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is setup and non setup object?
  • Ans. 

    Setup objects are customizable objects that can be modified by administrators, while non-setup objects are standard objects that cannot be modified.

    • Setup objects can be customized by administrators using the Salesforce Setup menu.

    • Non-setup objects are standard objects provided by Salesforce, such as Account, Contact, and Opportunity.

    • Setup objects include custom objects, custom fields, and custom settings.

    • Non-setup obje...

  • Answered by AI

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
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Jan 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Mathematical and (logical + reasoning) questions

Round 2 - Coding Test 

Pattern desing, building of a calculator, vf page, lwc and aura pages buidling.

Round 3 - HR 

(1 Question)

  • Q1. Why should we hire you? How can you make our comapny pprogressive by your efforts?

Interview questions from similar companies

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

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java 8 , spring mvc , database

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions are simple that you can crack the interview easily but it's my humble advice that dont go here as the manager is only trust team lead and he is resist. They are raising the hand to beat employees. Akula and Rajkumar both are resist and street guy.

Interview Questionnaire 

1 Question

  • Q1. Difference between for and for each
  • Ans. 

    For loop is used for iterating over a range of values while for each loop is used for iterating over elements of an array.

    • For loop is used when the number of iterations is known beforehand.

    • For each loop is used when the number of iterations is not known beforehand.

    • For loop can be used with any iterable object.

    • For each loop can only be used with arrays and other iterable objects.

    • For loop uses an index variable to access...

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Linked list question to detect cycle
  • Q2. Basic questions from JS
Round 2 - Technical 

(2 Questions)

  • Q1. Some questions related to my projects
  • Q2. Some Questions related to my past experience
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Map reduce filter in javascript
  • Ans. 

    Map, reduce, and filter are higher-order functions in JavaScript used to manipulate arrays.

    • Map: Transforms each element in an array and returns a new array with the transformed elements.

    • Reduce: Reduces an array to a single value by applying a function to each element.

    • Filter: Creates a new array with elements that pass a certain condition.

  • Answered by AI
  • Q2. Exception handling

Skills evaluated in this interview

Lirik Infotech Interview FAQs

How many rounds are there in Lirik Infotech Salesforce Developer interview?
Lirik Infotech interview process usually has 2 rounds. The most common rounds in the Lirik Infotech interview process are Technical, Aptitude Test and Coding Test.
How to prepare for Lirik Infotech 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 Lirik Infotech. The most common topics and skills that interviewers at Lirik Infotech expect are Salesforce, Apex, Visualforce, Lightning and Software Design.
What are the top questions asked in Lirik Infotech Salesforce Developer interview?

Some of the top questions asked at the Lirik Infotech Salesforce Developer interview -

  1. What is setup and non setup obje...read more
  2. About admin and developing part and also asked security related questions and w...read more
  3. Same questions as in first round but they are now some triky and scneario quest...read more

Tell us how to improve this page.

Lirik Infotech Salesforce Developer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 142 Interviews
Monotype Interview Questions
3.7
 • 23 Interviews
Izmo Interview Questions
3.5
 • 13 Interviews
Nxtra Data Interview Questions
4.1
 • 10 Interviews
DCM Infotech Interview Questions
3.7
 • 7 Interviews
Acer India Interview Questions
4.3
 • 7 Interviews
View all
Lirik Infotech Salesforce Developer Salary
based on 36 salaries
₹3.5 L/yr - ₹12.8 L/yr
14% more than the average Salesforce Developer Salary in India
View more details

Lirik Infotech Salesforce Developer Reviews and Ratings

based on 6 reviews

3.7/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.4

Salary

4.0

Job security

3.7

Company culture

3.4

Promotions

3.3

Work satisfaction

Explore 6 Reviews and Ratings
Salesforce Developer
37 salaries
unlock blur

₹3.5 L/yr - ₹12.9 L/yr

Senior Associate
33 salaries
unlock blur

₹7.2 L/yr - ₹25 L/yr

Associate
31 salaries
unlock blur

₹5 L/yr - ₹16 L/yr

Associate Lead
12 salaries
unlock blur

₹15.4 L/yr - ₹22.5 L/yr

Senior Salesforce Developer
8 salaries
unlock blur

₹8 L/yr - ₹18 L/yr

Explore more salaries
Compare Lirik Infotech with

HCL Infosystems

3.9
Compare

AYN InfoTech

4.7
Compare

Izmo

3.5
Compare

Acer India

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