Upload Button Icon Add office photos

Filter interviews by

The Brihaspati Infotech Interview Questions, Process, and Tips

Updated 20 Jun 2024

Top The Brihaspati Infotech Interview Questions and Answers

View all 10 questions

The Brihaspati Infotech Interview Experiences

Popular Designations

2 interviews found

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

I applied via Company Website and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What do you mean by BA?
  • Ans. 

    BA stands for Business Analyst, a professional who analyzes an organization or business domain and documents its business processes or systems.

    • BA stands for Business Analyst

    • They analyze an organization or business domain

    • They document business processes or systems

    • They bridge the gap between IT and business stakeholders

  • Answered by AI
  • Q2. Explain BA roles and responsibilities?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain me about flow chart of Amazon
  • Ans. 

    Amazon's flow chart outlines the process of a customer browsing, selecting, purchasing, and receiving products.

    • Customer visits Amazon website or app

    • Customer searches for desired product

    • Customer adds product to cart

    • Customer proceeds to checkout and makes payment

    • Amazon processes order and ships product to customer

    • Customer receives product and may leave a review

  • Answered by AI
  • Q2. Draw a flow chart on the given basis
  • Ans. 

    Draw a flow chart based on given criteria

    • Identify the starting point of the process

    • List the steps involved in the process

    • Connect the steps with arrows to show the flow of the process

    • Include decision points if applicable

    • End the flow chart with the final outcome

  • Answered by AI

Skills evaluated in this interview

Junior Business Analyst Interview Questions asked at other Companies

Q1. What is the difference between aircraft and airplane?
View answer (1)

I applied via Hirect and was interviewed in Feb 2022. There were 4 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 

(7 Questions)

  • Q1. What is composer and describe it functionalities?
  • Ans. 

    Composer is a dependency manager for PHP.

    • Composer manages dependencies for PHP projects

    • It allows you to easily install and update packages

    • It creates a lock file to ensure consistent installations

    • It can be used to autoload classes and files

    • It supports version constraints for packages

  • Answered by AI
  • Q2. How can we make fillable value?
  • Ans. 

    To make a fillable value, we can use input fields or forms in software applications.

    • Use HTML input fields with appropriate attributes like 'name', 'type', 'placeholder', etc.

    • In desktop applications, use form controls like text boxes, combo boxes, etc.

    • Validate user input to ensure data integrity and prevent errors.

    • Provide clear instructions and labels to guide users in filling out the form.

    • Consider accessibility guideli...

  • Answered by AI
  • Q3. What is an array and use of in_array function?
  • Ans. 

    An array is a collection of similar data types. in_array() function checks if a value exists in an array.

    • Arrays can store multiple values of the same data type

    • in_array() function returns true if a value exists in an array

    • Syntax: in_array(value, array)

    • Example: $fruits = array('apple', 'banana', 'orange'); in_array('banana', $fruits) returns true

  • Answered by AI
  • Q4. What is static class and static function?
  • Ans. 

    Static class and function are used to define methods and properties that can be accessed without creating an instance of the class.

    • Static class cannot be instantiated and all its members must be static

    • Static function can be called without creating an instance of the class

    • Static members are shared across all instances of the class

    • Static members are accessed using the class name instead of an instance variable

  • Answered by AI
  • Q5. Can we declare two constructor in one class?
  • Ans. 

    Yes, we can declare multiple constructors in a class.

    • Constructors are used to initialize objects of a class.

    • Multiple constructors can be defined with different parameters.

    • The constructor with the matching parameter list will be called.

    • If no constructor is defined, a default constructor is provided by the compiler.

  • Answered by AI
  • Q6. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they were objects of the same class.

    • It is achieved through method overriding and method overloading.

    • Examples include function overloading, operator overloading, and inheritance.

    • Polymorphism helps in achieving loose coupling and flexibility in code design.

  • Answered by AI
  • Q7. What is data abstraction?
  • Ans. 

    Data abstraction is the process of hiding implementation details and showing only the necessary information to the user.

    • It is a way of organizing complex systems into simpler and more manageable components.

    • It helps in reducing complexity, improving security, and increasing efficiency.

    • Examples include object-oriented programming, encapsulation, and modular design.

  • Answered by AI
Round 3 - Assignment 

Create a CRUD operation using class and object. By using constructor login page.

Round 4 - One-on-one 

