Upload Button Icon Add office photos
Engaged Employer

i

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

BrainCave Software Verified Tick

Compare button icon Compare button icon Compare
1.6

based on 16 Reviews

Filter interviews by

BrainCave Software Interview Questions and Answers

Updated 18 Dec 2024

BrainCave Software Interview Experiences

Popular Designations

3 interviews found

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

(2 Questions)

  • Q1. Basic about react.js
  • Q2. Hooks

React Native Developer Interview Questions asked at other Companies

Q1. 3. What is the use useEffect Hook in react native? and how you relate it with lifecycle method which is class components?
View answer (3)

I applied via Naukri.com and was interviewed in Apr 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. Build mode in flutter
  • Ans. 

    Build mode in Flutter determines how the app is compiled and optimized for performance.

    • Flutter has three build modes: debug, profile, and release.

    • Debug mode is used for development and has additional features like hot reload and debugging tools.

    • Profile mode is used for performance profiling and optimization.

    • Release mode is used for publishing the app and has the highest level of optimization.

    • Build modes can be specifie

  • Answered by AI
  • Q2. Dart, advantage of flutter

Interview Preparation Tips

Interview preparation tips for other job seekers - Very useless company: these are here that Chandan Das and Pomy consider their employees as slaves and fire the employees from the company.

Skills evaluated in this interview

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)

Content Writer Interview Questions & Answers

user image Mohammad Arfat Alam

posted on 21 Oct 2022

I applied via LinkedIn and was interviewed in Apr 2022. There were 3 interview rounds.

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 - HR 

(2 Questions)

  • Q1. Introductions of yourself
  • Q2. What did you left the previous job
Round 3 - Assignment 

Importance of NFTs in Gaming industry

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. First introduce yourself
2. Then provide information educational Qualifications from latest to first.
3. Do not talk ill of previous employer even if he was not good employer

Content Writer Interview Questions asked at other Companies

Q1. What are the steps to follow to write good content?
View answer (5)

Interview questions from similar companies

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

I applied via Job Portal and was interviewed in Nov 2024. There were 9 interview rounds.

Round 1 - Group Discussion 

What are the key principal you follow for telerehabilitation

Round 2 - Group Discussion 

Introduce your self ?

Round 3 - Assignment 

What all techniques and methode do you folow

Round 4 - HR 

(2 Questions)

  • Q1. What are your hobbies ?
  • Ans. 

    My hobbies include hiking, playing tennis, and cooking new recipes.

    • Hiking in local trails and national parks

    • Playing tennis at the community courts

    • Experimenting with new recipes in the kitchen

  • Answered by AI
  • Q2. Tell your work experience
Round 5 - One-on-one 

(2 Questions)

  • Q1. How do you handle the cases where patietn is not responding properly
  • Q2. Please explain how do you treate a patient with chronic case ?
Round 6 - One-on-one 

(2 Questions)

  • Q1. How do you builde rappo with new patient
  • Q2. What is your overall expericne c
Round 7 - One-on-one 

(1 Question)

  • Q1. What do you know about our company
Round 8 - One-on-one 

(1 Question)

  • Q1. What is your take on patietn ?
Round 9 - Aptitude Test 

It took total 6 days for interview and revert

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Networking related concepts
Round 2 - Technical 

(1 Question)

  • Q1. Defence related questions
Round 3 - One-on-one 

(1 Question)

  • Q1. One on one with Vice president
Round 4 - HR 

(1 Question)

  • Q1. HR package discussions
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find a number in array which is greater than left and right element
  • Ans. 

    Iterate through array and check if element is greater than its adjacent elements

    • Iterate through array and check if current element is greater than element at index-1 and index+1

    • Return the first element found that satisfies the condition

    • Handle edge cases where element is at the beginning or end of array

  • Answered by AI
  • Q2. Find the number in the string and return the sum of numbers
  • Ans. 

    Find and sum numbers in a string

    • Iterate through each character in the string

    • Check if the character is a digit

    • If digit, convert to integer and add to sum

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I solved all the DSA question with more optimised way , but interviewer was so immature to understand he joined two month back and only 2 yoe , he was not so skill full , I am pass out from tier-1 colg of India . Such a bad experiance . I was so confident that They are not going to hire me because my current CTC was too high , still they scheduled my interview. They pay very less , and I checked everyone going through interview process facing same what I faced . I will advice not go through the interview process . I have funny story , recruiter called me after seeing my resume , and he thought my name is BITS pilani . Which is my colg.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

