Upload Button Icon Add office photos
Engaged Employer

i

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

InMobi Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

InMobi Interview Questions and Answers

Updated 8 Jan 2025
Popular Designations

43 Interview questions

A SDE II (UI) was asked 8mo ago
Q. Given a string s, find the length of the longest substring without repeating characters.
Ans. 

Find the length of the longest substring in a string without repeating characters.

  • Use a sliding window approach to track characters and their indices.

  • Maintain a set to store characters in the current substring.

  • Expand the window by moving the right pointer and check for repeats.

  • If a repeat is found, move the left pointer to the right of the first occurrence.

  • Example: For 'abcabcbb', the longest substring is 'abc' wi...

A React Js Frontend Developer was asked 8mo ago
Q. Can you write a polyfill for Promise?
Ans. 

Polyfill of promise is a code that adds support for promises in older browsers.

  • Polyfill is used to fill in the gaps in browser support for certain features.

  • For promises, a polyfill can be used to provide support in older browsers that do not natively support promises.

  • Popular promise polyfills include 'es6-promise' and 'bluebird'.

View all React Js Frontend Developer interview questions
A Software Engineer was asked 10mo ago
Q. What are the types of encryption?
Ans. 

Types of encryption include symmetric encryption, asymmetric encryption, and hashing.

  • Symmetric encryption: Uses the same key for both encryption and decryption, examples include AES and DES.

  • Asymmetric encryption: Uses a pair of public and private keys for encryption and decryption, examples include RSA and ECC.

  • Hashing: Converts data into a fixed-size string of bytes, examples include MD5 and SHA.

View all Software Engineer interview questions
A Software Development Engineer II was asked
Q. Given a circular array nums, compute its maximum subarray sum in O(n) time complexity.
Ans. 

Find the maximum sum of a circular subarray in a given array of integers.

  • Use Kadane's algorithm to find the maximum subarray sum in a non-circular manner.

  • Calculate the total sum of the array and apply Kadane's algorithm to find the minimum subarray sum.

  • The maximum circular subarray sum can be found as: max(max_subarray_sum, total_sum - min_subarray_sum).

  • Example: For array [1, -2, 3, -2], max subarray sum is 3, and...

View all Software Development Engineer II interview questions
A Software Development Engineer II was asked
Q. Given arrival and departure times of all trains that reach a railway station, the task is to find the minimum number of platforms required for the railway station so that no train waits. We are given two ar...
Ans. 

Calculate the minimum number of platforms needed at a train station based on arrival and departure times.

  • Sort arrival and departure times.

  • Use a two-pointer technique to track platforms needed.

  • Increment platform count on arrival and decrement on departure.

  • Example: For arrivals [10:00, 10:15] and departures [10:30, 10:45], 1 platform is needed.

View all Software Development Engineer II interview questions
A Software Development Engineer II was asked
Q. Design a stack-like data structure to push elements to the stack and recall the most frequently appeared element in the stack.
Ans. 

Implement a stack that supports push, pop, and retrieving the most frequent element efficiently.

  • Use a hash map to count frequencies of elements.

  • Maintain a stack for each frequency level to store elements.

  • When pushing, update the frequency and push to the corresponding stack.

  • When popping, retrieve from the highest frequency stack and update counts.

  • Example: Push(5), Push(7), Push(5) results in frequency {5: 2, 7: 1}...

View all Software Development Engineer II interview questions

InMobi HR Interview Questions

4 questions and answers

Q. Tell me one thing about you that's not listed on your resume
Q. Tell me about the projects you have worked on.
Q. Tell me about yourself.
A Senior Analyst was asked
Q. Explain the use cases of different charts in Power BI.
Ans. 

Different charts in Power BI have various use cases such as visualizing trends, comparing data, and highlighting outliers.

  • Bar charts are useful for comparing data across categories.

  • Line charts are great for showing trends over time.

  • Pie charts can be used to show the proportion of each category in a dataset.

  • Scatter plots are helpful for identifying relationships between two variables.

  • Gantt charts are ideal for visu...

View all Senior Analyst interview questions
Are these interview questions helpful?
A Senior Analyst was asked
Q. Write a query to find the nth highest salary in SQL.
Ans. 

