Upload Button Icon Add office photos

Filter interviews by

Brillo Technologies Software Development Engineer Interview Questions, Process, and Tips

Updated 5 Apr 2024

Top Brillo Technologies Software Development Engineer Interview Questions and Answers

Brillo Technologies Software Development Engineer Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 hr - Basic Programs on Strings, Arrays

Round 2 - Technical 

(4 Questions)

  • Q1. How to create Tables
  • Ans. 

    Tables can be created in databases using SQL commands like CREATE TABLE.

    • Use CREATE TABLE statement in SQL to create a new table

    • Specify the table name and column names along with their data types

    • Add constraints like primary key, foreign key, etc. if needed

  • Answered by AI
  • Q2. How to create ER Diagram
  • Ans. 

    ER Diagram is created by identifying entities, attributes, and relationships in a database.

    • Identify entities in the database (e.g. Customer, Product, Order)

    • Identify attributes for each entity (e.g. Customer has attributes like Name, Address)

    • Identify relationships between entities (e.g. Customer places Order)

  • Answered by AI
  • Q3. How CRUD operations are made in Node.js
  • Ans. 

    CRUD operations in Node.js involve creating, reading, updating, and deleting data from a database.

    • Use libraries like Express and Mongoose to handle CRUD operations in Node.js

    • Create: Use HTTP POST method to add new data to the database

    • Read: Use HTTP GET method to retrieve data from the database

    • Update: Use HTTP PUT or PATCH method to modify existing data in the database

    • Delete: Use HTTP DELETE method to remove data from t

  • Answered by AI
  • Q4. Explain MVC architecture
  • Ans. 

    MVC architecture is a design pattern used in software development to separate the application into three main components: Model, View, and Controller.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the data to the user.

    • Controller acts as an intermediary between Model and View, handling user input and updating the Model accordingly.

    • Example: In a web application, the Mod...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Get your basic concepts strong with Examples

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me something that's not mentioned in your resume?
  • Q2. What is your weakness and how did you handled?
  • Q3. What is your strength?

Software Development Engineer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Given an acyclic graph of a city where each edge represents a roa ... read more
asked in Hike
Q2. You have application which shows list of all contacts, the Name c ... read more
asked in Amazon
Q3. Given a m * n matrix filled with '0's and 'x's at random position ... read more
asked in Samsung
Q4. puzzle-There are 1000 wine bottles. One of the bottles contains p ... read more
asked in Accenture
Q5. Have you worked on cloud technology? Architecture of cloud
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic questions like portions, percentage and quants

Round 2 - Coding Test 

Really basic question like star pyramid

Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions and some basic KT session

Interview Preparation Tips

Interview preparation tips for other job seekers - Just stick to the basic

Interview questions from similar companies

I applied via Referral and was interviewed before Mar 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Java questions - basic oops concepts
  • Q2. Basic sql queries and table creation, joints were asked
Round 2 - HR 

(4 Questions)

  • Q1. Why are you looking for a change?
  • Q2. Where do you see yourself in 5 years?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Initially 1 aptitude round was there and english essay was there in. Then those who were selected in this round they will be into tech and then hr round. Searching job is like you should never lose hope and take the failure as stepping stones.keep on self motivating and dont hestitate to give ur best on 50 th interview if not getting selected till 49 interviews.ur name may be written in that. Stay positive and upgrade your skills

Interview Questionnaire 

1 Question

  • Q1. Core java, multi threading.

I applied via Campus Placement and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Programming Language, SQL Queries, OOPS Concepts, Certifications and Questions on Projects and Certifications done.

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Describe last project. What is entity framework?
  • Ans. 

    Entity Framework is an ORM tool used to map database tables to classes in .NET applications.

    • Entity Framework simplifies database access by allowing developers to work with objects instead of SQL statements.

    • It supports various database providers such as SQL Server, MySQL, and Oracle.

    • It provides features like LINQ to Entities, automatic change tracking, and database migrations.

    • Example: In my last project, I used Entity F...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 girls and they just took 2 minutes and wrap up the interview. Bad experience.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Pretty easy test, 100 questions in 180 minutes. After that a GD round, then Technical round then HR round.

Round 2 - Group Discussion 

Kind of essay writing

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are eager to learn, they will definitely hire you.

I applied via Naukri.com and was interviewed before Aug 2021. There were 3 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 - Aptitude Test 

1 hr
Aptitude, general engilsh

Round 3 - Technical 

(1 Question)

  • Q1. About final year projects and some questions about general programming questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well for aptitude tests and have strong knowledge in your projects

I applied via Campus Placement and was interviewed before Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Why you want to work in hexaware?
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Have confidence and yeah when they ask tell me about yourself, tell them what's not there in the resume.

Brillo Technologies Interview FAQs

How many rounds are there in Brillo Technologies Software Development Engineer interview?
Brillo Technologies interview process usually has 2 rounds. The most common rounds in the Brillo Technologies interview process are Coding Test, HR and Aptitude Test.
What are the top questions asked in Brillo Technologies Software Development Engineer interview?

Some of the top questions asked at the Brillo Technologies Software Development Engineer interview -

  1. How CRUD operations are made in Node...read more
  2. How to create ER Diag...read more
  3. How to create Tab...read more

Tell us how to improve this page.

Brillo Technologies Software Development Engineer Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more
Brillo Technologies Software Development Engineer Salary
based on 4 salaries
₹8.1 L/yr - ₹9.3 L/yr
37% less than the average Software Development Engineer Salary in India
View more details
Senior Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Specialist
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Lead
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Brillo Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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