Upload Button Icon Add office photos

Filter interviews by

Brightly Software Senior Software Engineer Interview Questions and Answers

Updated 16 Feb 2024

Brightly Software Senior Software Engineer Interview Experiences

2 interviews found

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

I applied via LinkedIn and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Javascript concepts like Promise, ES6+ questions, React concepts like React Memo, array.reduce polyfill
Round 2 - One-on-one 

(1 Question)

  • Q1. Similar to round one with different set of question with some common ones
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion of past projects, role responsibilities, question regarding docer, web accessibility, TDD

Interview Preparation Tips

Interview preparation tips for other job seekers - Not too complex interview regarding any DS or algo. Should understand vanilla javascript concepts, ES6 and concepts pertaining to the framework you work on. Performance optimization and web accessibility

I was interviewed in Oct 2021.

Round 1 - Technical 

(1 Question)

  • Q1. Difference between Static and Singleton
  • Ans. 

    Static is a keyword used to declare a variable or method that belongs to the class. Singleton is a design pattern that restricts the instantiation of a class to one object.

    • Static members are accessed using the class name, while Singleton objects are accessed using a getInstance() method.

    • Static members are shared among all instances of a class, while Singleton objects are unique.

    • Static members are initialized when the c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good technical interview you should have good technical knowledge and troubleshootinmg skiils also if you are a senior person

Skills evaluated in this interview

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nt ... read more
asked in Capgemini
Q2. Pascal's TriangleYou are given an integer N. Your task is to retu ... read more
Q3. K Largest Elements You are given with an integer k and an array o ... read more
asked in GlobalLogic
Q4. System Design QuestionCreate a simple shopping application. They ... read more
asked in Info Edge
Q5. Buy and Sell StockYou are Harshad Mehta’s friend. He told you the ... read more

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is the design of the microservices implemented in your current project?
  • Q2. Can you provide a program that prints the second largest number in both an array and a list, illustrating implementations using streams as well as traditional methods?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(2 Questions)

  • Q1. Sql join query related questions
  • Q2. Sql find duplicate
  • Ans. 

    Use SQL query with GROUP BY and HAVING clause to find duplicates in a table.

    • Use GROUP BY clause to group rows with same values

    • Use HAVING clause to filter out groups with count greater than 1

    • Example: SELECT column_name, COUNT(*) FROM table_name GROUP BY column_name HAVING COUNT(*) > 1

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Package discussion
  • Q2. Company policies
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Technical discussion over how the microservices communicate internally.
  • Q2. Immutable class implementation
  • Q3. Singleton class implementation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Node.js question were asked
  • Q2. Project questions were also being asked
Round 2 - HR 

(2 Questions)

  • Q1. General Behavioural questions
  • Q2. Culture fit questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is Node.js event loop and how its work?
  • Ans. 

    Node.js event loop is a mechanism that allows Node.js to perform non-blocking I/O operations asynchronously.

    • Event loop is responsible for handling asynchronous operations in Node.js.

    • It allows Node.js to perform multiple operations simultaneously without blocking the execution.

    • Event loop continuously checks the event queue for new events and executes them in a non-blocking manner.

    • Callbacks are used to handle the complet

  • Answered by AI
  • Q2. DBMS questions like joins
Round 2 - Coding Test 

- Basic data structures questions.
- Node.js specific questions.

Round 3 - HR 

(1 Question)

  • Q1. Basic managerial questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for basics and know you job profile you are applying for knowing technology.

Skills evaluated in this interview

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