Query to find nth highest salary in SQL

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

  • Use the DISTINCT keyword to eliminate duplicates

  • Use LIMIT and OFFSET to get the nth highest salary

View all Senior Analyst interview questions
An Associate Product Manager was asked
Q. If you were to enter the app-based taxi market where Uber and Ola are already present, what would you launch?
Ans. 

Launch a sustainable, community-driven taxi app focusing on eco-friendly rides and local partnerships.

  • Introduce electric vehicles (EVs) to reduce carbon footprint, similar to how Lyft has committed to 100% electric rides by 2030.

  • Implement a loyalty program that rewards users for eco-friendly choices, akin to Starbucks' rewards system.

  • Partner with local businesses for discounts and promotions, similar to how Uber E...

View all Associate Product Manager interview questions
An Associate Product Manager was asked
Q. Is the Apple iPad a success or a failure?
Ans. 

Apple i-Pad is a success.

  • The i-Pad has sold over 500 million units worldwide.

  • It has revolutionized the tablet market and set the standard for other companies.

  • The i-Pad has been used in various industries such as education, healthcare, and entertainment.

  • Apple continues to release new and improved versions of the i-Pad, showing its success.

  • The i-Pad has also contributed significantly to Apple's revenue and profits.

View all Associate Product Manager interview questions

InMobi Interview Experiences

35 interviews found

I applied via Campus Placement

Round 1 - Case Study 

We had to submit a case assignment along with the resume. The topic was around ad-tech: getting into the OTT segment, market potential, disruptive features, GTM and trade-offs.
Make sure that the document has structure. You will mostly be asked to run through the case. State your assumptions and sources clearly while speaking and be prepared for cross questions.

Round 2 - Case Study 

Walk me through your resume.
Focus on the numbers and your contribution

How would you approach a problem you faced at work differently now if the constraints are changed?

Run me through the case you submitted.

Round 3 - Product Management 

(3 Questions)

  • Q1. Questions on resume points
  • Q2. Algorithms- Sort order algorithm for an e-commerce search page.
  • Ans. 

    The sort order algorithm for an e-commerce search page determines the arrangement of products based on relevance to the search query.

    • The algorithm should consider factors like product popularity, customer ratings, and relevance to the search query.

    • It should prioritize products that closely match the search query and have higher ratings or popularity.

    • The algorithm can also take into account other factors like price, ava...

  • Answered by AI
  • Q3. Design: Ad publishers would not want ads with restricted content (porn, alcohol, arms, violence etc.) to be shown on their website. Design a feature so that publishers can define these restrictions.
  • Ans. 

    Design a feature for ad publishers to define restrictions on ad content.

    • Create a user-friendly interface for publishers to set their content restrictions.

    • Allow publishers to select specific categories of restricted content (e.g. porn, alcohol, violence).

    • Implement a keyword-based filtering system to identify restricted content.

    • Provide an option for publishers to upload custom lists of restricted keywords.

    • Offer a preview...

  • Answered by AI
Round 4 - Product Management 

(4 Questions)

  • Q1. What is product market fit?
  • Ans. 

    Product market fit is the alignment between a product and its target market, where the product satisfies the market's needs.

    • Product market fit is achieved when a product solves a real problem for a specific target market.

    • It means that the product is in demand and customers are willing to pay for it.

    • Product market fit is not a one-time event, it requires continuous validation and improvement.

    • Examples of products with st...

  • Answered by AI
  • Q2. Is Apple i-Pad a success or failure ?
  • Ans. 

    Apple i-Pad is a success.

    • The i-Pad has sold over 500 million units worldwide.

    • It has revolutionized the tablet market and set the standard for other companies.

    • The i-Pad has been used in various industries such as education, healthcare, and entertainment.

    • Apple continues to release new and improved versions of the i-Pad, showing its success.

    • The i-Pad has also contributed significantly to Apple's revenue and profits.

  • Answered by AI
  • Q3. If you were to enter into the app-based taxi market where Uber and Ola are already present, what will you launch?
  • Ans. 

    Launch a sustainable, community-driven taxi app focusing on eco-friendly rides and local partnerships.

    • Introduce electric vehicles (EVs) to reduce carbon footprint, similar to how Lyft has committed to 100% electric rides by 2030.

    • Implement a loyalty program that rewards users for eco-friendly choices, akin to Starbucks' rewards system.

    • Partner with local businesses for discounts and promotions, similar to how Uber Eats c...

  • Answered by AI
  • Q4. Design an app to ease out the ISB campus hiring process. What North-star metric will you go after? Estimate the improvement in this metric if the app is launched.
  • Ans. 

    An app to streamline ISB campus hiring process with a focus on reducing time-to-hire.

    • Create a user-friendly interface for job postings and applications

    • Incorporate a resume screening tool to filter out unqualified candidates

    • Implement an interview scheduling feature to reduce scheduling conflicts

    • Track time-to-hire as the North-star metric to measure success

    • Expect a 20-30% improvement in time-to-hire with the launch of th...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Round 2 - This round lasted for 40 minutes.

