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. Software Developer Interview Questions and Answers

Updated 21 Dec 2024

Bhavna Corp. Software Developer Interview Experiences

1 interview found

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 questions from similar companies

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

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude test and was unproctored

Round 2 - Technical 

(1 Question)

  • Q1. It was a online technical round

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL concepts and basic OOPs concepts
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 

(4 Questions)

  • Q1. What is singleton design pattern
  • Ans. 

    Singleton design pattern restricts the instantiation of a class to a single instance and provides global access to it.

    • Used when only one instance of a class is required throughout the application

    • Provides a global point of access to the instance

    • Implemented using a private constructor, static method, and static variable

    • Example: Logger class, Database connection class

  • Answered by AI
  • Q2. C# LINQ queries for group and sum data from data table
  • Ans. 

    C# LINQ queries for group and sum data from data table

    • Use GroupBy() method to group data based on a specific column

    • Use Sum() method to calculate the sum of a column

    • Use Select() method to select the required columns

  • Answered by AI
  • Q3. Solid design principles
  • Ans. 

    Solid design principles are a set of guidelines for writing maintainable and scalable code.

    • Single Responsibility Principle (SRP) - each class should have only one responsibility

    • Open/Closed Principle (OCP) - classes should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - subclasses should be able to replace their parent classes without affecting the program's correctness

    • Interface Se...

  • Answered by AI
  • Q4. OOPS concepts ,like association and all

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are an experienced software Engineer, focus on designing part of the system.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

MCQ questions on OS, JS and HTML

Round 2 - Coding Test 

Basic Questions from resume. String/Array DSA questions

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

I applied via Indeed and was interviewed in Sep 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of Python
  • Q2. Basics of Django
Round 2 - Technical 

(2 Questions)

  • Q1. Python concepts knowledge check
  • Q2. Django architecture and projects discussion
Round 3 - Behavioral 

(1 Question)

  • Q1. General communication about the role and previous experience
Round 4 - HR 

(1 Question)

  • Q1. Package negotiation and culture check
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Dp, trees and basic time complexity

Round 2 - Technical 

(2 Questions)

  • Q1. Tell me about your self
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

  • Answered by AI
  • Q2. Projects and intership

Interview Preparation Tips

Topics to prepare for Junglee Games Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Learn DSA
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Jan 2024.

Round 1 - Aptitude Test 

Logical reasoning questions (1-1.5 hours)

Round 2 - Coding Test 

DSA Questions(2 hours)

Round 3 - HR 

(2 Questions)

  • Q1. How soon I can start?
  • Q2. I am flexible with work timings?

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Hard

  • Q1. 

    Candies Distribution Problem Statement

    Prateek is a kindergarten teacher with a mission to distribute candies to students based on their performance. Each student must get at least one candy, and if two s...

  • Ans. 

    The task is to distribute candies to students based on their performance while minimizing the total candies distributed.

    • Create an array to store the minimum candies required for each student.

    • Iterate through the students' ratings array to determine the minimum candies needed based on the adjacent ratings.

    • Consider both left-to-right and right-to-left passes to ensure fair distribution.

    • Keep track of the total candies dist

  • Answered by AI
  • Q2. 

    Merge Sort Problem Statement

    You are given a sequence of numbers, ARR. Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algorithm.

    Explanation:

    The Merge Sort...

  • Ans. 

    Implement Merge Sort algorithm to sort a sequence of numbers in non-descending order.

    • Use Divide and Conquer approach to recursively divide the input array into two halves.

    • Merge the sorted halves to produce a completely sorted array.

    • Ensure the implementation handles the constraints specified in the problem statement.

    • Example: For input [3, 1, 4, 1, 5], the output should be [1, 1, 3, 4, 5].

  • Answered by AI

Interview Preparation Tips

Eligibility criteria8CGPAThink Future Technologies interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming, apti , programming language , SETime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Practice Atleast 250 Questions
Tip 2 : Do atleast 2 projects

Application resume tips for other job seekers

Tip 1 : Do not put false things on resume.
Tip 2 : Have some projects on resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Round 1 - Group Discussion 

Nothing

Round 2 - Technical 

(1 Question)

  • Q1. Python Sql Linux CLI
Round 3 - One-on-one 

(1 Question)

  • Q1. General discussions on learning

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and answerything you will clear
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Mar 2022. 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Testing process and java code
  • Q2. Python machine learning questions
Round 3 - Coding Test 

Java and python test was there

Interview Preparation Tips

Interview preparation tips for other job seekers - no tips to freshers prepare for interview machine learning

Bhavna Corp. Interview FAQs

How many rounds are there in Bhavna Corp. Software Developer interview?
Bhavna Corp. interview process usually has 3 rounds. The most common rounds in the Bhavna Corp. interview process are Aptitude Test, One-on-one Round and HR.
What are the top questions asked in Bhavna Corp. Software Developer interview?

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

  1. What is Heap sort. Write it's structure and explain max and min h...read more
  2. Print Linked List in reverse order using St...read more
  3. Introduce, how tch round went. Hobbi...read more

Tell us how to improve this page.

Bhavna Corp. Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Bhavna Corp. Software Developer Salary
based on 12 salaries
₹5 L/yr - ₹13 L/yr
At par with the average Software Developer Salary in India
View more details

Bhavna Corp. Software Developer Reviews and Ratings

based on 3 reviews

2.9/5

Rating in categories

2.8

Skill development

3.0

Work-life balance

2.2

Salary

1.4

Job security

2.2

Company culture

2.2

Promotions

1.8

Work satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer
151 salaries
unlock blur

₹9.3 L/yr - ₹30 L/yr

Software Engineer
145 salaries
unlock blur

₹4.2 L/yr - ₹13.5 L/yr

Senior QA Engineer
42 salaries
unlock blur

₹6.7 L/yr - ₹16.2 L/yr

QA Engineer
38 salaries
unlock blur

₹4.5 L/yr - ₹11.4 L/yr

Senior Test Engineer
38 salaries
unlock blur

₹6 L/yr - ₹20.2 L/yr

Explore more salaries
Compare Bhavna Corp. with

Saama Technologies

3.7
Compare

JoulestoWatts Business Solutions

2.9
Compare

DISYS

3.0
Compare

Value Point Systems

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