Mintu Babu lives in a smaller house than her brother and in a larger house than her parents. Her children reside with her, and she has no other relatives. If Mintu Babu's relative U lives in a larger house than her relative S, then all the following may be true except: \n\n1) S is U's father \n\n2) S is U's mother \n\n3) U is younger than S \n\n4) S is younger than U

Round 2 - Technical 

(2 Questions)

  • Q1. 1. merge two linked list
  • Ans. 

    Merge two sorted linked lists without creating new nodes by rearranging existing nodes.

    • Traverse both linked lists simultaneously

    • Compare the values of nodes and rearrange pointers accordingly

    • Continue until one of the lists is fully traversed

  • Answered by AI
  • Q2. 2. reverse a linked list.
  • Ans. 

    Reverse a linked list by changing the direction of pointers.

    • Start with three pointers: current, previous, and next.

    • Iterate through the linked list, updating pointers to reverse the direction.

    • Update the head of the linked list to be the previous node once iteration is complete.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via Job Portal

Round 1 - HR 

(2 Questions)

  • Q1. Network concept basics
  • Q2. Routing protocol,ospf
Round 2 - Technical 

(1 Question)

  • Q1. Deep knowledge testing in networking domain
  • Ans. 

    Deep knowledge testing in networking domain involves understanding protocols, configurations, security measures, and troubleshooting techniques.

    • Understanding various networking protocols such as TCP/IP, DNS, DHCP, etc.

    • Knowledge of network configurations including routers, switches, firewalls, etc.

    • Understanding network security measures like VPNs, encryption, firewalls, etc.

    • Ability to troubleshoot network issues using t

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Job Portal and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Can we perform data driven testing using postman
  • Ans. 

    Yes, Postman supports data driven testing through the use of variables and data files.

    • Postman allows users to define variables and use them in requests for data driven testing.

    • Data files such as CSV or JSON can be imported into Postman to drive test data.

    • Iterations can be set up in Postman to run tests with different data sets.

  • Answered by AI
  • Q2. Basic coding questions on integer array missing numbers

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. About yourself ?
  • Q2. Just asked questions on previous role
  • Q3. How many types of IOT devices are there
  • Ans. 

    There are three main types of IoT devices: consumer, commercial, and industrial.

    • Consumer IoT devices: Smart home devices like thermostats, lights, and security cameras.

    • Commercial IoT devices: Smart meters, asset tracking systems, and connected vending machines.

    • Industrial IoT devices: Sensors and actuators used in manufacturing, agriculture, and healthcare.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't waste time as the interviewer doesn't ask you questions related to JD.He asked me questions related to my previous work experience.Hr is good but interviewer is out of mind .I think interviewer wants to select their known candidates or relatives.Even if you give all answers they will simply reject you.

BrainCave Software Interview FAQs

How many rounds are there in BrainCave Software interview?
BrainCave Software interview process usually has 2 rounds. The most common rounds in the BrainCave Software interview process are Resume Shortlist, Technical and HR.
How to prepare for BrainCave Software 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 BrainCave Software. The most common topics and skills that interviewers at BrainCave Software expect are Bootstrap, Business Development, CSS, Cold Calling and Content Development.
What are the top questions asked in BrainCave Software interview?

Some of the top questions asked at the BrainCave Software interview -

  1. Build mode in flut...read more
  2. Dart, advantage of flut...read more
  3. Basic about react...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 785 Interviews
XenonStack Interview Questions
3.3
 • 25 Interviews
View all

BrainCave Software Reviews and Ratings

based on 16 reviews

1.6/5

Rating in categories

2.0

Skill development

1.9

Work-life balance

1.5

Salary

1.5

Job security

1.9

Company culture

1.4

Promotions

1.9

Work satisfaction

Explore 16 Reviews and Ratings
React Native Developer
5 salaries
unlock blur

₹1.1 L/yr - ₹3.7 L/yr

Laravel Developer
4 salaries
unlock blur

₹1.3 L/yr - ₹2.4 L/yr

Content Writer
3 salaries
unlock blur

₹1.5 L/yr - ₹1.8 L/yr

SEO Executive
3 salaries
unlock blur

₹1.5 L/yr - ₹3 L/yr

Senior SEO Specialist
3 salaries
unlock blur

₹2.5 L/yr - ₹3.6 L/yr

Explore more salaries
Compare BrainCave Software with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

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