Interviewed by a Senior Product Manager (VC from China). The round was mostly around my resume and a thorough discussion on the submitted case.

Round 3 - This round lasted for 40 minutes.

Round 4 - This round lasted for 40 minutes.

---

Suggestions:

Have a conversation with the interviewer, ask as many questions and don't jump into the solution without understanding the premise correctly.

Product thinking is vital to crack PM interviews. The interviewer is mostly assessing you on how you think and approach a problem. Be confident!

Skills evaluated in this interview

Interview Questions & Answers

user image Swastik Pandey

posted on 5 Dec 2024

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

I applied via Referral and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Find length of longest substring, without repeating charecters
  • Q2. Implement a custom method for Memoization
  • Q3. What is this keyword, and follow up questions were asked on this
  • Q4. Deep copy and shallow copy

Skills evaluated in this interview

Analyst Interview Questions & Answers

user image abishek saju

posted on 15 Dec 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Why do you want to work here
Round 2 - One-on-one 

(1 Question)

  • Q1. Explain your previous work experience
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Optimisation techniques/ vanilla js
  • Q2. Polyfill of promise

Skills evaluated in this interview

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

Leetcode easy-medium

Round 2 - Technical 

(2 Questions)

  • Q1. What is Cyber Security and information security?
  • Ans. 

    Cyber security is the practice of protecting systems, networks, and data from digital attacks.

    • Cyber security involves implementing measures to prevent unauthorized access, data breaches, and other cyber threats.

    • It includes technologies, processes, and practices designed to protect networks, devices, programs, and data from attack, damage, or unauthorized access.

    • Examples of cyber security measures include firewalls, ant...

  • Answered by AI
  • Q2. What are the types of encryption?
  • Ans. 

    Types of encryption include symmetric encryption, asymmetric encryption, and hashing.

    • Symmetric encryption: Uses the same key for both encryption and decryption, examples include AES and DES.

    • Asymmetric encryption: Uses a pair of public and private keys for encryption and decryption, examples include RSA and ECC.

    • Hashing: Converts data into a fixed-size string of bytes, examples include MD5 and SHA.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. General Understanding of Ad Tech space. And Gernal Marketing & Digital Marketing Questions. CRM related Questions.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. Max circular subarray sum
  • Ans. 

    Find the maximum sum of a circular subarray in a given array of integers.

    • Use Kadane's algorithm to find the maximum subarray sum in a non-circular manner.

    • Calculate the total sum of the array and apply Kadane's algorithm to find the minimum subarray sum.

    • The maximum circular subarray sum can be found as: max(max_subarray_sum, total_sum - min_subarray_sum).

    • Example: For array [1, -2, 3, -2], max subarray sum is 3, and circ...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Max frequency stack
  • Ans. 

    Implement a stack that supports push, pop, and retrieving the most frequent element efficiently.

    • Use a hash map to count frequencies of elements.

    • Maintain a stack for each frequency level to store elements.

    • When pushing, update the frequency and push to the corresponding stack.

    • When popping, retrieve from the highest frequency stack and update counts.

    • Example: Push(5), Push(7), Push(5) results in frequency {5: 2, 7: 1}.

  • Answered by AI
  • Q2. Minimum no of platforms required
  • Ans. 

    Calculate the minimum number of platforms needed at a train station based on arrival and departure times.

    • Sort arrival and departure times.

    • Use a two-pointer technique to track platforms needed.

    • Increment platform count on arrival and decrement on departure.

    • Example: For arrivals [10:00, 10:15] and departures [10:30, 10:45], 1 platform is needed.

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

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about a tough situation with a colleague or manager
  • Q2. Tell me about a challenge in your life and how you overcame it
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic Sql, python and Excel questions.
Round 2 - One-on-one 

