Upload Button Icon Add office photos

Filter interviews by

Bhavi Technosoft Interview Questions and Answers

Updated 11 Feb 2022

Bhavi Technosoft Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Tell us about you and your total 14 years IT Experience Briefly.
total Time spend 30 Minuit.

Round 2 - Technical 

(1 Question)

  • Q1. How many servers flavor?? What is AD ?? How types of AD Policy? How many place Windows SR Key store in computer? What is RAID?
  • Ans. 

    The questions are related to server administration and RAID technology.

    • There are various flavors of servers such as web servers, database servers, mail servers, etc.

    • AD stands for Active Directory, a directory service developed by Microsoft.

    • There are three types of AD policies: Local, Site, and Domain.

    • Windows SR Key is stored in the registry under HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\DigitalPr...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What are your salary expectations?

Interview Preparation Tips

Topics to prepare for Bhavi Technosoft System Administrator interview:
  • Server
Interview preparation tips for other job seekers - Give your Answerer confident. and prepare before face interview.

Skills evaluated in this interview

System Administrator Interview Questions asked at other Companies

Q1. 2. What is Cloud Technology. What is Microsoft Intune. If we can manage applications using MAM then why do we need MDM?
View answer (8)

Interview questions from similar companies

I applied via Referral and was interviewed before Sep 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Basic of array questions like sliding window maximum

Round 2 - Technical 

(2 Questions)

  • Q1. Oops Dbms Sql Project Technoloy used in project
  • Ans. 

    The question is asking about the candidate's experience with Oops, DBMS, SQL, and technology used in a project.

    • Explain the candidate's experience with Oops concepts

    • Ask about their experience with different DBMS systems like MySQL, Oracle, etc.

    • Inquire about their proficiency in SQL and its various commands

    • Ask about a project they have worked on and the technology stack used in it

  • Answered by AI
  • Q2. Cloud computing , computer network , os

Interview Preparation Tips

Interview preparation tips for other job seekers - Make your basic strong and keep coding also do practicing aptitude side by side

Skills evaluated in this interview

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 

Blood relations,ratios and English

Round 3 - Group Discussion 

Based on present world

Round 4 - One-on-one 

(1 Question)

  • Q1. Course basic questions
Round 5 - HR 

(1 Question)

  • Q1. Communication skills
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed in Sep 2023. There were 4 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 - Aptitude Test 

Duration of 30 minutes and 25 MCQs

Round 3 - Group Discussion 

You have to be as fast as light with your point of view on the given topic. 1 minute of thinking time is given after the topic is revealed.

Round 4 - Technical 

(1 Question)

  • Q1. Can you implement linked lists?
  • Ans. 

    Yes, I can implement linked lists in various programming languages.

    • I can implement linked lists in languages like C, C++, Java, Python, etc.

    • I understand the concept of nodes pointing to the next node in the list.

    • I can create functions for inserting, deleting, and traversing the linked list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't panic just be confident

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

The aptitude test was quite easy. You will easily solve the questions in one go

Round 2 - Group Discussion 

The group discussion around was moderate like the people were divided into different groups one group was of 10 people and you need to speak very well on the given topic as compared to the other guys and your through the round

Round 3 - Technical 

(1 Question)

  • Q1. Ask about the oops concepts and some programming related questions and after that finally discuss about the projects which I did in the college

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview experience was easy you will be easily able to crack if you are decent knowledge as well

I applied via LinkedIn and was interviewed in Nov 2021. There were 7 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. C language vs c++ their benefits and loses
  • Ans. 

    C and C++ have different benefits and drawbacks.

    • C is a procedural language while C++ is an object-oriented language.

    • C++ has features like classes, inheritance, and polymorphism that C lacks.

    • C is faster and more efficient than C++.

    • C++ has a steeper learning curve than C.

    • C++ is better suited for large-scale projects while C is better for small-scale projects.

    • C++ is more complex and has more potential for errors than C.

  • Answered by AI
  • Q2. I don't know the answer so sorry

Interview Preparation Tips

Interview preparation tips for other job seekers - Be polite and friendly don't kill your self

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

It was 60 min test consists of something 30 questions.

Round 2 - Group Discussion 

For gd group is divided and then 10 members come for gd according to their time slot.

Round 3 - One-on-one 

(3 Questions)

  • Q1. First introduce yourself.
  • Q2. Your programming language and question related to it
  • Q3. Internship experience and some questions from internship field

Interview Preparation Tips

Topics to prepare for Pie Infocomm Associate Software Engineer interview:
  • Python
  • C++
  • Java
  • MySQL
Interview experience
1
Bad
Difficulty level
Easy
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 - Aptitude Test 

Easy round anyone with basic maths can clear the round.

Round 2 - Group Discussion 

The topic given to us is online education system,and the round was easy to clear.

Round 3 - One-on-one 

(1 Question)

  • Q1. Call by value vs call by reference
  • Ans. 

    Call by value passes a copy of the variable, while call by reference passes the actual variable.

    • Call by value: changes to the parameter inside the function do not affect the original variable.

    • Call by reference: changes to the parameter inside the function affect the original variable.

    • Example: Call by value - int x = 5; func(x); // x remains 5. Call by reference - int x = 5; func(&x); // x changes to the value set i

  • Answered by AI
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Basic aptitude test very easy

Round 2 - Group Discussion 

Topic was pros and cons of social media
total time was 10, 2 minutes for each candidate.

I applied via Approached by Company and was interviewed in May 2022. There were 3 interview rounds.

Round 1 - Case Study 

Cashier

Round 2 - Assignment 

Assistant

Round 3 - Technical 

(2 Questions)

  • Q1. Ky work hoga technical
  • Q2. I have no experience any job

Interview Preparation Tips

Topics to prepare for Any Brand Business Analyst interview:
  • No experience
Interview preparation tips for other job seekers - I am angry of all job I have no problem any job so please I need ajob

Bhavi Technosoft Interview FAQs

How many rounds are there in Bhavi Technosoft interview?
Bhavi Technosoft interview process usually has 3 rounds. The most common rounds in the Bhavi Technosoft interview process are Aptitude Test, Technical and HR.

Tell us how to improve this page.

Interview Questions from Similar Companies

10405090xyzabc Interview Questions
3.8
 • 1.4k Interviews
Any Brand Interview Questions
4.1
 • 64 Interviews
Pie Infocomm Interview Questions
4.5
 • 39 Interviews
MNC AUTOMATION Interview Questions
4.2
 • 34 Interviews
Beyondriffs Interview Questions
4.6
 • 25 Interviews
Birla White Interview Questions
4.2
 • 25 Interviews
FreshToHome Interview Questions
3.5
 • 23 Interviews
View all

Bhavi Technosoft Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Compare Bhavi Technosoft with

ACTE

4.6
Compare

Birla White

4.2
Compare

Zeetech Management And Marketing

4.1
Compare

Ricoh

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