Upload Button Icon Add office photos
Engaged Employer

i

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

Big Oh Notation Verified Tick

Compare button icon Compare button icon Compare
2.8

based on 48 Reviews

Filter interviews by

Big Oh Notation Interview Questions, Process, and Tips

Updated 2 Jan 2025

Top Big Oh Notation Interview Questions and Answers

View all 8 questions

Big Oh Notation Interview Experiences

Popular Designations

23 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Walk-in and was interviewed in Jul 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

It was medium level aptitude . but still many of the students didn't qualify that.
qualify criteria was around 50% marks in aptitude test.
20 questions in 30 minutes

Round 2 - Coding Test 

2 coding questions of medium level from leetcode
1. inplace 90 degree matrix rotation
2. longest substring

it was on a paper , not an online mode

Round 3 - Group Discussion 

General gd round , mainly to check communication

Round 4 - Technical 

(1 Question)

  • Q1. Oops medium data structure sql questions

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Coding questions like longest substring

Round 2 - Group Discussion 

This was the worst GD .It was in online mode actually they ask about DSA in this round and will only allow if you rase hand in the first .

Interview Preparation Tips

Interview preparation tips for other job seekers - look for the DSA

Software Development Engineer Intern Interview Questions asked at other Companies

Q1. Say you're dealing with really long integers. They're too long to fit into a regular datatype, so linked lists are used to store them, with each node of the list containing one digit. Now the problem is, given two linked lists, i.e. two rea... read more
View answer (2)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

It was good. We were given two situation for which we have to find the solutions.

Round 3 - Group Discussion 

In this round companies offical started asking about the happening around us and their reasons.

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (8)
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 Apr 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Laggy issues in animation. Security issues. Code Optmizaton. Function and class component Redux

React Native Developer Interview Questions asked at other Companies

Q1. 3. What is the use useEffect Hook in react native? and how you relate it with lifecycle method which is class components?
View answer (3)

Big Oh Notation interview questions for popular designations

 Software Developer

 (3)

 Associate Software Developer

 (2)

 Business Analyst

 (2)

 Technical Trainee

 (2)

 android and Flutter Developer

 (1)

 Android Developer

 (1)

 Associate Software Engineer

 (1)

 Business Officer

 (1)

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

I applied via campus placement at Deenbandhu Chotu Ram University of Science and Technology, Murthal and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Coding Test 

There were two coding questions. I solved them both using Hashmap. Solution were to be written simply on text field given. This was an online non proctored test.

Round 2 - Coding Test 

This time we were given 2 more coding question to be solved in presence of hiring team this was on campus. Off campus process is different as my friend who applied off campus had an GD in second round.

Round 3 - Coding Test 

Again 2 question were given to be solved in presence of hiring team.

Round 4 - Technical 

(3 Questions)

  • Q1. Candidates who solved all the 6 questions of 3 rounds in given time limits were qualified for this round. They simply asked about DBMS , OOPS, DSA. and then suggested me to learn JAVA before joining and...
  • Q2. Implement linked list
  • Ans. 

    A linked list is a data structure where each element points to the next one.

    • Create a Node class with a value and a next pointer

    • Create a LinkedList class with a head pointer and methods to add, remove, and traverse nodes

    • Example: LinkedList ll = new LinkedList(); ll.add(5); ll.add(10); ll.remove(5);

  • Answered by AI
  • Q3. Inorder tree traversal.
  • Ans. 

    Inorder tree traversal is a way of visiting each node in a binary tree in a specific order.

    • Start at the leftmost node of the tree

    • Visit the left subtree recursively

    • Visit the current node

    • Visit the right subtree recursively

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good knowledge of Data Structure and Algorithms, Object Oriented Programming, Database management System. In first round everyone gets different question. Ask your friend what was their question and solve them as well. Because 1 of my question in second round was the one which my friend got in his first round.

Skills evaluated in this interview

Technical Trainee Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (5)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. What is the difference between classes and struct
  • Ans. 

    Classes are reference types while structs are value types.

    • Classes support inheritance while structs do not.

    • Classes have default access modifier as internal while structs have it as private.

    • Classes have a destructor while structs do not.

    • Classes are allocated on heap while structs are allocated on stack.

    • Classes can be null while structs cannot.

  • Answered by AI
  • Q2. Dispatch Queue vs operations
  • Ans. 

    Dispatch Queue is a thread-safe way to execute tasks asynchronously, while Operations are a way to encapsulate tasks.

    • Dispatch Queue is a high-level API for managing concurrent operations.

    • Operations are objects that encapsulate a single task or multiple tasks.

    • Dispatch Queue is simpler to use and recommended for most use cases.

    • Operations provide more control over task dependencies and cancellation.

    • Both can be used togeth

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics and problem-solving and is tested.

