Premium Employer

i

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

o9 Solutions Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

o9 Solutions Interview Questions and Answers for Freshers

Updated 3 Apr 2025
Popular Designations

o9 Solutions Interview Experiences for Freshers

8 interviews found

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

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. There was some dsa question, based on string. I can’t rembeber it but it was easy to medium
  • Q2. SQL easy to medium

Consultant Interview Questions & Answers

user image Siddhant Priyadarshi

posted on 9 Sep 2024

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

1.5hr SQL, verbal reasoning, statistics and probability

Round 2 - HR 

(1 Question)

  • Q1. For what purpose trim used in sql?
  • Ans. 

    Trim is used in SQL to remove leading and trailing spaces from a string.

    • Trim function is used to remove leading and trailing spaces from a string

    • It is commonly used to clean up data before performing comparisons or concatenations

    • Syntax: TRIM([LEADING | TRAILING | BOTH] [characters] FROM [string])

    • Example: SELECT TRIM(' hello ') as trimmed_string

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Supply chain questions were asked on DP and SP
Round 2 - Technical 

(1 Question)

  • Q1. Supply chains questions on different scenario basis
Round 3 - HR 

(1 Question)

  • Q1. General HR questions

I applied via Campus Placement and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. SQL questions
  • Q2. Approximate questions
  • Q3. Why do you want to join this company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Not so technical mostly maegerial questions

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Mostly questions were of aptitude and verbal reasoning including some 5-10 questions on basics of programming and sql queries. Time was the important factor for clearing the test as questions were somewhat easy but time was limited.

  • Q1. Write an SQL query to find students with scores above a particular threshold and sort them according to their scores and then by their names.
  • Ans. 

    SQL query to find and sort students with scores above a threshold

    • Use the SELECT statement to retrieve the required data

    • Use the WHERE clause to filter students with scores above the threshold

    • Use the ORDER BY clause to sort the results by score and then by name

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Medium

I was having just the second slot at 9:30 am.
Video call was done via google meet. Most of the interview went around my resume and my introduction. Interviewer was fairly impressed by my projects and discussed it in detail with me. After that he gave me a simple coding question to reverse a string and asked me to write it within 3 minutes. after that 2 questions on sql and 1 puzzle was asked.

  • Q1. 

    Reverse the String Problem Statement

    You are given a string STR which contains alphabets, numbers, and special characters. Your task is to reverse the string.

    Example:

    Input:
    STR = "abcde"
    Output:
    "e...
  • Ans. 

    The task is to reverse a given string that may contain lowercase letters, uppercase letters, digits, and special characters.

    • Iterate through the string from the last character to the first character and append each character to a new string.

    • Alternatively, you can use built-in string reversal functions or methods available in your programming language.

    • To solve the follow-up question with O(1) space complexity, you can us...

  • Answered by AI
  • Q2. How would you fetch data from two given tables with a common column without using the WHERE keyword?
  • Ans. 

    Fetch data from two tables with a common column without using WHERE keyword.

    • Use JOIN keyword to combine the two tables based on the common column.

    • Specify the common column in the ON clause of the JOIN statement.

    • This will retrieve all the rows where the common column values match in both tables.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Associate Consultant in BangaloreEligibility criteriaabove 7 cgpao9 Solutions, Inc. interview preparation:Topics to prepare for the interview - SQL, DATA SCIENCE, DATA ANALYTICS, PYTHON, Arduino programmingTime required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare each topic rigrously
Tip 2 : do not move on without fully understanding one topic
Tip 3 : Think creatively rather than mugging up
Tip 4 : Do multiple projects and be ready to explain them

Application resume tips for other job seekers

Tip 1 : Must have multiple extra-curricular activities
Tip 2 : Must have multiple projects in your domain
Tip 3 : Everything on resume must be true

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Sep 2021. 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 - Aptitude Test 

Was test containing three sections, Aptitude test, SQL Based questions and Supply Chain domain related questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Basic Resume based questions and few Supply chain domain based questions
Round 4 - One-on-one 

(1 Question)

  • Q1. This was final interview round where they again asked few functional and resume based questions, and few questions from past work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare your resume well and brushup basics of SQL, Supply chain domain related questions

I appeared for an interview before Apr 2021.

Round 1 - Face to Face 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Easy

This was a technical interview round where DSA questions were discussed. Questions on subjects related to my branch(EEE) and some questions on maths as I had mentioned my Olympiad rank were also asked.

  • Q1. 

    Angle Calculation Between Clock Hands

    Given a specific time in hours and minutes, your task is to calculate the smallest possible angle between the hour hand and the minute hand of a clock.

    Example:

    Inp...
  • Ans. 

    Calculate the smallest angle between the hour and minute hands of a clock for a given time.

    • Calculate the angles of the hour and minute hands based on the input time.

    • Find the absolute difference between the angles of the hour and minute hands.

    • Return the smaller angle between the two possible angles.

    • Ensure to handle cases where the smaller angle is greater than 180 degrees.

  • Answered by AI
  • Q2. 

    Factorial Calculation Problem Statement

    Develop a program to compute the factorial of a given integer 'n'.

    The factorial of a non-negative integer 'n', denoted as n!, is the product of all positive integ...

  • Ans. 

    Develop a program to compute the factorial of a given integer 'n'.

    • Create a function to calculate factorial using a loop or recursion

    • Handle edge cases such as negative input or input exceeding constraints

    • Return 'Error' if factorial is undefined

    • Example: For input 5, output should be 120

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaStudents were shortlisted on the basis of CGPA , 10th and 12th percentages. CGPA criteria being 7+ in my college.o9 Soluions, Inc interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewRejected

