Upload Button Icon Add office photos
Engaged Employer

i

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

Bhavna Corp. Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Bhavna Corp. Interview Questions and Answers

Updated 30 May 2025
Popular Designations

7 Interview questions

A Test Lead was asked 3mo ago
Q. What is a hashmap in Java?
Ans. 

A HashMap in Java is a part of the Java Collections Framework that stores key-value pairs for efficient data retrieval.

  • Stores data in key-value pairs, allowing for quick access to values based on keys.

  • Uses a hash function to compute an index into an array of buckets, from which the desired value can be found.

  • Allows null values and one null key.

  • Example: HashMap<String, Integer> map = new HashMap<>(); ma...

View all Test Lead interview questions
A Test Lead was asked 3mo ago
Q. What is the difference between overloading and overriding?
Ans. 

Overloading allows multiple methods with the same name but different parameters; overriding replaces a method in a subclass.

  • Overloading occurs within the same class, while overriding involves a subclass.

  • Example of overloading: int add(int a, int b) and double add(double a, double b).

  • Overriding allows a subclass to provide a specific implementation of a method defined in its superclass.

  • Example of overriding: class ...

View all Test Lead interview questions
A Senior QA Analyst was asked 7mo ago
Q. Write code to find duplicate characters in a string.
Ans. 

Code to find duplicate characters in an array of strings

  • Iterate through each string in the array

  • For each string, iterate through each character and store in a set

  • If a character is already in the set, it is a duplicate

View all Senior QA Analyst interview questions
A Senior QA Analyst was asked 7mo ago
Q. What are the OOPS concepts in Java?
Ans. 

OOPS concepts in Java are fundamental principles of object-oriented programming such as inheritance, encapsulation, polymorphism, and abstraction.

  • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class B extends class A.

  • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

  • Poly...

View all Senior QA Analyst interview questions
A Software Engineer was asked 11mo ago
Q. What is data hiding in C#?
Ans. 

Data hiding in C# refers to the practice of encapsulating data within a class to restrict access from outside the class.

  • Data hiding is achieved in C# using access modifiers like private, protected, and internal.

  • Private members can only be accessed within the same class.

  • Protected members can be accessed within the same class or derived classes.

  • Internal members can be accessed within the same assembly.

  • Encapsulation ...

View all Software Engineer interview questions
An Associate Software Engineer was asked
Q. Explain the process of writing SQL queries in detail.
Ans. 

SQL query writing involves creating commands to retrieve, manipulate, and manage data in a database.

  • Understand the database schema and relationships between tables

  • Use SELECT, INSERT, UPDATE, and DELETE statements to retrieve, add, modify, and delete data

  • Utilize WHERE, JOIN, GROUP BY, HAVING, and ORDER BY clauses for filtering, joining, grouping, and sorting data

  • Consider performance optimization techniques like ind...

View all Associate Software Engineer interview questions
A Software Developer was asked 6mo ago
Q. What is Heap sort. Write it's structure and explain max and min heap
Ans. 

Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

  • Heap sort involves building a heap from the input array and then repeatedly removing the largest (for max heap) or smallest (for min heap) element from the heap and adding it to the sorted array.

  • The structure of heap sort involves two main steps: heapify the input array to create a heap and then repeatedly extract the root ele...

View all Software Developer interview questions
Are these interview questions helpful?

Bhavna Corp. Interview Experiences

16 interviews found

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

(1 Question)

  • Q1. Few theory question on dbms , sql , java and couple of coding questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Managerial round , nothing just kind of " knowing you" interview. They didn't ask much in this , kind of unnecessary round
Round 3 - HR 

(1 Question)

  • Q1. The hr at that time (2022) Came up with really good questions , but she left the company in 2022.,idk about what kind of questions new hr ask but yes basic hr round

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join the company , All the positive reviews are from the managers/directors working there , Read the 1,2-star reviews you will know what this company really is
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Consists of 30 MCL total. 5 C++, 10 Mathematical, 10 Graph and data analysis, 5 English

Round 2 - One-on-one 

(2 Questions)

  • Q1. What is Heap sort. Write it's structure and explain max and min heap
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • Heap sort involves building a heap from the input array and then repeatedly removing the largest (for max heap) or smallest (for min heap) element from the heap and adding it to the sorted array.

    • The structure of heap sort involves two main steps: heapify the input array to create a heap and then repeatedly extract the root element ...

  • Answered by AI
  • Q2. Print Linked List in reverse order using Stack
  • Ans. 

    Use a stack to reverse print a linked list

    • Create a stack to store the elements of the linked list

    • Traverse the linked list and push each element onto the stack

    • Pop elements from the stack and print them to get the reverse order

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Introduce, how tch round went. Hobbies.
  • Q2. Future plans. Projects and Internships

Interview Preparation Tips

Interview preparation tips for other job seekers - Did Great. Better to give more chance to freshers
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Regarding Manual Testing
  • Q2. Automation basics and sql

Team Lead Interview Questions & Answers

user image Anonymous

posted on 9 Apr 2024

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

I applied via Walk-in and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Core java question
  • Q2. Spring question

Interview Preparation Tips

