Upload Button Icon Add office photos
Engaged Employer

i

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

Blue Flame Labs Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Blue Flame Labs Salesforce Developer Interview Questions and Answers

Updated 30 Sep 2020

9 Interview questions

A Salesforce Developer was asked
Q. What is trigger context?
Ans. 

Trigger context refers to the execution context of a trigger in Salesforce.

  • Trigger context provides information about the record(s) that caused the trigger to execute.

  • It includes details like the trigger event type, the old and new versions of the records, and the user who caused the trigger to execute.

  • The trigger context is accessed using the Trigger class in Apex.

  • Example: Trigger context can be used to perform s...

A Salesforce Developer was asked
Q. What is a batch Apex class?
Ans. 

Batch/Apex class is a type of Apex code that processes large amounts of data asynchronously in batches.

  • Batch classes are used to process large amounts of data in batches

  • Apex classes are used to write custom business logic

  • Batch classes implement the Database.Batchable interface

  • Apex classes can be used to create triggers, controllers, and web services

  • Example: A batch class can be used to update all accounts with a s...

Salesforce Developer Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Write a trigger to update related Opportunity records when an acc ... read more
asked in Deloitte
Q2. Write a trigger to update a contact when an account's phone numbe ... read more
asked in Infosys
Q3. How do you make the child records read-only if the parent record' ... read more
asked in Cognizant
Q4. How many ways can asynchronous code be written in Salesforce?
asked in TCS
Q5. Difference between Roles & Profiles, Difference between Workf ... read more
A Salesforce Developer was asked
Q. What is a workflow?
Ans. 

Workflow is an automated process that helps to streamline business operations and improve efficiency.

  • Workflow is a series of steps that automate a business process.

  • It can be used to automate tasks such as sending emails, updating records, and creating tasks.

  • Workflows can be triggered by specific events or conditions, such as when a record is created or updated.

  • Salesforce provides a visual interface for creating an...

A Salesforce Developer was asked
Q. What is the Salesforce architecture?
Ans. 

Salesforce architecture is a multi-layered framework that allows for customization and scalability.

  • Salesforce architecture consists of four layers: presentation, logic, data, and storage.

  • The presentation layer is responsible for the user interface and user experience.

  • The logic layer contains the business rules and processes.

  • The data layer stores the data and manages relationships between objects.

  • The storage layer ...

A Salesforce Developer was asked
Q. How does the Salesforce backend relate to the MVC architecture?
Ans. 

Salesforce backend follows a similar pattern to MVC architecture.

  • Salesforce backend is divided into three layers: Model, View, and Controller.

  • Model layer contains the data and business logic.

  • View layer is responsible for rendering the user interface.

  • Controller layer handles user input and communicates with the Model and View layers.

  • Apex is used for the Controller layer and SOQL for the Model layer.

  • Visualforce is u...

A Salesforce Developer was asked
Q. What is the difference between a master-detail relationship and a lookup relationship?
Ans. 

Master-detail relationship is a parent-child relationship where the child record cannot exist without the parent record. Lookup relationship is a simple association between two objects.

  • Master-detail relationship is a stricter relationship than lookup relationship.

  • Master-detail relationship is used when there is a parent-child relationship between two objects.

  • In master-detail relationship, the child record inherits...

A Salesforce Developer was asked
Q. What is the difference between before and after triggers?
Ans. 

Before trigger runs before the record is saved to the database, while after trigger runs after the record is saved.

  • Before trigger is used to update or validate record values before they are saved to the database.

  • After trigger is used to perform additional actions after the record is saved to the database.

  • Before trigger can be used to prevent certain changes from being made to a record.

  • After trigger can be used to ...

Are these interview questions helpful?
A Salesforce Developer was asked
Q. What is the difference between Visualforce and Lightning components?
Ans. 

Visualforce is a page-centric model while Lightning Component is a component-centric model.

  • Visualforce is based on a page-centric model while Lightning Component is based on a component-centric model.

  • Visualforce uses a server-side controller while Lightning Component uses a client-side controller.

  • Visualforce is built using Apex and Visualforce markup language while Lightning Component is built using JavaScript and...

A Salesforce Developer was asked
Q. Can we use Trigger.new() in before and after triggers?
Ans. 

Yes, we can use trigger.new() in before & after trigger.

  • In before trigger, trigger.new() returns the records that are about to be saved.

  • In after trigger, trigger.new() returns the records that have been saved.

  • We can use trigger.new() to access and manipulate the records in the trigger context.

Blue Flame Labs Salesforce Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