Skills evaluated in this interview

Consultant Interview Questions & Answers

user image Anonymous

posted on 19 Feb 2017

I appeared for an interview in Feb 2017.

Interview Questionnaire 

4 Questions

  • Q1. Angle between hour hand and minute hand at 3:15
  • Ans. 

    The angle between the hour hand and minute hand at 3:15 is 7.5 degrees.

    • At 3:00, the hour hand is at the 3 o'clock position, which is 90 degrees.

    • In 15 minutes, the minute hand moves 90 degrees (360 degrees divided by 4).

    • The hour hand also moves slightly in 15 minutes, covering 7.5 degrees (30 degrees divided by 4).

    • Therefore, the angle between the hour hand and minute hand at 3:15 is 7.5 degrees.

  • Answered by AI
  • Q2. Factorial code using recursion
  • Q3. Questions on subjects related to my branch(EEE)
  • Q4. Some questions on maths as I had mentioned my Olympiad rank

Interview Preparation Tips

Round: Resume Shortlist
Experience: The first round was a resume shortlist and students were shortlisted on the basis of CGPA , 10th and 12th percentages. CGPA criteria being 7+ in my college.

Round: Resume Shortlist
Experience: The first round was a resume shortlist and students were shortlisted on the basis of CGPA , 10th and 12th percentages. CGPA criteria being 7+ in my college.
Tips: Try to attempt 2 markers first and then go for 1 markers
Total Questions: 14

Round: Test
Experience: This round had 14 questions having 20 marks. The time allotted was 45 minutes and it consisted of questions related to alligations,time and work,puzzles and situations.
Tips: Try to attempt 2 markers first and then go for 1 markers

Skills: Analytical Skills, Technical Questions, Project And Internship, General Aptitude
College Name: RV College Of Engineering, Bangalore

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (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 o9 Solutions?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
2
Poor
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 

The questions were good and conceptual based.
English was also asked in the first round
paragraph questions were also there

Round 3 - Technical 

(1 Question)

  • Q1. Was given a case study to solve

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare about the company well

Interview Questionnaire 

3 Questions

  • Q1. Mostly around client management, handling and collaboration.
  • Q2. Puzzles and Guesstimates
  • Q3. Case study- Simple one

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a cakewalk if you ever handled clients before. Please brush up on your case study solving skills. The interview is a breeze though lengthy.

o9 Solutions Interview FAQs

How many rounds are there in o9 Solutions interview for freshers?
o9 Solutions interview process for freshers usually has 3 rounds. The most common rounds in the o9 Solutions interview process for freshers are Aptitude Test, One-on-one Round and Technical.
How to prepare for o9 Solutions interview for freshers?
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 o9 Solutions. The most common topics and skills that interviewers at o9 Solutions expect are Analytical Chemistry, Cloud Computing, Manual Testing, Python and SQL.
What are the top questions asked in o9 Solutions interview for freshers?

Some of the top questions asked at the o9 Solutions interview for freshers -

  1. Angle between hour hand and minute hand at 3...read more
  2. Factorial code using recursi...read more
  3. For what purpose trim used in s...read more
What are the most common questions asked in o9 Solutions HR round for freshers?

The most common HR questions asked in o9 Solutions interview are for freshers -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. What are your salary expectatio...read more
How long is the o9 Solutions interview process?

The duration of o9 Solutions 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/5

based on 3 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more
Join o9 Solutions A place to feel empowered, every day, every step

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 199 Interviews
AVASOFT Interview Questions
2.8
 • 175 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 113 Interviews
EbixCash Limited Interview Questions
3.9
 • 106 Interviews
SPRINKLR Interview Questions
2.9
 • 105 Interviews
View all

o9 Solutions Reviews and Ratings

based on 262 reviews

3.6/5

Rating in categories

3.5

Skill development

3.2

Work-life balance

3.6

Salary

3.7

Job security

3.7

Company culture

3.3

Promotions

3.3

Work satisfaction

Explore 262 Reviews and Ratings
Customer Success Manager

Bangalore / Bengaluru

8-13 Yrs

Not Disclosed

DevOps Architect I

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Senior Functional Consultant

Bangalore / Bengaluru

1-6 Yrs

Not Disclosed

Explore more jobs
Senior Consultant
306 salaries
unlock blur

₹11.5 L/yr - ₹19.6 L/yr

Consultant
220 salaries
unlock blur

₹8.6 L/yr - ₹14.2 L/yr

Senior Functional Consultant
126 salaries
unlock blur

₹12 L/yr - ₹19.3 L/yr

Senior Technical Consultant
92 salaries
unlock blur

₹11 L/yr - ₹18.3 L/yr

Technical Consultant
89 salaries
unlock blur

₹8.5 L/yr - ₹14 L/yr

Explore more salaries
Compare o9 Solutions with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

Chetu

3.3
Compare

R Systems International

3.3
Compare
write
Share an Interview