Upload Button Icon Add office photos

Brillio

Compare button icon Compare button icon Compare

Filter interviews by

Brillio Salesforce Developer Interview Questions and Answers

Updated 26 Mar 2025

Brillio Salesforce Developer Interview Experiences

2 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. Coding Round, no final hr round
  • Q2. Salesforce Apex, LWC Flows

Interview Preparation Tips

Interview preparation tips for other job seekers - Before my interviews began, I clearly communicated my compensation expectations—about 30% more than my current package at the time. The HR representative, Sujata, assured me that they were fine with it. However, after my selection, I was offered a package that did not align with what was initially discussed, with an increase of hardly 10%. Following multiple conversations, I was promised that my compensation would be revised closer to my joining date, so I planned my transition accordingly. While I was trying to secure an early release from my previous employer, Sujata told me that if I failed to do so, Brillio might decide to revoke my offer. This added immense pressure, pushing me to expedite my exit despite the challenges involved. I successfully managed to secure an early release, only to find myself caught in another ordeal due to the company's mismanagement. Despite confirming my early availability and securing an early release, I faced constant delays. HR representatives Sujata and HR Head Shantanu repeatedly assured me that the updated offer letter was just pending final approval. For nearly 12 days, I was in constant communication with them, being told daily, "We will get the approval today, and you will receive the offer letter the same day." However, each day passed with no actual progress. After some time, Sujata even stopped picking up my calls. When I followed up, another HR representative, Monica, bluntly told me that Sujata was avoiding my calls because she "didn’t have any good news for me." After 10 days of daily communication, all HR representatives completely stopped providing any notifications or updates from Brillio, leaving me in the dark with no clarity on my status. Due to their incompetence, I lost 21 days of salary while waiting for an offer letter that never arrived on time. This daily cycle of uncertainty, false assurances, and complete lack of accountability caused unnecessary financial loss and stress. It made me question whether being ethical and not engaging in offer letter shopping was the right decision. In hindsight, this experience only reinforced why many candidates feel the need to secure multiple offers—because companies like Brillio fail to honor their commitments, leaving employees in a vulnerable position. Overall, this experience demonstrated a severe lack of professionalism, transparency, and accountability. If you're considering an opportunity with Brillio, be prepared for potential delays and last-minute changes, as their hiring process appears highly unstructured.

I applied via LinkedIn and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Some trigger to update another object when parent data changes.

Round 2 - HR 

(1 Question)

  • Q1. Previous company's information about team and my personal details.

Interview Preparation Tips

Topics to prepare for Brillio Salesforce Developer interview:
  • Apex
Interview preparation tips for other job seekers - Try to get as much hands on as possible.

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

Top trending discussions

