Upload Button Icon Add office photos

Filter interviews by

BusinessOne Technologies Interview Questions and Answers

Updated 27 Jan 2022

BusinessOne Technologies Interview Experiences

2 interviews found

I applied via Recruitment Consultant and was interviewed in Apr 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Whereabouts of my last job. US healthcare system related questions. FDA and clinical trial related question. Classes of drug. Brand, generic, biosimilar, etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Show that you can easily dissolve between the people and start working fast. Should not look like u need a lot of training. Be outspoken and cheerful.

Research Analyst Interview Questions asked at other Companies

Q1. What is income statement how do u calculate net profit? What is stock split and merger and takeover and depreciation and amortization and net worth and retaining earnings,book value per share? Types of equity shares etc...
View answer (4)

I applied via Recruitment Consultant and was interviewed before Jan 2021. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Health care channels

Interview Preparation Tips

Interview preparation tips for other job seekers - Medicare, medic aid, American health care channels

Research Analyst Interview Questions asked at other Companies

Q1. What is income statement how do u calculate net profit? What is stock split and merger and takeover and depreciation and amortization and net worth and retaining earnings,book value per share? Types of equity shares etc...
View answer (4)

Interview questions from similar companies

I appeared for an interview in May 2021.

Round 1 - Telephonic Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

