Upload Button Icon Add office photos

Filter interviews by

BR Softech Interview Questions, Process, and Tips

Updated 10 Feb 2025

Top BR Softech Interview Questions and Answers

BR Softech Interview Experiences

Popular Designations

5 interviews found

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

(3 Questions)

  • Q1. How redux works
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux stores the entire state of the application in a single immutable state tree.

    • State is read-only and can only be changed by emitting an action, which describes what happened.

    • Reducers specify how the application's state changes in response to actions.

    • Redux uses pure functions to calculate the next state based on the previous state and the action.

    • Components c...

  • Answered by AI
  • Q2. Difference between class Components and functional components
  • Ans. 

    Class components use ES6 classes and have access to lifecycle methods, while functional components are simpler and use functional syntax.

    • Class components are defined using ES6 classes and extend from React.Component

    • Functional components are simpler and use functional syntax, making them easier to read and write

    • Class components have access to lifecycle methods such as componentDidMount, componentDidUpdate, etc.

    • Functiona...

  • Answered by AI
  • Q3. What is react Redux
  • Ans. 

    React Redux is a predictable state container for JavaScript apps.

    • React Redux is a library that helps manage the state of a React application.

    • It provides a centralized store for state management.

    • Actions are dispatched to update the state, and components can subscribe to changes in the state.

    • It helps in maintaining a single source of truth for the state of the application.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Kepp confidence everthing will be fine.

Skills evaluated in this interview

Senior React JS Developer Interview Questions asked at other Companies

Q1. What is singleton pattern. Where and how have you used it.
View answer (1)
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Simple code like prime number and other

Round 2 - Assignment 