View All
Interview Hub
1w (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Brillio?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Sep 2020.

Interview Questionnaire 

1 Question

  • Q1. Oops concept, solid principles, filters in MVC, basics of Angular,life cycle hook

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 rounds- both are technical.

I appeared for an interview in Sep 2019.

Interview Questionnaire 

1 Question

  • Q1. Pl sql related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - y resume was referd through a guy. Later I got call from HR for interview schedule he asked me my expected ctc and Notice Period to which I clearly said 3 months. He scheduled my interview on weekends morning 8am I reached there by 8.30am The interview process got started late by 10am it was an walk in type interview 1 round was Technical I cleared that round and had a feedback session with HR he said we are processing u to next round which was Manager round there itself I told the HR my NP is 3months the Hr Told its not an issue.
Laterly after I had lunch by 2pm Hr came n told me that Manager is not available now so we will be conducting ur further round in weekdays.
Then there was no mail or call so I purposely mailed them still haven't got proper response from them, so at last I told my friend who referd me to ask for an update the same HR told him that they want Immediate joiner so we can't process him to further round. Wasted my whole day over there

I applied via LinkedIn and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Just basic questions like Method overloading, riding Abstract and interface Use of static Etc..
Round 2 - Coding Test 

Basic Java programs related to string and array manipulation

Round 3 - Cliend Round 

(1 Question)

  • Q1. Jus basic questions related to Work culture and privacy

Interview Preparation Tips

Topics to prepare for Apexon Software Engineer interview:
  • Java
Interview preparation tips for other job seekers - Study basics to advanced iN Java

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

We were supposed to give test in any time between 3 PM to 9 PM.

  • Q1. 

    Total Unique Paths Problem Statement

    You are located at point ‘A’, the top-left corner of an M x N matrix, and your target is point ‘B’, the bottom-right corner of the same matrix. Your task is to calcula...

  • Ans. 

    The problem involves finding the total number of unique paths from the top-left to bottom-right cell of a matrix by moving only right or down.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D array to store the number of unique paths at each cell.

    • Initialize the first row and first column with 1 as there is only one way to reach them.

    • For each cell (i, j), the number of unique paths is the sum of paths...

  • Answered by AI
  • Q2. 

    Subtree Node Count Problem

    We are provided with a tree containing 'N' nodes, numbered from 0 to N-1. The objective is to determine the total number of nodes within each subtree of the provided tree. Speci...

  • Ans. 

    Given a tree with N nodes, find the number of elements in each subtree rooted at every node.

    • Traverse the tree using Depth First Search (DFS) to calculate subtree sizes for each node.

    • Use an array to store subtree sizes for each node, starting with leaf nodes having size 1.

    • The subtree size of a node is the sum of subtree sizes of its children plus 1 for the node itself.

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

Pair Programming Interview( this round is similar to machine coding round) it started around 11 AM

Focus Areas: Problem solving and implementation of extensions.

The pair coding round is focused on OOPS concepts. You are paired with a TWer for this round. They let you code first for an hour and in the next hour they review your code and suggest changes which would improve the code structure, readability and make it modular and reusable and functional.
 

  • Q1. 

    River Crossing: Help Ninja Cross Over

    Ninja stands at the start of a wooden bridge over a river. Some segments of the bridge are damaged. The undamaged segments, marked as 'safe', are listed in an array S...

  • Ans. 

    Check if Ninja can cross the river by jumping from one safe segment to another based on given constraints.

    • Iterate through the 'SAFE' array and check if Ninja can make the required jumps to reach the last safe segment.

    • Ensure that the next jump is either 'X' - 1, 'X', or 'X' + 1 units from the previous jump.

    • Return 'true' if Ninja can successfully cross the river, otherwise return 'false'.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 120 minutes
Round difficulty - Medium

Students who were shortlisted from Pair Programming round was selected for this round around 3 PM. In this round there were two interviewer.

  • Q1. 

    Middle of a Linked List

    You are given the head node of a singly linked list. Your task is to return a pointer pointing to the middle of the linked list.

    If there is an odd number of elements, return the ...

  • Ans. 

    Return the middle element of a singly linked list, or the one farther from the head if there are even elements.

    • Traverse the linked list with two pointers, one moving twice as fast as the other

    • When the fast pointer reaches the end, the slow pointer will be at the middle

    • Return the element pointed to by the slow pointer

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in GurgaonEligibility criteriaIt was for 2020 undergraduateThought Works interview preparation:Topics to prepare for the interview - Object Oriented Programming, System Design, Operating System, DBMS, Data Structures and Algorithms (Dynamic Programming, Trees, LinkedList)Time required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Have good grasp on OOPS since they have a round named Pair Programming round which is focused upon this. 
Tip 2 : Write clean, modular and functional code.
Tip 3 : Practice Data Structures and Algorithms
Tip 4 : You should know breadth and depth of whatever is mentioned in your resume.
Tip 5 : Be loud and clear.

Application resume tips for other job seekers

Tip 1 : Make single page resume.
Tip 2 : Mention relevant things on resume.
Tip 3 : Do not put any false things on resume. Projects, internships you are mentioning be ready to answer questions related to it regarding what you solved, idea, databases, design.
Tip 4 : Contribute in open source, participate in hackathons.

Final outcome of the interviewSelected

Skills evaluated in this interview

Brillio HR Interview Questions

22 questions and answers

Q. What does your typical day at work look like?
Q. Tell me about your current project.
Q. Can you please introduce yourself?

Interview Questionnaire 

1 Question

  • Q1. Interview questions on .net technology
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. Devops Tools

I applied via Naukri.com and was interviewed in May 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Identity and Access Management questions
  • Q2. As I’m from Identity and Access Management, questions were asked regarding the same profile

Interview Preparation Tips

Interview preparation tips for other job seekers - I’m happy with the interview process.
1) Project Manager round 2) Functional Manager round

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

Interview Questionnaire 

2 Questions

  • Q1. Basic questions on javascript, angular, html,css
  • Q2. Questions on localstorage , tokens, security, interceptors

Interview Preparation Tips

Interview preparation tips for other job seekers - be confident and u will rock

Brillio Interview FAQs

How many rounds are there in Brillio Salesforce Developer interview?
Brillio interview process usually has 2 rounds. The most common rounds in the Brillio interview process are Coding Test and HR.
How to prepare for Brillio 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 Brillio. The most common topics and skills that interviewers at Brillio expect are Salesforce, Apex, Javascript, Lightning and Sales Force Development.

Tell us how to improve this page.

Overall Interview Experience Rating

1/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Brillio Salesforce Developer Salary
based on 59 salaries
₹8.7 L/yr - ₹14 L/yr
52% more than the average Salesforce Developer Salary in India
View more details

Brillio Salesforce Developer Reviews and Ratings

based on 11 reviews

3.6/5

Rating in categories

3.6

Skill development

3.8

Work-life balance

3.2

Salary

3.1

Job security

3.6

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 11 Reviews and Ratings
Senior Engineer
885 salaries
unlock blur

₹8.4 L/yr - ₹17.5 L/yr

Senior Software Engineer
619 salaries
unlock blur

₹11.6 L/yr - ₹21.1 L/yr

Software Engineer
287 salaries
unlock blur

₹5.7 L/yr - ₹13.9 L/yr

Technical Specialist
234 salaries
unlock blur

₹18 L/yr - ₹31.9 L/yr

Senior Software Development Engineer
199 salaries
unlock blur

₹8.9 L/yr - ₹19 L/yr

Explore more salaries
Compare Brillio with

Accenture

3.7
Compare

Xoriant

4.1
Compare

CitiusTech

3.2
Compare

HTC Global Services

3.5
Compare
write
Share an Interview