9 Questions

  • Q1. What is trigger context ?
  • Ans. 

    Trigger context refers to the execution context of a trigger in Salesforce.

    • Trigger context provides information about the record(s) that caused the trigger to execute.

    • It includes details like the trigger event type, the old and new versions of the records, and the user who caused the trigger to execute.

    • The trigger context is accessed using the Trigger class in Apex.

    • Example: Trigger context can be used to perform specif...

  • Answered by AI
  • Q2. What is batch/apex class ?
  • Ans. 

    Batch/Apex class is a type of Apex code that processes large amounts of data asynchronously in batches.

    • Batch classes are used to process large amounts of data in batches

    • Apex classes are used to write custom business logic

    • Batch classes implement the Database.Batchable interface

    • Apex classes can be used to create triggers, controllers, and web services

    • Example: A batch class can be used to update all accounts with a specif...

  • Answered by AI
  • Q3. What is workflow ?
  • Ans. 

    Workflow is an automated process that helps to streamline business operations and improve efficiency.

    • Workflow is a series of steps that automate a business process.

    • It can be used to automate tasks such as sending emails, updating records, and creating tasks.

    • Workflows can be triggered by specific events or conditions, such as when a record is created or updated.

    • Salesforce provides a visual interface for creating and man...

  • Answered by AI
  • Q4. Diff between master-detail relationship & lookup relationship
  • Ans. 

    Master-detail relationship is a parent-child relationship where the child record cannot exist without the parent record. Lookup relationship is a simple association between two objects.

    • Master-detail relationship is a stricter relationship than lookup relationship.

    • Master-detail relationship is used when there is a parent-child relationship between two objects.

    • In master-detail relationship, the child record inherits the ...

  • Answered by AI
  • Q5. Diff between before & after trigger
  • Ans. 

    Before trigger runs before the record is saved to the database, while after trigger runs after the record is saved.

    • Before trigger is used to update or validate record values before they are saved to the database.

    • After trigger is used to perform additional actions after the record is saved to the database.

    • Before trigger can be used to prevent certain changes from being made to a record.

    • After trigger can be used to updat...

  • Answered by AI
  • Q6. What is salesforce architecture ?
  • Q7. What is salesforce backend like MVC ?
  • Ans. 

    Salesforce backend follows a similar pattern to MVC architecture.

    • Salesforce backend is divided into three layers: Model, View, and Controller.

    • Model layer contains the data and business logic.

    • View layer is responsible for rendering the user interface.

    • Controller layer handles user input and communicates with the Model and View layers.

    • Apex is used for the Controller layer and SOQL for the Model layer.

    • Visualforce is used f...

  • Answered by AI
  • Q8. Diff between visualforce & lightning component ?
  • Ans. 

    Visualforce is a page-centric model while Lightning Component is a component-centric model.

    • Visualforce is based on a page-centric model while Lightning Component is based on a component-centric model.

    • Visualforce uses a server-side controller while Lightning Component uses a client-side controller.

    • Visualforce is built using Apex and Visualforce markup language while Lightning Component is built using JavaScript and Aura...

  • Answered by AI
  • Q9. Can we use trigger.new() in before & after trigger.
  • Ans. 

    Yes, we can use trigger.new() in before & after trigger.

    • In before trigger, trigger.new() returns the records that are about to be saved.

    • In after trigger, trigger.new() returns the records that have been saved.

    • We can use trigger.new() to access and manipulate the records in the trigger context.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This is video call interview.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Blue Flame Labs?
Ask anonymously on communities.

Interview questions from similar companies

I applied via LinkedIn and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Write a c++ program to implement the basic functions of queue using linked list and class?
  • Ans. 

    C++ program to implement queue using linked list and class

    • Create a class for queue and node

    • Implement enqueue, dequeue, and display functions

    • Use pointers to link nodes in the linked list

  • Answered by AI
  • Q2. Questions related to the projects .

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have good command over the language you chose and the tech stack you are working upon. You should be able to explain your role.

Skills evaluated in this interview

Salesforce Developer Interview Questions Asked at Other Companies

asked in Cognizant
Q1. Write a trigger to update related Opportunity records when an acc ... read more
asked in Deloitte
Q2. Write a trigger to update a contact when an account's phone numbe ... read more
asked in Infosys
Q3. How do you make the child records read-only if the parent record' ... read more
asked in Cognizant
Q4. How many ways can asynchronous code be written in Salesforce?
asked in TCS
Q5. Difference between Roles & Profiles, Difference between Workf ... read more

Interview Questionnaire 

2 Questions

  • Q1. Java related questions
  • Q2. Map and exception handling

Interview Preparation Tips

Round: Test
Experience: 5 Java programs

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

I applied via Recruitment Consulltant and was interviewed in Sep 2023. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Intermediate aptitude questions .
No negative marking .
Written test held at JMR infotech

Round 3 - Technical 

(1 Question)

  • Q1. Mcq and coding questions . Mostly from Java and spring . Coding question is from Array and String (Find frequency )
Round 4 - One-on-one 