Started with project description, deep dive into project
Questions about ML, Statistics
Coding questions for Python, SQL

  • Q1. 

    Stream of Characters Problem Statement

    You are provided with a list, DICTIONARY[], which contains a collection of words, along with a stream of characters (queries). The task is to implement a class Chara...

  • Ans. 

    Implement a class to check if a string formed by the last queried characters exists in a dictionary of words.

    • Initialize the class with the dictionary of words.

    • Implement a method to check if the string formed by the last queried characters exists in the dictionary.

    • Use appropriate data structures to efficiently solve the problem.

    • Ensure the class handles multiple test cases and character queries.

    • Example: DICTIONARY[] = ['...

  • Answered by AI
  • Q2. How do you retrieve the second highest salary from a SQL database?
  • Ans. 

    Use a subquery to retrieve the second highest salary from a SQL database.

    • Use a subquery to select the maximum salary from the table.

    • Then use another subquery to select the maximum salary that is less than the maximum salary found in the first step.

    • Combine both subqueries to retrieve the second highest salary.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

Projects
Machine Learning

  • Q1. Aptitude Questions

    Questions about Statistics

  • Ans. 

    Answering aptitude questions related to statistics

    • Statistics is the study of collecting, analyzing, interpreting, presenting, and organizing data.

    • Key concepts include mean, median, mode, standard deviation, and probability.

    • Examples of statistical questions include 'What is the average income of a population?' and 'What is the likelihood of an event occurring?'

  • Answered by AI
Round 3 - Video Call 

Round duration - 60 minutes
Round difficulty - Easy

Behavioral Round
Questions asked about Amazon Leadership Principles

Round 4 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

Medium Python questions
Medium SQL questions

  • Q1. Ninja and Mathematics

    Ninja is a genius in mathematics. He got an interview call from MIT. During the interview, the professor asked Ninja a challenging question.

    Given two integers 'N1' and 'N...

  • Ans. 

    Calculate the fraction when one integer is divided by another, with repeating decimal parts enclosed in parentheses.

    • Divide the first integer by the second integer to get the fraction

    • Identify if the fractional part is repeating and enclose it in parentheses

    • Return the fraction for each test case

  • Answered by AI
  • Q2. How can you find the top 2 salaries for each department in SQL?
  • Ans. 

    Use SQL query with window functions to find top 2 salaries for each department.

    • Use PARTITION BY clause to partition the data by department.

    • Use ORDER BY clause to order the salaries in descending order.

    • Use ROW_NUMBER() function to assign a rank to each row within the partition.

    • Filter the results to only include rows with rank 1 and 2.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Research Analyst in BengaluruEligibility criteriaNAAmazon interview preparation:Topics to prepare for the interview - Python, SQL, Machine Learning, Statistics, Deep LearningTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice String and array based questions for python coding test
Tip 2 : Practice Window Functions, Rank functions for SQL
Tip 3 : Describe the one project that you're confident with and have worked deeply

Application resume tips for other job seekers

Tip 1 : Start with projects and then move to skills
Tip 2 : Explain each project in around 3 bullet points
Tip 3 : Include numbers in projects (ex increased x% revenue by applying ... )

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Why should we hire you ?
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Why should we hire you
  • Ans. 

    I have a strong analytical background, excellent research skills, and a proven track record of delivering high-quality insights.

    • I have a degree in statistics and experience in data analysis

    • I have conducted in-depth market research projects for previous employers

    • I am proficient in using statistical software such as SPSS and R

  • Answered by AI
  • Q2. Why this organization
  • Ans. 

    I am drawn to this organization because of its commitment to cutting-edge research and its positive impact on society.

    • The organization has a strong reputation for conducting groundbreaking research in various fields.

    • I admire the organization's dedication to making a positive impact on society through its research initiatives.

    • I am impressed by the organization's collaborative and innovative approach to problem-solving.

    • T...

  • Answered by AI
Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed in Sep 2023. There was 1 interview round.

Round 1 - Assignment 

Medium to Hard 4 DSA questions

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jun 2022. There were 5 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. CV discussion and question related to python and data science
  • Q2. Cumulative sum of an array, frequency of each word in a sentence
  • Ans. 

    The question asks about calculating cumulative sum of an array and frequency of each word in a sentence.

    • To calculate cumulative sum of an array, we can use a loop and keep adding the current element to a running sum variable.

    • To calculate frequency of each word in a sentence, we can split the sentence into words and use a dictionary to keep track of the count of each word.

    • We can use built-in functions in programming lan...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Behavioural Questions
  • Q2. Leadership principles
Round 4 - Technical 

(2 Questions)

  • Q1. Data Science and SQL round
  • Q2. Groupby, joins and window functions
Round 5 - Technical 

(1 Question)

  • Q1. CV discussion and data science question

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your CV well, practice python pandas and SQL and common data science questions related to ML and DL

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. DS Algo Questions on Trees. Leadership Principles

Interview Preparation Tips

Interview preparation tips for other job seekers - Read up on DS Algo and white paper coding and Leadership Principles

I applied via Naukri.com

Interview Questionnaire 

2 Questions

  • Q1. Why Amazon?
  • Q2. What do you expect from Amazon?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be open to anything, and keep your expectations low as your expectations might kill you. Just relax and take everything in a healthy way

I appeared for an interview in Aug 2017.

Interview Questionnaire 

7 Questions

  • Q1. Implement Merge Sort.
  • Ans. 

    Merge Sort is a divide and conquer algorithm that sorts an array by dividing it into two halves, sorting them separately, and then merging the sorted halves.

    • Divide the array into two halves

    • Recursively sort the two halves

    • Merge the sorted halves

  • Answered by AI
  • Q2. Given a BST containing distinct integers, and a number ‘X’, find all pairs of integers in the BST whose sum is equal to ‘X’.
  • Ans. 

    Find pairs of integers in a BST whose sum is equal to a given number.

    • Traverse the BST and store the values in a hash set.

    • For each node, check if (X - node.value) exists in the hash set.

    • If yes, add the pair (node.value, X - node.value) to the result.

    • Continue traversal until all nodes are processed.

  • Answered by AI
  • Q3. Given a set of time intervals in any order, merge all overlapping intervals into one and output the result which should have only mutually exclusive intervals.
  • Ans. 

    Merge overlapping time intervals into mutually exclusive intervals.

    • Sort the intervals based on their start time.

    • Iterate through the intervals and merge overlapping intervals.

    • Output the mutually exclusive intervals.

    • Example: [(1,3), (2,6), (8,10), (15,18)] -> [(1,6), (8,10), (15,18)]

  • Answered by AI
  • Q4. What are the different types of hashing? Suggest an alternative and a better way for Linear Chaining.
  • Ans. 

    Different types of hashing and alternative for Linear Chaining

    • Different types of hashing include division, multiplication, and universal hashing

    • Alternative for Linear Chaining is Open Addressing

    • Open Addressing includes Linear Probing, Quadratic Probing, and Double Hashing

  • Answered by AI
  • Q5. Implement AVL Tree.
  • Ans. 

    An AVL tree is a self-balancing binary search tree where the heights of the left and right subtrees differ by at most one.

    • AVL tree is a binary search tree with additional balance factor for each node.

    • The balance factor is the difference between the heights of the left and right subtrees.

    • Insertion and deletion operations in AVL tree maintain the balance factor to ensure the tree remains balanced.

    • Rotations are performed ...

  • Answered by AI
  • Q6. Minimum number of squares whose sum equals to given number n.
  • Ans. 

    Find the minimum number of squares whose sum equals to a given number n.

    • Use dynamic programming to solve the problem efficiently.

    • Start with finding the square root of n and check if it is a perfect square.

    • If not, then try to find the minimum number of squares required for the remaining number.

    • Repeat the process until the remaining number becomes 0.

    • Return the minimum number of squares required for the given number n.

  • Answered by AI
  • Q7. Insertion sort for a singly linked list.
  • Ans. 

    Insertion sort for a singly linked list.

    • Traverse the list and compare each node with the previous nodes

    • If the current node is smaller, swap it with the previous node

    • Repeat until the end of the list is reached

    • Time complexity is O(n^2)

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 2 coding questions (no penalty for wrong submission) and 20 Multiple Choice Questions(with negative marking). We were given 90 minutes to solve them. MCQs were based on Data Structures, OS, CN, C outputs, OOP etc.
Tips: Experience in Competitive Programming might help in solving coding questions. No constraints were mentioned and detailed Instructions related to problem were stated vaguely. So code carefully.
Duration: 1 hour 30 minutes
Total Questions: 22

Round: Technical Interview
Experience: The interviewer asked me to introduce myself and a brief introduction of the projects that I have done. She first asked me questions related to my project. After that she moved on to the data structures part.
Tips: Take your time to approach the problems and if the question is not clear ask the interviewer to explain it again.

Round: Technical Interview
Experience: The interviewer asked me about how my previous round went. After that, he asked me to introduce myself and a brief introduction of the projects that I have done. He first asked me a few questions related to my project. Then he moved on to the data structures part. In this round the interviewer gave me strict time limit for coding the solution on paper for each problem and as soon as I was done coding he gave me 2-3 minutes every time to find errors and debug my code.
Tips: Do not panic even if the interviewer sets time limit while solving problems. If the question is not clear ask the interviewer to explain it again.

College Name: The LNM Institute Of Information Technology, Jaipur

Skills evaluated in this interview

BusinessOne Technologies Interview FAQs

How to prepare for BusinessOne 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 BusinessOne Technologies. The most common topics and skills that interviewers at BusinessOne Technologies expect are Angularjs, C#, Full Stack, Java and Javascript.

Tell us how to improve this page.

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.2k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Teleperformance Interview Questions
3.9
 • 1.8k Interviews
Mphasis Interview Questions
3.4
 • 798 Interviews
Nagarro Interview Questions
4.0
 • 759 Interviews
View all

BusinessOne Technologies Reviews and Ratings

based on 25 reviews

4.4/5

Rating in categories

4.2

Skill development

4.3

Work-life balance

4.2

Salary

4.0

Job security

4.4

Company culture

4.0

Promotions

4.3

Work satisfaction

Explore 25 Reviews and Ratings
Research Associate
20 salaries
unlock blur

₹3.5 L/yr - ₹5 L/yr

Research Analyst
9 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Associate Consultant
8 salaries
unlock blur

₹10.8 L/yr - ₹17.2 L/yr

Consultant
8 salaries
unlock blur

₹10 L/yr - ₹20 L/yr

QA Consultant
7 salaries
unlock blur

₹14.3 L/yr - ₹20 L/yr

Explore more salaries
Compare BusinessOne Technologies with

Accenture

3.8
Compare

Capgemini

3.7
Compare

HCLTech

3.5
Compare

Teleperformance

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