Upload Button Icon Add office photos

Filter interviews by

Brainpulse Technologies Interview Questions and Answers

Updated 14 Apr 2023

Brainpulse Technologies Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Mar 2023. 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 Resume tips
Round 2 - Aptitude Test 

I got a few simple questions to gauge my verbal abstract and logical reasoning

Round 3 - Technical 

(5 Questions)

  • Q1. Describe a product you have written for before for three uninterupted minutes.
  • Q2. Describe your favorite movie for five minutes uniterupted
  • Ans. 

    My favorite movie is The Shawshank Redemption, a story of hope, friendship, and redemption.

    • The movie is based on a Stephen King novella and directed by Frank Darabont.

    • It follows the story of Andy Dufresne, a banker who is sentenced to life in prison for a crime he didn't commit.

    • The movie explores themes of friendship, hope, and redemption as Andy befriends fellow inmate Red and works to clear his name.

    • The performances ...

  • Answered by AI
  • Q3. How would you describe your past working experience?
  • Q4. What role do you think you can perfom other than the one applied for?
  • Ans. 

    I can perform the role of a social media manager or a digital marketer.

    • I have experience in managing social media accounts and creating content for them.

    • I am familiar with various social media platforms and their algorithms.

    • I have knowledge of digital marketing strategies and can create effective campaigns.

    • For example, in my previous job, I was responsible for managing the company's social media accounts and creating c...

  • Answered by AI
  • Q5. What is your creative process as you write?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be confident, celebrate your wins and take rejection in stride and keep moving forward.

Copywriter and Content Writer Interview Questions asked at other Companies

Q1. What role do you think you can perfom other than the one applied for?
View answer (2)

Jobs at Brainpulse Technologies

View all

Interview questions from similar companies

I was interviewed before May 2021.

Round 1 - Aptitude Test 

System engineer

Round 2 - Aptitude Test 

Basic c programming

Round 3 - Technical 

(2 Questions)

  • Q1. Interviewer makes interview smooth and friendly meeting
  • Q2. Write a program reverse number and palindrome in c and basic c programming

Interview Preparation Tips

Interview preparation tips for other job seekers - develope Skills and attitude and prepare well in programming

I applied via Approached by Company and was interviewed before Nov 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Array and OOPS concept. Given set of questions to solve with each oops concept

Round 2 - One-on-one 

(3 Questions)

  • Q1. Out of box thinking. Given logical puzzles and ask you to analyze and provide your understanding
  • Q2. Explain the inheritance concept with car model
  • Ans. 

    Inheritance in car model refers to the ability of a new car model to inherit features and characteristics from an existing car model.

    • Inheritance allows for the creation of a new car model that shares common features with an existing car model

    • The new car model can add or modify features inherited from the existing car model

    • For example, a new sports car model can inherit features from a base car model such as engine, tra...

  • Answered by AI
  • Q3. Probability question with fruits and boxes

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with oops concept and be more creative. Dont find complex answers for simple questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Full c concept MCQ with IQ and Computaional Thinking

Round 2 - Technical 

(2 Questions)

  • Q1. Number system convertion in c
  • Ans. 

    Number system conversion in C involves converting numbers between different bases, such as decimal to binary or hexadecimal.

    • Use functions like itoa() to convert integers to strings in different bases

    • Use strtol() to convert strings to integers in different bases

    • Remember to specify the base when converting numbers

  • Answered by AI
  • Q2. Pointers, struct, Data Structure
Round 3 - One-on-one 

(2 Questions)

  • Q1. Decimal to Binary Convertion
  • Q2. Hexa Decimal to Binary convertion

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning and Aptitude

Round 2 - Coding Test 

Functions with Pointers and strings concepts

Round 3 - Technical 