(7 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem of libraries and tools.

    • Examples: AngularJS, Angular 2, A

  • Answered by AI
  • Q2. What is routing
  • Ans. 

    Routing is the process of selecting a path for network traffic to travel from source to destination.

    • Routing involves determining the best path for data packets to travel through a network

    • Routers use routing tables to make decisions on where to send data packets

    • Routing protocols like OSPF and BGP help routers communicate and update routing information

  • Answered by AI
  • Q3. How many types of forms
  • Ans. 

    There are various types of forms, such as physical forms, digital forms, legal forms, etc.

    • Physical forms: Paper-based forms that are filled out by hand.

    • Digital forms: Electronic forms that are filled out online or through software.

    • Legal forms: Forms used for legal purposes, such as contracts or agreements.

  • Answered by AI
  • Q4. Lazy loading in angular
  • Ans. 

    Lazy loading in Angular is a technique used to load modules only when they are needed, improving performance by reducing initial load time.

    • Lazy loading helps in reducing the initial bundle size of the application by loading modules asynchronously.

    • It improves the performance of the application by only loading the modules that are required at a particular time.

    • Lazy loading is achieved by using the loadChildren property i...

  • Answered by AI
  • Q5. Rx jx operator in angular
  • Ans. 

    The rxjs operator in Angular is used for reactive programming and handling asynchronous data streams.

    • RxJS operators are functions that build on the observables foundation to enable sophisticated manipulation of asynchronous data streams.

    • Operators can be used to filter, transform, combine, and more on observables.

    • Example: map(), filter(), mergeMap(), switchMap()

  • Answered by AI
  • Q6. Testing frameworks how to works
  • Ans. 

    Testing frameworks are tools that help automate the process of testing software applications.

    • Testing frameworks provide a structure for writing and executing test cases.

    • They offer features like test data management, test case organization, and reporting.

    • Examples include JUnit for Java, NUnit for .NET, and pytest for Python.

  • Answered by AI
  • Q7. How to load a angular application
  • Ans. 

    To load an Angular application, you can use the Angular CLI command 'ng serve' to start a development server.

    • Use the Angular CLI command 'ng serve' to start a development server

    • Navigate to the project directory in the terminal and run 'ng serve'

    • Open a web browser and go to 'http://localhost:4200/' to view the application

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain some Design patterns
  • Ans. 

    Design patterns are reusable solutions to common problems in software design.

    • Design patterns help in creating flexible, maintainable, and scalable software.

    • Some common design patterns include Singleton, Factory, Observer, Strategy, and Decorator.

    • Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Factory pattern creates objects without specifying the exact class of object...

  • Answered by AI
  • Q2. Explain Delegates , async/ await
  • Ans. 

    Delegates are type-safe function pointers in C# used for implementing callbacks. async/await is used for asynchronous programming in C#.

    • Delegates in C# are similar to function pointers in C or C++. They allow methods to be passed as parameters to other methods.

    • Async/await in C# is used for asynchronous programming, allowing methods to run asynchronously without blocking the main thread.

    • Delegates can be used with async/

  • Answered by AI
Round 2 - Behavioral 

(2 Questions)

  • Q1. What is a interceptor
  • Ans. 

    An interceptor is a design pattern commonly used in software development to capture and manipulate requests and responses.

    • Interceptors can be used for logging, authentication, authorization, caching, error handling, etc.

    • In Angular, interceptors can be used to modify HTTP requests before they are sent and responses before they are received.

    • In Spring framework, interceptors can be used to intercept client requests and se

  • Answered by AI
  • Q2. What is Authentication, how to achieve it
  • Ans. 

    Authentication is the process of verifying the identity of a user or system.

    • Authentication involves confirming the identity of a user through credentials such as passwords, biometrics, or security tokens.

    • Common methods of authentication include single-factor authentication (e.g. password) and multi-factor authentication (e.g. password + SMS code).

    • Authentication can be achieved through protocols like OAuth, OpenID, SAML...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain about the services in android
  • Ans. 

    Services in Android are components that run in the background to perform long-running operations.

    • Services can be used to play music in the background while the user interacts with other apps.

    • They can also be used to download files from the internet even when the app is not in the foreground.

    • Services can run indefinitely or be scheduled to run at specific times.

    • They can communicate with other components using broadcasts

  • Answered by AI
  • Q2. MVVM architecture

Skills evaluated in this interview

Brightly Software Interview FAQs

How many rounds are there in Brightly Software Senior Software Engineer interview?
Brightly Software interview process usually has 2 rounds. The most common rounds in the Brightly Software interview process are One-on-one Round and Technical.
How to prepare for Brightly Software Senior Software Engineer 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 Brightly Software. The most common topics and skills that interviewers at Brightly Software expect are C#, .Net Core, SQL Server, .Net and Entity Framework.
What are the top questions asked in Brightly Software Senior Software Engineer interview?

Some of the top questions asked at the Brightly Software Senior Software Engineer interview -

  1. Difference between Static and Single...read more
  2. Javascript concepts like Promise, ES6+ questions, React concepts like React Mem...read more
  3. Similar to round one with different set of question with some common o...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Brightly Software interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Brightly Software Senior Software Engineer Salary
based on 18 salaries
₹22 L/yr - ₹29.5 L/yr
70% more than the average Senior Software Engineer Salary in India
View more details

Brightly Software Senior Software Engineer Reviews and Ratings

based on 3 reviews

4.0/5

Rating in categories

4.0

Skill development

4.3

Work-Life balance

3.7

Salary & Benefits

4.0

Job Security

4.0

Company culture

3.6

Promotions/Appraisal

4.0

Work Satisfaction

Explore 3 Reviews and Ratings
Software Engineer
29 salaries
unlock blur

₹8 L/yr - ₹23 L/yr

Senior Software Engineer
18 salaries
unlock blur

₹22 L/yr - ₹29.5 L/yr

Principal Software Engineer
12 salaries
unlock blur

₹34.5 L/yr - ₹49 L/yr

Associate Software Engineer
7 salaries
unlock blur

₹6 L/yr - ₹7.5 L/yr

Talent Acquisition Specialist
6 salaries
unlock blur

₹3.9 L/yr - ₹9.6 L/yr

Explore more salaries
Compare Brightly Software with

Freshworks

3.5
Compare

Zoho

4.3
Compare

HCLTech

3.5
Compare

TCS

3.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview