Upload Button Icon Add office photos
Engaged Employer

i

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

Bluvium Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Bluvium Senior Salesforce Developer Interview Questions and Answers

Updated 15 Feb 2024

Bluvium Senior Salesforce Developer Interview Experiences

1 interview found

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

(3 Questions)

  • Q1. The interview was average
  • Q2. All senario based questions. Write a query to fetch all the Account which dont have opportunity
  • Q3. Write a code to calculate multiply of two integer passing as parameter
  • Ans. 

    Code to calculate the product of two integers passed as parameters.

    • Declare a function that takes two integer parameters.

    • Multiply the two integers together and store the result in a variable.

    • Return the calculated product.

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Walk-in and was interviewed in Apr 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Difference between sales cloud and service cloud.
  • Ans. 

    Sales cloud is for managing sales while service cloud is for managing customer service.

    • Sales cloud is focused on managing the sales process, from lead generation to closing deals.

    • Service cloud is focused on managing customer service, from support cases to service level agreements.

    • Sales cloud includes features like lead and opportunity management, while service cloud includes features like case management and knowledge ...

  • Answered by AI
  • Q2. Profile and Roles
  • Q3. Apex class

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Nov 2021. There were 2 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 - Technical 

(2 Questions)

  • Q1. Basics related to customisations and configuration
  • Q2. Basics of integration

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare with realtime scenarios.
To back up all concepts that will be asked you to explain

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

Interview Questionnaire 

4 Questions

  • Q1. Difference between Roles & Profiles, Difference between Workflow-ProcessBuilder-Flow,Types of Workflow and how to set them up,Trigger context variables
  • Ans. 

    Explaining the difference between Roles & Profiles, Workflow-ProcessBuilder-Flow, types of Workflow, and Trigger context variables.

    • Roles define the level of access a user has to records in an organization, while profiles define the level of access a user has to objects and fields.

    • Workflow, Process Builder, and Flow are automation tools used to automate business processes in Salesforce.

    • Workflow rules are used to automat...

  • Answered by AI
  • Q2. Batch class and its functions, use of stateful interface in batch class
  • Ans. 

    Batch class is used to process large data sets in chunks. Stateful interface maintains state between batches.

    • Batch class implements Database.Batchable interface

    • It has three methods: start(), execute() and finish()

    • Stateful interface is used to maintain state between batches

    • Stateful variables can be declared outside of the execute() method

    • Example: Batch class to update all accounts with a specific field value

  • Answered by AI
  • Q3. Best practices for Apex class and Test class
  • Ans. 

    Best practices for Apex class and Test class

    • Use meaningful class and method names

    • Write clear and concise code

    • Use comments to explain complex logic

    • Write test classes to cover all scenarios

    • Use System.assert() to validate expected results

    • Avoid hardcoding values

    • Use try-catch blocks to handle exceptions

    • Avoid SOQL queries and DML statements in loops

    • Use @isTest annotation for test classes

    • Use Test.startTest() and Test.stopTest

  • Answered by AI
  • Q4. Components under a lightning aura bundle
  • Ans. 

    Components under a Lightning Aura Bundle

    • A Lightning Aura Bundle can contain multiple components

    • These components can be of different types such as Lightning Component, Apex Class, etc.

    • The components can communicate with each other using events

    • The bundle can also contain design resources like CSS and images

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer precisely and to the point, there will be one Technical round (or two if you are applying for senior technical role) followed by managerial and HR rounds.

Skills evaluated in this interview

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

Interview Questionnaire 

