Upload Button Icon Add office photos

Brillio

Compare button icon Compare button icon Compare

Filter interviews by

Brillio SDE (Software Development Engineer) Interview Questions and Answers

Updated 18 Oct 2022

Brillio SDE (Software Development Engineer) Interview Experiences

1 interview found

Round 1 - Aptitude Test 

2 coding questions, and other quantitative, logical and verbal

Round 2 - Group Discussion 

A group of 7 and topic was "local for vocal"

Interview Preparation Tips

Interview preparation tips for other job seekers - confidence and knowledge and nlfnai nfia fawni fwia vaib afw v viviwn

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Jul 2022. There were 5 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Coding questions on graphs and mcqs on core CSE subjects like DSA ,OS ,DBMS ,CN.
Round 2 - One-on-one 

(1 Question)

  • Q1. DSA Questions for 40-50 minutes ,easy-medium level questions ,DBMS AND SQL Questions
Round 3 - One-on-one 

(1 Question)

  • Q1. 75-80 minutes . DSA,LOW LEVEL DESIGN , HIGH LEVEL DSA QUESTIONS
Round 4 - One-on-one 

(1 Question)

  • Q1. Project discussion in detail and complete resume discussion
Round 5 - HR 

(1 Question)

  • Q1. General HR question and onboarding process

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA well , Go through DBMS AND SQL and you can look for OS and CN few questions are asked .
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(3 Questions)

  • Q1. Abput polymorphism? with code
  • Q2. STL MAPS? with code
  • Q3. Plaindrome & string related code
Round 2 - One-on-one 

(4 Questions)

  • Q1. Total c++ concepts hand written paper in code
  • Q2. Combination of 4 pillars of oops in one code
  • Q3. Double linked list code
  • Q4. Triangle code all codes in paper should explain line to line
Round 3 - Behavioral 

(3 Questions)

  • Q1. Memory leak issues explanation
  • Q2. About yourself
  • Q3. Salary any offers
Round 4 - HR 

(4 Questions)

  • Q1. About yourself ?
  • Q2. Salary negotiation
  • Q3. Why netcracker ?
  • Q4. Are you immediate joiner ?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is the internal working of a hashmap?
  • Q2. Design a Least Recently Used (LRU) cache.
Round 2 - Technical 

(2 Questions)

  • Q1. What are the SOLID principles in software engineering?
  • Q2. What design patterns have you worked with?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure was more and it was difficult round

Round 2 - Technical 

(1 Question)

  • Q1. It will depend on interviewer
Round 3 - Behavioral 

(1 Question)

  • Q1. It will be depending on Manager who is taking interview
Round 4 - HR 

(1 Question)

  • Q1. It will be very smooth

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a very good company overall I had very good learning and experience
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jan 2025.

Round 1 - Coding Test 

Test will be in hacker rank there would be a difficulty level between easy to medium

Round 2 - Technical 

(1 Question)

  • Q1. Question will be from data structure and easy to medium level of the programming laanguage question
Round 3 - HR 

(1 Question)

  • Q1. This is just to check your english ability
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

One coding test happen

Round 2 - Technical 

(2 Questions)

  • Q1. Java questions, spring boot framework questions
  • Q2. DSA using stream api
  • Ans. 

    Using stream API for Data Structures and Algorithms

    • Stream API in Java can be used to perform operations on collections like filtering, mapping, reducing, etc.

    • It can be used for implementing various data structures and algorithms efficiently.

    • For example, you can use stream API to find the sum of all elements in an array or filter out even numbers from a list.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Java questions and spring boot questions
  • Q2. One program using stream api
  • Ans. 

    Using stream API to filter a list of numbers and find the sum of even numbers

    • Use Stream.filter() to filter out even numbers

    • Use Stream.mapToInt() to convert stream to IntStream

    • Use IntStream.sum() to find the sum of even numbers

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Difference between Scheduled script and Map reduce script?
  • Ans. 

    Scheduled script runs on a predefined schedule, while Map reduce script processes large datasets in parallel.

    • Scheduled script is used for automating tasks at specific times, like sending reports daily at 8am.

    • Map reduce script is used for processing large datasets by splitting them into smaller chunks and processing them in parallel.

    • Scheduled script is typically used for routine tasks, while Map reduce script is used fo...

  • Answered by AI
  • Q2. Types of scripts in NetSuite.
  • Ans. 

    Types of scripts in NetSuite include SuiteScript, SuiteTalk, SuiteFlow, and SuiteBuilder.

    • SuiteScript: JavaScript-based scripts for customizing NetSuite functionality.

    • SuiteTalk: Web services integration for connecting NetSuite with external systems.

    • SuiteFlow: Visual workflow tool for automating business processes.

    • SuiteBuilder: Customization tool for modifying NetSuite forms, fields, and records.

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - One-on-one 

(3 Questions)

  • Q1. What are closures
  • Ans. 

    Closures are functions that have access to variables from their containing scope even after the scope has closed.

    • Closures allow functions to access variables from their outer function even after the outer function has finished executing.

    • They are commonly used in event handlers, callbacks, and asynchronous programming.

    • Closures help in maintaining state in functional programming.

  • Answered by AI
  • Q2. What is virtual DOM
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM used for efficient updates in web development.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing actual DOM manipulations.

    • When changes are made to the virtual DOM, a comparison is done with the actual DOM to determine the minimal updates needed.

    • This approach reduces the number of costly DOM operations, resulting in faster rende

  • Answered by AI
  • Q3. What are the data types in JS
  • Ans. 

    Data types in JavaScript include number, string, boolean, object, function, undefined, and null.

    • Number - represents numeric data, e.g. 10, 3.14

    • String - represents textual data, e.g. 'hello', '123'

    • Boolean - represents true or false values, e.g. true, false

    • Object - represents complex data structures, e.g. { key: 'value' }

    • Function - represents executable code, e.g. function() { }

    • Undefined - represents a variable that has ...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Write react code for counter
  • Ans. 

    React code for a simple counter

    • Create a functional component for the counter

    • Use useState hook to manage the count state

    • Render the count value and buttons to increment and decrement the count

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - it was good

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Hard
Process Duration
-
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. What is sql ? Deff between my sql and oracle sql
  • Q2. What is join ? Types of joins

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not join slk, if you don't have job then join

Brillio Interview FAQs

How many rounds are there in Brillio SDE (Software Development Engineer) interview?
Brillio interview process usually has 3 rounds. The most common rounds in the Brillio interview process are Resume Shortlist, Aptitude Test and Group Discussion.

Tell us how to improve this page.

Brillio SDE (Software Development Engineer) Salary
based on 4 salaries
₹4 L/yr - ₹12 L/yr
68% less than the average SDE (Software Development Engineer) Salary in India
View more details

Brillio SDE (Software Development Engineer) Reviews and Ratings

based on 2 reviews

4.0/5

Rating in categories

4.5

Skill development

4.5

Work-life balance

3.5

Salary

3.9

Job security

4.5

Company culture

3.5

Promotions

4.5

Work satisfaction

Explore 2 Reviews and Ratings
Senior Engineer
884 salaries
unlock blur

₹6.2 L/yr - ₹22.9 L/yr

Senior Software Engineer
562 salaries
unlock blur

₹6.8 L/yr - ₹25.9 L/yr

Software Engineer
259 salaries
unlock blur

₹3.5 L/yr - ₹14 L/yr

Technical Specialist
210 salaries
unlock blur

₹10.9 L/yr - ₹38.5 L/yr

Software Development Engineer
188 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Explore more salaries
Compare Brillio with

Accenture

3.8
Compare

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

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