(2 Questions)

  • Q1. Mainly on Pointers and Dynamic Memory Allocation of 2-D Array
  • Q2. Structure Padding and Packing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in depth in C and mainly on Bit-Manipulation.
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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. What is a pointer to pointer
  • Ans. 

    A pointer to pointer is a variable that stores the memory address of another pointer variable.

    • It is used to create dynamic data structures like linked lists and trees.

    • It allows multiple levels of indirection.

    • It is denoted by ** in C and C++.

    • Example: int **ptr;

    • Example: ptr = &p; where p is a pointer variable.

  • Answered by AI
  • Q2. Class, object, inheritance, polymorphism,dbms

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on pointers,work on ds, study network analysis, learn more about the job and company

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Normal question about past experience
  • Q2. When you can join and all
Round 2 - Assignment 

SQL test on Select query, insert, create

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

(2 Questions)

  • Q1. What are the main principles of the Java
  • Ans. 

    Main principles of Java include object-oriented programming, platform independence, and automatic memory management.

    • Object-oriented programming: Java is based on classes and objects, allowing for encapsulation, inheritance, and polymorphism.

    • Platform independence: Java code can run on any platform that has a Java Virtual Machine (JVM) installed.

    • Automatic memory management: Java uses garbage collection to automatically m

  • Answered by AI
  • Q2. What is the different between == and equals method
  • Ans. 

    The == operator compares the memory addresses of two objects, while the equals method compares the content of two objects.

    • The == operator is used to compare the memory addresses of two objects in Java.

    • The equals method is used to compare the content of two objects in Java.

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will return false, but str1.equals(str2) will return true

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Knowledge in pm
  • Q2. Knowledge in BA
Contribute & help others!
anonymous
You can choose to be anonymous

Brainpulse Technologies Interview FAQs

How many rounds are there in Brainpulse Technologies interview?
Brainpulse Technologies interview process usually has 3 rounds. The most common rounds in the Brainpulse Technologies interview process are Resume Shortlist, Aptitude Test and Technical.
How to prepare for Brainpulse Technologies 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 Brainpulse Technologies. The most common topics and skills that interviewers at Brainpulse Technologies expect are Javascript, HTML, PHP, Digital Marketing and MySQL.
What are the top questions asked in Brainpulse Technologies interview?

Some of the top questions asked at the Brainpulse Technologies interview -

  1. What role do you think you can perfom other than the one applied f...read more
  2. Describe your favorite movie for five minutes uniterup...read more

Recently Viewed

SALARIES

Salesforce

JOBS

Connect Infosoft

No Jobs

JOBS

Oracle

No Jobs

COMPANY BENEFITS

BMC Software

No Benefits

INTERVIEWS

Cult.fit

No Interviews

JOBS

Copypower Media

No Jobs

JOBS

YaaraDigi Media

No Jobs

INTERVIEWS

TRADEJINI

No Interviews

INTERVIEWS

Myholidays

No Interviews

REVIEWS

GeeksForGeeks

No Reviews

Tell us how to improve this page.

Brainpulse Technologies Interview Process

based on 1 interview

Interview experience

4
  
Good
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.3
 • 22 Interviews
Pitney Bowes Interview Questions
3.8
 • 21 Interviews
Knoldus Inc Interview Questions
3.9
 • 20 Interviews
View all

Brainpulse Technologies Reviews and Ratings

based on 13 reviews

3.8/5

Rating in categories

3.9

Skill development

3.6

Work-life balance

3.9

Salary

3.6

Job security

3.3

Company culture

3.3

Promotions

4.0

Work satisfaction

Explore 13 Reviews and Ratings
HTML Developer

Noida,

Sector-65

1-3 Yrs

Not Disclosed

Content Writer

Noida

2-4 Yrs

₹ 3.7-3.9 LPA

Explore more jobs
Softwaretest Engineer
18 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Android Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Writer Editor
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Brainpulse Technologies with

Accel Frontline

4.0
Compare

Pitney Bowes

3.8
Compare

Apmosys Technologies

3.4
Compare

Apex CoVantage

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