Interview preparation tips for other job seekers - They only test good communication skills
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. SOLID Principles
  • Q2. Data hiding in c#
  • Ans. 

    Data hiding in C# refers to the practice of encapsulating data within a class to restrict access from outside the class.

    • Data hiding is achieved in C# using access modifiers like private, protected, and internal.

    • Private members can only be accessed within the same class.

    • Protected members can be accessed within the same class or derived classes.

    • Internal members can be accessed within the same assembly.

    • Encapsulation is us...

  • Answered by AI

Skills evaluated in this interview

Team Lead Interview Questions & Answers

user image Anonymous

posted on 9 Apr 2024

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

Please reverse the String Paragraph all character

Round 2 - HR 

(2 Questions)

  • Q1. How do you overcome your workplace challenges?
  • Q2. How do yo stay uptodate

Interview Preparation Tips

Interview preparation tips for other job seekers - was good

QA Engineer Interview Questions & Answers

user image kumar rishabh

posted on 16 May 2024

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

I applied via Naukri.com and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Coding Test 

There was a written on wa manual and automation

Round 2 - One-on-one 

(1 Question)

  • Q1. Basic framework question
Round 3 - One-on-one 

(1 Question)

  • Q1. Reasoning and fitment round
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 - Aptitude Test 

50 questions of aptitude in 1 hours

Round 3 - Technical 

(1 Question)

  • Q1. Sql query writing in detail
  • Ans. 

    SQL query writing involves creating commands to retrieve, manipulate, and manage data in a database.

    • Understand the database schema and relationships between tables

    • Use SELECT, INSERT, UPDATE, and DELETE statements to retrieve, add, modify, and delete data

    • Utilize WHERE, JOIN, GROUP BY, HAVING, and ORDER BY clauses for filtering, joining, grouping, and sorting data

    • Consider performance optimization techniques like indexing...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed before Nov 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Generic aptitude on athematic, time-work

Round 2 - Technical 

(1 Question)

  • Q1. What are OOPS concepts in Java
  • Ans. 

    OOPS concepts in Java are fundamental principles of object-oriented programming such as inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class B extends class A.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorph...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Write code for finding duplicate charecters
  • Ans. 

    Code to find duplicate characters in an array of strings

    • Iterate through each string in the array

    • For each string, iterate through each character and store in a set

    • If a character is already in the set, it is a duplicate

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. How much salary you need
  • Ans. 

    I expect a competitive salary based on my experience and industry standards, ideally in the range of $80,000 to $100,000.

    • Research industry standards: For example, Glassdoor or Payscale can provide insights into typical salaries for Sr QA Analysts.

    • Consider my experience: With over 5 years in QA, I bring valuable skills that justify a higher salary.

    • Location matters: Salaries can vary significantly based on geographic loc...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2022. There were 6 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 - Coding Test 

Coding test where they ask you to write DSA

Round 3 - Coding Test 

Another coding test where they ask you to write DSA

Round 4 - HR 

(1 Question)

  • Q1. Usual HR Questions
Round 5 - One-on-one 

(1 Question)

  • Q1. 1-on-1 with client’s technical person and then with architect
Round 6 - HR 

(1 Question)

  • Q1. Onboarding interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t be attracted by the packages, they have toxic work culture.

Top trending discussions

View All
Interview Tips & Stories
4d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Bhavna Corp.?
Ask anonymously on communities.

Bhavna Corp. Interview FAQs

How many rounds are there in Bhavna Corp. interview?
Bhavna Corp. interview process usually has 2-3 rounds. The most common rounds in the Bhavna Corp. interview process are Technical, HR and One-on-one Round.
How to prepare for Bhavna Corp. 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 Bhavna Corp.. The most common topics and skills that interviewers at Bhavna Corp. expect are Javascript, PDF, GIT, SQL and Agile.
What are the top questions asked in Bhavna Corp. interview?

Some of the top questions asked at the Bhavna Corp. interview -

  1. What is Heap sort. Write it's structure and explain max and min h...read more
  2. What is different between overloading and overridi...read more
  3. Write code for finding duplicate charect...read more
How long is the Bhavna Corp. interview process?

The duration of Bhavna Corp. interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

4.2/5

based on 16 interview experiences

Difficulty level

Easy 10%
Moderate 80%
Hard 10%

Duration

Less than 2 weeks 90%
2-4 weeks 10%
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 51 Interviews
IT By Design Interview Questions
3.6
 • 41 Interviews
ConsultAdd Interview Questions
3.6
 • 37 Interviews
View all

Bhavna Corp. Reviews and Ratings

based on 147 reviews

3.1/5

Rating in categories

3.0

Skill development

3.3

Work-life balance

3.4

Salary

2.6

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 147 Reviews and Ratings
Senior Software Engineer
157 salaries
unlock blur

₹12.6 L/yr - ₹25 L/yr

Software Engineer
144 salaries
unlock blur

₹4.8 L/yr - ₹11.4 L/yr

QA Engineer
39 salaries
unlock blur

₹4.5 L/yr - ₹11.5 L/yr

Senior Test Engineer
37 salaries
unlock blur

₹9.1 L/yr - ₹20.2 L/yr

Senior QA Engineer
31 salaries
unlock blur

₹8 L/yr - ₹16.2 L/yr

Explore more salaries
Compare Bhavna Corp. with

Maxgen Technologies

4.6
Compare

JoulestoWatts Business Solutions

3.1
Compare

Value Point Systems

3.5
Compare

F1 Info Solutions and Services

3.8
Compare
write
Share an Interview