Skills evaluated in this interview

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 (170)

I applied via Campus Placement and was interviewed in Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Case Study 

There was 2 Case Study Questions

Round 3 - Group Discussion 

The Group Discussion round was basically to analyze the analytical skills .
Firstly , They asked to Introduce
Then some situational questions were asked.

Round 4 - One-on-one 

(2 Questions)

  • Q1. This was final round to check confidence and basic general knowledge.
  • Q2. Questions based on key skills candidate have.

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are not good in programming skills
You can go for QA- BA and also Content Writting if it interests you.
All the Best !!

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly10 gm) with one box with defective balls (each one of the defective balls weigh 9 gm). You are given an electronic weighing machine and only one chance at it. How will you find out which... read more
View answer (8)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jul 2022.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Group Discussion 

It was a technical GD
They were asking questions on Time and Space Complexity, and more on technical concepts

Round 3 - Coding Test 

ArrayList Questions based on problem solving and basics of DSA

Round 4 - Technical 

(2 Questions)

  • Q1. Questions based on flutter and android , concepts of OS and Java
  • Ans. Topic on flutter and concepts should be known for application developer etc
  • Answered Anonymously
  • Q2. Question on recursion(Palindrome using recursive function)

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Problem Solving and DSA SKILL IS must for comanies like this

android and Flutter Developer Interview Questions asked at other Companies

Q1. How do you do state management in flutter ?
View answer (1)

I applied via Campus Placement and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions on hash map(DSA)

Round 2 - Group Discussion 

Worst GD, it was not even a GD the interviewer told us to unmute & speak only when asked to. During the whole GD, I had not got a single chance to speak even if I knew the answers of some of questions. He was asking the same number of persons the questions again and again. Equal chance to speak was way back thing he didn't even asked many of us the questions. It was totally a waste of time sitting their and listening the same people. I never have seen such GD in my life !
At last only one student from so many got selected for next round and that person was the same who he was asking the questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Speak out in the GD if he didn't call your name ask them to let all get the Equal chance to speak.

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

I applied via Recruitment Consultant and was interviewed in Dec 2021. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Why you choose this job..?
  • Q2. Where you know about this company?
  • Q3. Your Qualification?
  • Q4. Are you fresher or experienced?
  • Q5. (if he/she experienced) tell me your experienced...
  • Q6. If I choose him/her for my company... Then I will tell about our company..

Interview Preparation Tips

Interview preparation tips for other job seekers - If I will become the officer.. I.will.put these ques. And more..

Business Officer Interview Questions asked at other Companies

Q1. What is sale and how will send any product .
View answer (1)

Big Oh Notation Interview FAQs

How many rounds are there in Big Oh Notation interview?
Big Oh Notation interview process usually has 2-3 rounds. The most common rounds in the Big Oh Notation interview process are Coding Test, Resume Shortlist and Group Discussion.
How to prepare for Big Oh Notation 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 Big Oh Notation. The most common topics and skills that interviewers at Big Oh Notation expect are Android, SQL, Javascript, PDF and OOPS.
What are the top questions asked in Big Oh Notation interview?

Some of the top questions asked at the Big Oh Notation interview -

  1. What is the difference between classes and str...read more
  2. Implement linked l...read more
  3. What is Higher Order Componen...read more
How long is the Big Oh Notation interview process?

The duration of Big Oh Notation interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Big Oh Notation Interview Process

based on 19 interviews

Interview experience

3.3
  
Average
View more

Interview Questions from Similar Companies

ClaySys Interview Questions
3.0
 • 24 Interviews
ZingHR Interview Questions
3.4
 • 20 Interviews
Contus Interview Questions
4.4
 • 20 Interviews
DynPro Interview Questions
3.8
 • 18 Interviews
Cogent Interview Questions
3.2
 • 18 Interviews
View all

Big Oh Notation Reviews and Ratings

based on 48 reviews

2.8/5

Rating in categories

3.2

Skill development

2.5

Work-life balance

2.7

Salary

2.7

Job security

2.7

Company culture

2.7

Promotions

2.8

Work satisfaction

Explore 48 Reviews and Ratings
Software Engineer
52 salaries
unlock blur

₹4.5 L/yr - ₹14 L/yr

Associate Software Engineer
21 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Associate Software Developer
11 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹9 L/yr - ₹17.6 L/yr

Technical Trainee
9 salaries
unlock blur

₹1.9 L/yr - ₹5.2 L/yr

Explore more salaries
Compare Big Oh Notation with

Accel Frontline

3.9
Compare

Northcorp Software

4.3
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.7
Compare

HyScaler

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