Upload Button Icon Add office photos
Engaged Employer

i

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

BrainerHub Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

BrainerHub Interview Questions and Answers

Updated 19 Jun 2024

BrainerHub Interview Experiences

Popular Designations

4 interviews found

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

(1 Question)

  • Q1. ABOUT REACT JS AND FEW OTHER QUESTIONS

React Js Frontend Developer Interview Questions asked at other Companies

Q1. 1. What is difference between abstract class and interface ?
View answer (1)

Analyst Interview Questions & Answers

user image Anonymous

posted on 19 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Profile discussed
Round 2 - Aptitude Test 

Reasoning Questions and English based questions.

Analyst Interview Questions asked at other Companies

Q1. N-th Fibonacci Number Problem Statement Given an integer ‘N’, your task is to find and return the N’th Fibonacci number using matrix exponentiation. Since the answer can be very large, return the answer modulo 10^9 + 7. Formula: F(n) = F(n-... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Overall about react.js & node.js
Round 3 - Coding Test 

1 day & some crud using react.js & typescript

Round 4 - HR 

(1 Question)

  • Q1. Basic questions

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Technical questions asked according experience.
Round 3 - HR 

(1 Question)

  • Q1. Introduce self & experience

Senior Android Developer Interview Questions asked at other Companies

Q1. Binary Array Sorting Problem Statement You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting. Input: The first line contains an integer ‘T’ denoti... read more
View answer (1)

BrainerHub interview questions for popular designations

 Analyst

 (1)

 Full Stack Developer

 (1)

 React Js Frontend Developer

 (1)

 Senior Android Developer

 (1)

Jobs at BrainerHub

View all

Interview questions from similar companies

Round 1 - Aptitude Test 
Round 2 - Coding Test 
Round 3 - Technical 

(1 Question)

  • Q1. Had discussion about C, DS in depth
Round 4 - Technical 

(1 Question)

  • Q1. Questions about C and DS and basics of OS.
Round 5 - HR 

(1 Question)

  • Q1. What are the strengths and weaknesses of yours.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through C, DS, Linux and C++.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Paper based exam based on C and embedded c

Round 2 - One-on-one 

(1 Question)

  • Q1. Relevant questions asked
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Focuis on math and on science language

Round 2 - Coding Test 

Focus on mathematics

I applied via Other and was interviewed in Oct 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Basic C language question like what is pointer ,Array,structure,Call by reference, Difference between union and structure. Some programming question are prime number,factorial,fabonacci series,strings etc

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good first of all learn every basic programming question and some times it also depend on interviewer

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. 1) What is volatile? 2) What is constant? 3) Can we use volatile and const at a time?4) What is ISR how it works?
  • Ans. 

    Answers to questions related to software engineering concepts.

    • Volatile is a keyword used to indicate that a variable's value can be changed unexpectedly.

    • Constant is a keyword used to indicate that a variable's value cannot be changed once it is assigned.

    • Volatile and const can be used together to indicate that a variable's value cannot be changed and that it may change unexpectedly.

    • ISR stands for Interrupt Service Routi...

  • Answered by AI
  • Q2. What is pointer? Explain dangling pointer, null pointer, void pointer.
  • Ans. 

    A pointer is a variable that stores the memory address of another variable. Dangling, null, and void pointers are types of pointers.

    • Dangling pointer: a pointer that points to a memory location that has been deallocated or freed

    • Null pointer: a pointer that does not point to any memory location

    • Void pointer: a pointer that has no specific data type and can point to any data type

  • Answered by AI
  • Q3. Storage classes explain all the storage classes in c.
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • auto: default storage class for local variables

    • register: stores variables in CPU registers for faster access

    • static: retains value between function calls

    • extern: used to access global variables across multiple files

  • Answered by AI
  • Q4. Compilation stages.
  • Q5. Projects done at previous company with clear explanation.
  • Q6. CAN, SPI, I2C, UART differences.
  • Q7. Explain CAN data frame.
  • Ans. 

    CAN data frame is a message format used in Controller Area Network (CAN) protocol.

    • CAN data frame consists of 7 fields: Start of Frame (SOF), Arbitration ID, Control Bits, Data Length Code (DLC), Data Field, Cyclic Redundancy Check (CRC), and End of Frame (EOF).

    • The Arbitration ID field is used to identify the message priority and the source of the message.

    • The Data Field can contain up to 8 bytes of data.

    • The CRC field is...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through whatever things you have kept on your resume. Go through the project. Practice C as much as possible most of the questions will be asked on C programming.

Skills evaluated in this interview

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

I appeared for an interview before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a Prime number function using C
  • Ans. 

    A function in C to check if a number is prime or not

    • Create a function that takes an integer as input

    • Check if the input number is divisible by any number from 2 to its square root

    • If it is not divisible by any number, return true (prime), else return false (not prime)

  • Answered by AI
  • Q2. Write some basic codes for Manipulation in array
  • Ans. 

    Basic codes for array manipulation including sorting, searching, and filtering.

    • Use built-in functions like sort() for sorting arrays.

    • Implement algorithms like binary search for searching in arrays.

    • Utilize filter() method for filtering arrays based on specific criteria.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, Keep calm and make sure you mentally prepared.

Skills evaluated in this interview

BrainerHub Interview FAQs

How many rounds are there in BrainerHub interview?
BrainerHub interview process usually has 2-3 rounds. The most common rounds in the BrainerHub interview process are Technical, HR and Resume Shortlist.
How to prepare for BrainerHub 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 BrainerHub. The most common topics and skills that interviewers at BrainerHub expect are Javascript, HTML, CSS, Angular and JQuery.
What are the top questions asked in BrainerHub interview?

Some of the top questions asked at the BrainerHub interview -

  1. Technical questions asked according experien...read more
  2. ABOUT REACT JS AND FEW OTHER QUESTI...read more
  3. overall about react.js & node...read more

Tell us how to improve this page.

BrainerHub Interview Process

based on 6 interviews

Interview experience

4.2
  
Good
View more

Interview Questions from Similar Companies

Ichhapurti.com Interview Questions
2.3
 • 19 Interviews
WovVTech Interview Questions
4.3
 • 12 Interviews
Pagarbook Interview Questions
3.6
 • 10 Interviews
View all

BrainerHub Reviews and Ratings

based on 39 reviews

4.1/5

Rating in categories

4.0

Skill development

3.9

Work-life balance

3.9

Salary

3.7

Job security

3.9

Company culture

3.7

Promotions

3.9

Work satisfaction

Explore 39 Reviews and Ratings
Software Engineer - Laravel

Ahmedabad

3-4 Yrs

Not Disclosed

Software Engineer - Python

Ahmedabad

3-8 Yrs

Not Disclosed

Digital Marketing Executive

Ahmedabad

1-3 Yrs

Not Disclosed

Explore more jobs
Software Engineer
12 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Software Developer
8 salaries
unlock blur

₹3.4 L/yr - ₹5.4 L/yr

Senior Software Engineer
6 salaries
unlock blur

₹6.8 L/yr - ₹10.8 L/yr

Hardware & Networking Engineer
4 salaries
unlock blur

₹3.2 L/yr - ₹3.2 L/yr

Senior Android Developer
4 salaries
unlock blur

₹7.8 L/yr - ₹8.5 L/yr

Explore more salaries
Compare BrainerHub with

Yalamanchili Software Exports

3.3
Compare

ScoreMe Solutions

4.3
Compare

Xtancia Technosoft

4.0
Compare

Global Edge Software

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