Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Brane Enterprises Team. If you also belong to the team, you can get access from here

Brane Enterprises Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Brane Enterprises Associate Technical Leader Interview Questions and Answers

Updated 4 Nov 2024

Brane Enterprises Associate Technical Leader Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain multithreading
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for better performance and responsiveness.

    • Multithreading allows multiple tasks to be executed simultaneously on a single CPU core.

    • Each thread has its own set of registers and stack, but shares the same memory space.

    • Threads can communicate with each other through shared memory or synchronization mechanisms like mutexes and semaphor...

  • Answered by AI
  • Q2. Rotate the 2d matrix
  • Ans. 

    Rotate a 2D matrix by 90 degrees clockwise

    • Transpose the matrix (swap rows with columns)

    • Reverse each row to get the final rotated matrix

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Some angular questions

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Have you faced any situation where you stuck in the project and how did you manage it?
  • Ans. 

    Yes, I faced a situation where I was stuck in a project and managed it effectively.

    • I encountered a complex technical issue that was impacting the project timeline.

    • I sought help from team members and conducted thorough research to find a solution.

    • I communicated effectively with stakeholders about the issue and proposed a revised plan to address it.

    • I prioritized tasks and delegated responsibilities to ensure smooth progr...

  • Answered by AI
  • Q2. What was the complex project you have worked on?
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Scenario based questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic sql queries about joins
Round 2 - HR 

(1 Question)

  • Q1. Regarding previous work experience
Interview experience
4
Good
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 was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. SOLID principle
  • Q2. Internal working of view model
  • Ans. 

    The view model is responsible for managing and providing data to the view in a way that is independent of the underlying data source.

    • View model acts as an intermediary between the view and the data source.

    • It retrieves data from the data source and transforms it into a format that is suitable for the view.

    • It may also perform data validation and business logic.

    • View model is typically implemented as a separate class or co...

  • Answered by AI
  • Q3. Find 2nd largest number
  • Ans. 

    To find the 2nd largest number in an array, sort the array in descending order and return the element at index 1.

    • Sort the array in descending order using a sorting algorithm

    • Return the element at index 1 as the 2nd largest number

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Code for Reverse BST
  • Ans. 

    Code to reverse a binary search tree (BST)

    • Traverse the BST in post-order

    • Swap the left and right child of each node

    • Return the root node of the reversed BST

  • Answered by AI
  • Q2. Creating a pointer array
  • Ans. 

    To create a pointer array of strings:

    • Declare a pointer array variable with the desired size

    • Allocate memory for each string in the array using malloc

    • Assign the memory address of each string to the corresponding array element

  • Answered by AI
  • Q3. Logic based questions like if I have 8 ball and a weighing balance with one heavy ball, how many times will I have to use it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calm and try to give your concept

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Prepare for Javascript in details
  • Q2. Prepare for NodeJs and architecture in depth
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. What are you interested in this role?

Interview Preparation Tips

Interview preparation tips for other job seekers - Mainly behavioral

I applied via Naukri.com and was interviewed in Feb 2021. There were 4 interview rounds.

Interview Questionnaire 

12 Questions

  • Q1. Which design pattern implemented in project.
  • Ans. 

    Implemented the Observer design pattern.

    • Used to maintain consistency between related objects

    • Allows for one-to-many relationships between objects

    • Used in event-driven systems

    • Example: Used to update UI when data changes in backend

  • Answered by AI
  • Q2. Solid principals
  • Q3. Code coverage
  • Q4. Unit testing
  • Q5. Cloud services
  • Q6. Cloud integrations
  • Q7. Detail architecture of current project and what role you played
  • Q8. What software architecture you implimented and why?
  • Ans. 

    I have implemented a microservices architecture for scalability and flexibility.

    • Implemented microservices architecture using Docker and Kubernetes

    • Used API Gateway for routing and load balancing

    • Implemented service discovery using Consul

    • Implemented circuit breaker pattern using Hystrix

    • Implemented centralized logging using ELK stack

    • Implemented distributed tracing using Zipkin

    • Implemented event-driven architecture using Kaf...

  • Answered by AI
  • Q9. Writing some code logic snippet like sudo code
  • Q10. How you improved stored procedure performance
  • Ans. 

    I improved stored procedure performance by optimizing queries and indexes.

    • Identified and removed unnecessary joins and subqueries

    • Used appropriate indexing to speed up query execution

    • Reduced the number of round trips to the database by using batch processing

    • Rewrote complex queries to simpler ones

    • Used stored procedure parameters instead of variables to avoid recompilation

    • Used SET NOCOUNT ON to reduce network traffic

    • Used

  • Answered by AI
  • Q11. DB normalization and indexing
  • Q12. C# oops questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focused more technical questions like Design pattern implementation,Database schema design, Unit testing, code coverage, Single page app Architecture,Cloud integration questions.Lastly team handling

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. The question is about the project.
  • Q2. Microservice, AWS services related question
Round 2 - Technical 

(3 Questions)

  • Q1. More on SOLID principals
  • Q2. Team lead's Scrum based responsibilities
  • Ans. 

    The team lead's Scrum based responsibilities include facilitating daily stand-ups, sprint planning, backlog grooming, and ensuring the team follows Scrum principles.

    • Facilitating daily stand-ups to ensure team members are aligned and aware of each other's progress

    • Leading sprint planning meetings to define the scope of work for each sprint

    • Organizing backlog grooming sessions to prioritize and refine user stories

    • Ensuring ...

  • Answered by AI
  • Q3. Node.js Interview question
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion about Skills and interest 9 managerial rounds

Interview Preparation Tips

Topics to prepare for 3Pillar Global Technical Lead interview:
  • AWS
  • Node.Js
  • SOLID
Interview preparation tips for other job seekers - the interview standard is according to typical service based company.

Brane Enterprises Interview FAQs

How many rounds are there in Brane Enterprises Associate Technical Leader interview?
Brane Enterprises interview process usually has 2 rounds. The most common rounds in the Brane Enterprises interview process are Technical.
What are the top questions asked in Brane Enterprises Associate Technical Leader interview?

Some of the top questions asked at the Brane Enterprises Associate Technical Leader interview -

  1. Explain multithread...read more
  2. Rotate the 2d mat...read more
  3. Some angular questi...read more

Tell us how to improve this page.

Brane Enterprises Associate Technical Leader Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

ITC Interview Questions
3.9
 • 545 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
Adani Group Interview Questions
3.9
 • 187 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
Chetu Interview Questions
3.3
 • 172 Interviews
View all

Brane Enterprises Associate Technical Leader Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Associate Solution Lead
596 salaries
unlock blur

₹6.5 L/yr - ₹24 L/yr

Solution Lead
261 salaries
unlock blur

₹12 L/yr - ₹45 L/yr

Product Manager
188 salaries
unlock blur

₹10.8 L/yr - ₹40 L/yr

Software Developer
103 salaries
unlock blur

₹7 L/yr - ₹26 L/yr

Business Analyst
101 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Explore more salaries
Compare Brane Enterprises with

Tata Group

4.2
Compare

Reliance Industries

4.0
Compare

Aditya Birla Group

4.1
Compare

Mahindra & Mahindra

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