(3 Questions)

  • Q1. Why do you want work in this company?
  • Q2. Tell me some about this company
  • Q3. What is your salary expectations for this job?

Interview Preparation Tips

Topics to prepare for The Brihaspati Infotech Software Engineer interview:
  • OOPS
  • Framework
  • Database Design
Interview preparation tips for other job seekers - Learn basic to advance, oops concept and framework in which read and developed directory structure.

Skills evaluated in this interview

Top The Brihaspati Infotech Software Engineer Interview Questions and Answers

Q1. What is composer and describe it functionalities?
View answer (1)

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (199)

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions

I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round consists Logical reasoning, General Aptitude, Grammar related questions etc. All are moderate level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Explain OOPs w.r.t Java
  • Ans. 

    OOPs is a programming paradigm that uses objects to represent real-world entities. Java is an OOPs language.

    • OOPs stands for Object-Oriented Programming System

    • Java is a class-based OOPs language

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four pillars of OOPs

    • Objects have state and behavior

    • Java supports interfaces, which allow for multiple inheritance

    • Example: A car can be represented as an object wit...

  • Answered by AI
  • Q2. Explain about the projects that you have worked on
  • Q3. Explain how Java solves machine dependency of code execution
  • Ans. 

    Java solves machine dependency by using bytecode and virtual machine.

    • Java code is compiled into bytecode which is platform-independent

    • The bytecode is executed by the Java Virtual Machine (JVM) which is platform-specific

    • JVM translates bytecode into machine code for the specific platform

    • This allows Java code to run on any platform with a JVM installed

    • Example: A Java program compiled on Windows can run on Linux or Mac as

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why should we hire you?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Java
Interview preparation tips for other job seekers - Keep it simple, Prepare basics of 1st preferred Programming Language.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Numerical ability and logical reasoning followed by some coding mcqs

Round 2 - Technical 

(1 Question)

  • Q1. Print 1 to 100 without for loop
  • Ans. 

    Printing 1 to 100 without for loop

    • Use recursion to print numbers from 1 to 99

    • Print 100 outside the recursion

    • Use a base case to stop recursion at 100

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from interview bit and practice mcqs

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

Round 1 - Aptitude Test 

Simple aptitude test

Round 2 - One-on-one 

(1 Question)

  • Q1. General questions as per your cv

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Aptitude
Interview preparation tips for other job seekers - Great company for freshers.. lot to learn and experience

I applied via Company Website and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Attended the codevita competition in final year of college.

Round 2 - Technical 

(3 Questions)

  • Q1. About College Project
  • Q2. Some very basics of java
  • Q3. Experience of college project as a team

Interview Preparation Tips

Interview preparation tips for other job seekers - Codevita is a really good platform to help you join TCS as a final year graduate in college

I applied via Campus Placement and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was a basic aptitude test.

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview was fine. Mostly asked about my final year project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Attend the interview with cool head. All the best.

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

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Explain the mini projects and main project completed during Engineering.

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • DBMS
  • Software Engineering
  • Basic coding
Interview preparation tips for other job seekers - Just make sure the resume should be precise and you have knowledge on the things mentioned in your resume.

Be confident and have a smiling face in the interview round.

The Brihaspati Infotech Interview FAQs

How many rounds are there in The Brihaspati Infotech interview?
The Brihaspati Infotech interview process usually has 3 rounds. The most common rounds in the The Brihaspati Infotech interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for The Brihaspati Infotech 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 The Brihaspati Infotech. The most common topics and skills that interviewers at The Brihaspati Infotech expect are PHP, Codeigniter, Core PHP, Laravel and Mean Stack.
What are the top questions asked in The Brihaspati Infotech interview?

Some of the top questions asked at the The Brihaspati Infotech interview -

  1. What is composer and describe it functionaliti...read more
  2. What is static class and static functi...read more
  3. What is an array and use of in_array functi...read more

Tell us how to improve this page.

The Brihaspati Infotech Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
Oxane Partners Interview Questions
3.5
 • 24 Interviews
View all

The Brihaspati Infotech Reviews and Ratings

based on 11 reviews

3.3/5

Rating in categories

3.6

Skill development

3.3

Work-life balance

3.2

Salary

3.3

Job security

3.3

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 11 Reviews and Ratings
Web Designer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior PHP Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Android Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

PHP Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Project Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare The Brihaspati Infotech with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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