Full assignment like have to develo[ped whole angular aplication

Interview Preparation Tips

Interview preparation tips for other job seekers - don't join

Angular JS Developer Interview Questions asked at other Companies

Q1. What are the possible ways to pass data between different components in angular.
View answer (1)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops concepts and clean architecture

Flutter Developer Interview Questions asked at other Companies

Q1. Write the code on paper how to intigrate the api in your flutter app?
View answer (2)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Like cricbuzz we have to do app

Round 2 - Coding Test 

Related js code like odd even, swap no,reduce function,signals

Angular Developer Interview Questions asked at other Companies

Q1. How can you pass data between parent and child components?, what is component interaction
View answer (5)

BR Softech interview questions for popular designations

 Angular Developer

 (1)

 IT Engineer

 (1)

 Angular JS Developer

 (1)

 Flutter Developer

 (1)

 Senior React JS Developer

 (1)

IT Engineer Interview Questions & Answers

user image Anonymous

posted on 16 Jun 2023

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

I applied via Walk-in and was interviewed before Jun 2022. 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 

In aptitude test they asked me Quantity ability such as percentage, si&ci, boat and stream, train problem que DI,
Logical reasoning with thinking ability and English grammar and composition

Round 3 - Technical 

(2 Questions)

  • Q1. Basic computer que such as hardware vs software, operating system, networking equipment like router, switch Lan, wan,man,with class ip Basic que of c program like int vs variable pointer condition statemen...
  • Q2. 1 Wap print even num in python/ C 2 Wap print Fibonacci series num in python
  • Ans. 

    Print even numbers in Python and Fibonacci series in Python.

    • For printing even numbers in Python, use a loop to iterate through a range of numbers and check if each number is divisible by 2.

    • For printing Fibonacci series in Python, use a loop to generate the series by adding the previous two numbers in the sequence.

    • Example for even numbers in Python: for i in range(1, 11): if i % 2 == 0: print(i)

    • Example for Fibonacci ser...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep practicing and believe your self

Skills evaluated in this interview

IT Engineer Interview Questions asked at other Companies

Q1. What is active directory ? Role of DNS server ? Difference between RAM & ROM ? Knowledge on installation of various softwares and Drivers ? Layers of OSI model ? TCP/IP Configuration ? Knowledge on various types of Networking devices ? ... read more
View answer (2)

Interview questions from similar companies

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Test
Experience: The first round had two programming questions and one question of database concepts.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: In the first technical interview, I was asked basic questions about the domain and my resume. There was also a lot of emphasis on problem solving abilities since I was asked to solve some puzzles.

Round: Technical Interview
Experience: The second technical interview was a written round where I was asked to code some searching / sorting variants , to test my ability to write quality code.

Round: Technical Interview
Experience: The last and the final round was probably the toughest and I was asked to design databases, with some constraints. I was given ample time to do it and it did take a lot of time. After that, we had some interesting questions about data structures and trees and that was it.

College Name: RNSIT, Bangalore

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python file handling, input,output, in a file, Sql joins, list sort in python, basics of GIS, Web service how to test

Interview Preparation Tips

Interview preparation tips for other job seekers - This is hust basics not deep dive, strog ur basics to crack

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. C2H profile basic technology based question s only

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your answer

I applied via Campus Placement and was interviewed in Jan 2021. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1.  Explain the features of OOPS with examples?
  • Ans. 

    OOPS is a programming paradigm based on objects that have properties and methods.

    • Encapsulation: bundling of data and methods that operate on that data within a single unit

    • Inheritance: ability of a class to inherit properties and methods from a parent class

    • Polymorphism: ability of objects to take on many forms or have multiple behaviors

    • Abstraction: hiding of complex implementation details and showing only the necessary ...

  • Answered by AI
  • Q2. Explain the following terms : Super, Throw, Final and Finally
  • Ans. 

    Explanation of Super, Throw, Final and Finally

    • Super: used to call a method from a parent class

    • Throw: used to throw an exception

    • Final: used to declare a constant or to prevent method overriding

    • Finally: used to execute code after try-catch block, regardless of exception

  • Answered by AI

Interview Questionnaire 

1 Question

  • Q1. Questions on the concept of oops and SQL

BR Softech Interview FAQs

How many rounds are there in BR Softech interview?
BR Softech interview process usually has 1-2 rounds. The most common rounds in the BR Softech interview process are Technical, Assignment and Coding Test.
How to prepare for BR Softech 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 BR Softech. The most common topics and skills that interviewers at BR Softech expect are Javascript, MySQL, OOPS, Angularjs and Ajax.
What are the top questions asked in BR Softech interview?

Some of the top questions asked at the BR Softech interview -

  1. 1 Wap print even num in python/ C 2 Wap print Fibonacci series num in pyt...read more
  2. Difference between class Components and functional compone...read more
  3. How redux wo...read more

Tell us how to improve this page.

BR Softech Interview Process

based on 5 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 27 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
Contus Interview Questions
4.2
 • 22 Interviews
Pitney Bowes Interview Questions
3.7
 • 21 Interviews
Knoldus Inc Interview Questions
4.0
 • 20 Interviews
DynPro Interview Questions
3.8
 • 20 Interviews
View all

BR Softech Reviews and Ratings

based on 40 reviews

2.7/5

Rating in categories

2.9

Skill development

2.6

Work-life balance

2.6

Salary

3.0

Job security

2.5

Company culture

2.5

Promotions

2.5

Work satisfaction

Explore 40 Reviews and Ratings
Java Developer
17 salaries
unlock blur

₹2 L/yr - ₹8 L/yr

Business Analyst
16 salaries
unlock blur

₹2.5 L/yr - ₹4.2 L/yr

PHP Developer
11 salaries
unlock blur

₹2 L/yr - ₹4.9 L/yr

Quality Analyst
11 salaries
unlock blur

₹2 L/yr - ₹7.2 L/yr

DOT NET Developer
8 salaries
unlock blur

₹4.5 L/yr - ₹6 L/yr

Explore more salaries
Compare BR Softech with

Accel Frontline

4.0
Compare

Pitney Bowes

3.7
Compare

Apmosys Technologies

3.5
Compare

DynPro

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