(1 Question)

  • Q1. Situational Interview round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Product Management 

(1 Question)

  • Q1. Explain the product you worked on in your previous company
Round 2 - Behavioral 

(1 Question)

  • Q1. More Product sense question

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have a good Education background and talk confidently. You can get in.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Great picture with the best
Round 2 - Technical 

(1 Question)

  • Q1. Greater Noida west bengal
Round 3 - Behavioral 

(1 Question)

  • Q1. Great job Group manager
Round 4 - HR 

(1 Question)

  • Q1. Great Great Great Great

Top trending discussions

View All
Interview Hub
1w
a client servicing executive
FeedCard Image
Got a question about InMobi?
Ask anonymously on communities.

InMobi Interview FAQs

How many rounds are there in InMobi interview?
InMobi interview process usually has 2-3 rounds. The most common rounds in the InMobi interview process are Technical, One-on-one Round and Case Study.
How to prepare for InMobi 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 InMobi. The most common topics and skills that interviewers at InMobi expect are Weaving, Data Analysis, Advertising, SQL and Python.
What are the top questions asked in InMobi interview?

Some of the top questions asked at the InMobi interview -

  1. The office of InMobi technologies has 10 floors, each with 300 employees. In th...read more
  2. to design a class which has two random numbers and a mathematical operation in ...read more
  3. In a line where words are separated by spaces, , and capitalize first letter of...read more
How long is the InMobi interview process?

The duration of InMobi 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 25 interview experiences

Difficulty level

Easy 40%
Moderate 50%
Hard 10%

Duration

Less than 2 weeks 82%
4-6 weeks 9%
More than 8 weeks 9%
View more

Interview Questions from Similar Companies

R.R. Donnelley Interview Questions
3.8
 • 118 Interviews
Epsilon Interview Questions
3.8
 • 95 Interviews
Publicis Interview Questions
3.6
 • 54 Interviews
Regalix Interview Questions
2.9
 • 51 Interviews
Denave Interview Questions
3.6
 • 44 Interviews
Smollan Group Interview Questions
3.9
 • 41 Interviews
Xdbs Interview Questions
3.1
 • 39 Interviews
Groupm Media Interview Questions
3.8
 • 38 Interviews
Affinity Express Interview Questions
2.9
 • 36 Interviews
ChannelPlay Interview Questions
3.8
 • 25 Interviews
View all

InMobi Reviews and Ratings

based on 199 reviews

3.3/5

Rating in categories

2.9

Skill development

3.5

Work-life balance

3.5

Salary

2.8

Job security

3.3

Company culture

2.8

Promotions

2.9

Work satisfaction

Explore 199 Reviews and Ratings
Senior Associate - Business Finance

Bangalore / Bengaluru

2-5 Yrs

Not Disclosed

Senior HRIS Specialist

Bangalore / Bengaluru

3-5 Yrs

Not Disclosed

Product Manager - Central Data Repository For People Analytics

Bangalore / Bengaluru

9-14 Yrs

Not Disclosed

Explore more jobs
Accounts Manager
52 salaries
unlock blur

₹10.6 L/yr - ₹18.6 L/yr

Senior Analyst
49 salaries
unlock blur

₹12.7 L/yr - ₹21.7 L/yr

Product Manager
44 salaries
unlock blur

₹31 L/yr - ₹50 L/yr

Software Development Engineer II
42 salaries
unlock blur

₹26.8 L/yr - ₹45 L/yr

Senior Software Engineer
38 salaries
unlock blur

₹28.7 L/yr - ₹49.5 L/yr

Explore more salaries
Compare InMobi with

R.R. Donnelley

3.8
Compare

Epsilon

3.8
Compare

Denave

3.6
Compare

Smollan Group

3.9
Compare
write
Share an Interview