3 Questions

  • Q1. Technical questions regarding lightning implementation, events, interfaces.
  • Q2. Difference between classic and lighting
  • Ans. 

    Classic is the old Salesforce UI while Lightning is the new modern UI.

    • Classic has a cluttered interface while Lightning has a cleaner and more intuitive interface.

    • Lightning has more features and customization options than Classic.

    • Lightning is optimized for mobile devices while Classic is not.

    • Lightning has a more modern look and feel compared to Classic.

    • Classic is being phased out by Salesforce in favor of Lightning.

    • Exa...

  • Answered by AI
  • Q3. Current project role
  • Ans. 

    I am currently working as a Salesforce developer on a project to implement custom solutions for a client.

    • Developing custom Salesforce solutions based on client requirements

    • Creating Apex classes, triggers, and Visualforce pages

    • Integrating third-party applications with Salesforce using APIs

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1 round with 2 people
Just be calm and be prepared in lightning.

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1. How do you make the child records read only of its parent record's field is updated to some value
  • Ans. 

    Child records can be made read-only when parent record's field is updated using validation rules.

    • Create a validation rule on child object

    • Use ISCHANGED() function to check if parent field is updated

    • Use PRIORVALUE() function to get the previous value of parent field

    • Use ISBLANK() function to check if the previous value of parent field is blank

    • Use ISNEW() function to allow creation of child records

    • Use OR() function to comb...

  • Answered by AI
  • Q2. How do you call a controllor method from javascript in visualforce page?
  • Ans. 

    To call a controller method from JavaScript in a Visualforce page, use the actionFunction tag.

    • Create a controller method in the Apex class.

    • Add an actionFunction tag in the Visualforce page.

    • Call the actionFunction from JavaScript using its name.

    • Pass parameters to the controller method using the actionFunction tag.

    • Use the rerender attribute to update the page after the controller method is called.

  • Answered by AI
  • Q3. What are the collectio variables and when do we use them in apex?
  • Ans. 

    Collection variables are used to store multiple values of the same data type in Apex.

    • Collection variables include Lists, Sets, and Maps.

    • Lists are ordered collections of elements that can contain duplicates.

    • Sets are unordered collections of unique elements.

    • Maps are collections of key-value pairs.

    • Collection variables are useful for iterating over multiple values and performing operations on them.

    • Example: List<String&g...

  • Answered by AI
  • Q4. How do load both parent and child records at a time using data loader?
  • Ans. 

    Use data loader's parent-child functionality to load both parent and child records at once.

    • Create a CSV file with both parent and child records

    • Use the data loader's parent-child functionality to map the relationship between the two

    • Ensure that the parent records are loaded before the child records

    • Use the data loader's insert or upsert operation to load the data

  • Answered by AI
  • Q5. Syntax of batch class, future method
  • Ans. 

    Batch class and future method syntax in Salesforce development.

    • Batch class syntax: Implements Database.Batchable interface, has start(), execute() and finish() methods.

    • Future method syntax: Has @future annotation, returns void, takes parameters.

    • Example batch class syntax: public class MyBatch implements Database.Batchable { ... }

    • Example future method syntax: @future public static void myFutureMethod(String param) { ...

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

1 Question

  • Q1. Basics questions and programs related to trigger,lightning and few questions on lwc

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice programming more and be confident

I applied via Job Fair and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was amcat aptitude test which we have gave from any remote location. Logical Reasoning, Quants, Comprehensive English, Pseudo Code and Coding questions.

Round 2 - HR 

(1 Question)

  • Q1. HR asked simple questions starts with basic introduction, then asks about strengths, location availability across PAN India with reason.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be confident, work on your communication skills and be strong with your fundamentals.

I applied via LinkedIn and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. All about candidate and their interest skill assessments
Round 2 - Technical 

(1 Question)

  • Q1. All technical questions end to end in a 1 and half our long interview

Interview Preparation Tips

Interview preparation tips for other job seekers - It was Good , not so easy. Process is very quicker

I applied via Recruitment Consultant and was interviewed in Oct 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. What do you know about Salesforce?
  • Q2. What are triggers and their use?
  • Ans. 

    Triggers are automated actions that are executed when a specific event occurs in a Salesforce database.

    • Triggers are used to perform custom actions before or after specific events, such as inserting, updating, or deleting records.

    • Triggers can be used to enforce business rules, validate data, or update related records.

    • Triggers are written in Apex code and can be used to extend the functionality of Salesforce beyond its s...

  • Answered by AI
  • Q3. What is the use of SOQL?
  • Ans. 

    SOQL is used to query data from Salesforce database.

    • SOQL stands for Salesforce Object Query Language.

    • It is used to retrieve data from Salesforce objects.

    • It supports filtering, sorting, and grouping of data.

    • It can be used in Apex code, Visualforce pages, and Lightning components.

    • Example: SELECT Name, AccountNumber FROM Account WHERE Industry = 'Technology'

  • Answered by AI
  • Q4. What are API calls in Salesforce?
  • Ans. 

    API calls are requests made to Salesforce servers to retrieve or manipulate data.

    • API calls are used to integrate Salesforce with external systems

    • API calls can be made using SOAP, REST, or Bulk APIs

    • API calls are limited based on the edition of Salesforce and can be monitored in the Developer Console

    • Examples of API calls include retrieving data from Salesforce, creating new records, and updating existing records

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn all PD1 syllabus.

Skills evaluated in this interview

Bluvium Interview FAQs

How many rounds are there in Bluvium Senior Salesforce Developer interview?
Bluvium interview process usually has 1 rounds. The most common rounds in the Bluvium interview process are Technical.
How to prepare for Bluvium Senior 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 Bluvium. The most common topics and skills that interviewers at Bluvium expect are Apex, Lightning, SFDC, Salesforce CRM and Solution Design.
What are the top questions asked in Bluvium Senior Salesforce Developer interview?

Some of the top questions asked at the Bluvium Senior Salesforce Developer interview -

  1. Write a code to calculate multiply of two integer passing as parame...read more
  2. All senario based questions. Write a query to fetch all the Account which dont ...read more
  3. The interview was aver...read more

Tell us how to improve this page.

Bluvium Senior Salesforce Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Bluvium Senior Salesforce Developer Salary
based on 10 salaries
₹9 L/yr - ₹22 L/yr
14% less than the average Senior Salesforce Developer Salary in India
View more details

Bluvium Senior Salesforce Developer Reviews and Ratings

based on 2 reviews

3.5/5

Rating in categories

3.0

Skill development

3.5

Work-life balance

3.5

Salary

3.5

Job security

3.5

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 2 Reviews and Ratings
Salesforce Developer
22 salaries
unlock blur

₹3.8 L/yr - ₹14.6 L/yr

Senior Salesforce Developer
10 salaries
unlock blur

₹9 L/yr - ₹22 L/yr

Salesforce Cpq Developer
7 salaries
unlock blur

₹5 L/yr - ₹15.4 L/yr

Technical Lead
4 salaries
unlock blur

₹24 L/yr - ₹33 L/yr

Manager Business Analyst
4 salaries
unlock blur

₹28.8 L/yr - ₹32.8 L/yr

Explore more salaries
Compare Bluvium with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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