(1 Question)

  • Q1. After the written test, face to face interview on technical and hr will be there .

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. How to implement Sqlite database in React Native?
  • Q2. What are generator functions?
  • Ans. 

    Generator functions are functions that can be paused and resumed, allowing for lazy evaluation of data.

    • Generator functions use the yield keyword to pause execution and return a value.

    • They can be used to generate an infinite sequence of values.

    • They are memory efficient as they only generate values when needed.

    • Example: function* myGenerator() { yield 1; yield 2; yield 3; }

    • Example: const infiniteGenerator = function*() { ...

  • Answered by AI
  • Q3. How to implement push notifications in Android and iOS?
  • Ans. 

    Push notifications can be implemented in Android and iOS using Firebase Cloud Messaging (FCM) and Apple Push Notification service (APNs) respectively.

    • For Android, integrate FCM SDK in the app and use FCM console to send notifications.

    • For iOS, create an APNs certificate, configure the app to receive notifications, and use APNs to send notifications.

    • Both platforms require handling of notification payload in the app to di...

  • Answered by AI
  • Q4. How do you use in your last app?
  • Ans. 

    I used React Native for my last app.

    • Developed UI components using React Native

    • Integrated APIs to fetch and display data

    • Implemented Redux for state management

    • Used Firebase for authentication and database

    • Optimized app performance using React Native Debugger

  • Answered by AI
  • Q5. What is the difference between functional components and non functional components?
  • Ans. 

    Functional components are stateless and return UI elements based on input props, while non-functional components have state and can change UI based on user interaction.

    • Functional components are simpler and easier to test than non-functional components.

    • Non-functional components can have state and lifecycle methods, while functional components cannot.

    • Examples of functional components include buttons, labels, and icons, w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Its Hard and requires deep knowledge of your technical skills.

Skills evaluated in this interview

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What is the difference between var, const, and let in JavaScript?
  • Q2. What is the definition of scope in project management or development?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. What is Optional chaining ?
  • Ans. 

    Optional chaining allows safe access to deeply nested object properties without causing runtime errors if a property is undefined or null.

    • Prevents runtime errors when accessing properties of an object that may not exist.

    • Syntax: Use the '?' operator before accessing a property, e.g., obj?.property.

    • Example: const name = user?.profile?.name; // returns undefined if user or profile is null.

    • Can be used with function calls: ...

  • Answered by AI
  • Q2. What is Debouncing?
Are these interview questions helpful?
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 - Technical 

(2 Questions)

  • Q1. About my platform related
  • Q2. Abot my platform related
Round 3 - Coding Test 

UI design and crud operation tasks

Round 4 - HR 

(1 Question)

  • Q1. Salary discussion fully connected

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep trying , work smart
complete all rounds with your clam mind
Interview experience
1
Bad
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 - Technical 

(4 Questions)

  • Q1. Basic and advanced jav
  • Q2. Opps concepts and explanation, interface, abstraction difference
  • Q3. MVC flow and architecture
  • Q4. Hibernate interview questions
Round 3 - HR 

(1 Question)

  • Q1. Normal only HR questions

Interview Preparation Tips

Interview preparation tips for other job seekers - As per my knowledge and experience in DT, please don't join here 😞🙏, this is worst company which I have worked. No words to say about this company.....
Please consider this review and don't join . Use and throw.... they won't consider employees comserns.... In my team 20 people joined they removed all the people with in 4 months........ don't join.........
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Aug 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts and interface
  • Q2. Method overloading and overriding
Round 2 - Technical 

(2 Questions)

  • Q1. Abt web api and mvc
  • Q2. Abt web api and mvc

Blue Flame Labs Interview FAQs

How to prepare for Blue Flame Labs 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 Blue Flame Labs. The most common topics and skills that interviewers at Blue Flame Labs expect are Apex, Deployment, Analytical Skills, Architecture and Basic.
What are the top questions asked in Blue Flame Labs Salesforce Developer interview?

Some of the top questions asked at the Blue Flame Labs Salesforce Developer interview -

  1. can we use trigger.new() in before & after trigg...read more
  2. What is trigger contex...read more
  3. what is salesforce backend like MV...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
JMR Infotech Interview Questions
4.2
 • 33 Interviews
PC Solutions Interview Questions
3.7
 • 18 Interviews
View all
Blue Flame Labs Salesforce Developer Salary
based on 38 salaries
₹3.7 L/yr - ₹8.3 L/yr
22% less than the average Salesforce Developer Salary in India
View more details

Blue Flame Labs Salesforce Developer Reviews and Ratings

based on 2 reviews

1.5/5

Rating in categories

1.5

Skill development

1.5

Work-life balance

1.5

Salary

1.5

Job security

1.5

Company culture

1.5

Promotions

1.5

Work satisfaction

Explore 2 Reviews and Ratings
Technical Consultant
100 salaries
unlock blur

₹4.6 L/yr - ₹10.1 L/yr

Associate Technical Consultant
96 salaries
unlock blur

₹3.5 L/yr - ₹6.4 L/yr

Salesforce Developer
38 salaries
unlock blur

₹3.7 L/yr - ₹8.3 L/yr

Technical Lead
28 salaries
unlock blur

₹12 L/yr - ₹33.2 L/yr

Senior Technical Consultant
19 salaries
unlock blur

₹7 L/yr - ₹20 L/yr

Explore more salaries
Compare Blue Flame Labs with

PC Solutions

3.7
Compare

JMR Infotech

4.2
Compare

RNF Technologies

3.3
Compare

Ahana Systems & Solutions

3.7
Compare
write
Share an Interview