Upload Button Icon Add office photos
Engaged Employer

i

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

OLX Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

OLX Interview Questions, Process, and Tips

Updated 28 Dec 2024

Top OLX Interview Questions and Answers

View all 33 questions

OLX Interview Experiences

Popular Designations

57 interviews found

Interview Questionnaire 

15 Questions

  • Q1. Indexes in mysql
  • Ans. 

    Indexes in MySQL are used to improve query performance by allowing faster data retrieval.

    • Indexes are created on one or more columns of a table.

    • They work by creating a separate data structure that allows for faster data retrieval.

    • Indexes can be created using the CREATE INDEX statement.

    • Indexes can also be dropped using the DROP INDEX statement.

    • Indexes can be used to speed up SELECT, UPDATE, and DELETE statements.

    • Indexes ...

  • Answered by AI
  • Q2. Difference between include_once and require_once?
  • Ans. 

    include_once and require_once are PHP functions used to include files. The difference is in how they handle errors.

    • include_once will only include the file once, and will not throw a fatal error if the file is not found

    • require_once will also only include the file once, but will throw a fatal error if the file is not found

    • Both functions are used to include files that contain functions or variables that are needed in the

  • Answered by AI
  • Q3. Constructor and destrutor?
  • Q4. Sessions vs cookie. Detailed discussion
  • Ans. 

    Sessions and cookies are both used for maintaining user state, but sessions are server-side and cookies are client-side.

    • Sessions store user data on the server, while cookies store data on the client's browser

    • Sessions are more secure than cookies because the data is not accessible to the client

    • Cookies can be used for tracking user behavior and preferences

    • Sessions are typically used for authentication and authorization p...

  • Answered by AI
  • Q5. Some questions on lucene, solr as it was mentioned in my resume
  • Q6. 8 ball puzzle
  • Q7. Design patterns?
  • Q8. Array of first n numbers.One number is missing.Find missing number?
  • Ans. 

    To find missing number in an array of first n numbers.

    • Calculate the sum of first n numbers using formula n*(n+1)/2

    • Calculate the sum of given array using loop

    • Subtract the sum of array from sum of first n numbers to get the missing number

  • Answered by AI
  • Q9. What is memcache. Some discussion around it
  • Q10. Design a database schema for a chat application where user can send message to an individual or in group
  • Ans. 

    Design a database schema for a chat application with individual and group messaging.

    • Create a 'users' table with unique user IDs

    • Create a 'messages' table with message IDs, sender and receiver IDs, message content, and timestamp

    • Create a 'groups' table with unique group IDs and group names

    • Create a 'group_members' table with group ID and user ID to track group membership

    • Use foreign keys to link tables together

    • Consider inde

  • Answered by AI
  • Q11. Write sql to retrieve all unread messages when user sign in
  • Ans. 

    SQL query to retrieve all unread messages upon user sign in

    • Use a JOIN statement to combine the messages and user tables

    • Filter the results to only show messages that have not been read by the user

    • Use the user's sign in information to identify which messages are unread

  • Answered by AI
  • Q12. Why do you want to join OLX?
  • Ans. 

    I am excited to join OLX because of its innovative approach to online marketplaces and its commitment to customer satisfaction.

    • I am impressed by OLX's user-friendly platform and its ability to connect buyers and sellers from all over the world.

    • I am excited to work with a team of talented developers who are passionate about creating cutting-edge technology.

    • I believe that OLX's focus on customer satisfaction aligns with ...

  • Answered by AI
  • Q13. What difficulties have you faced
  • Ans. 

    I have faced difficulties in debugging complex code and managing project timelines.

    • Debugging complex code with multiple dependencies

    • Managing project timelines with changing requirements

    • Working with legacy code and outdated technologies

    • Collaborating with team members in different time zones

    • Dealing with unexpected bugs and errors

  • Answered by AI
  • Q14. How is the Employee hierarchy in your current organization.Whom do you report to
  • Ans. 

    I report to the Technical Lead and am part of the development team.

    • I report to the Technical Lead

    • I am part of the development team

  • Answered by AI
  • Q15. How much is the web traffic on your site etc
  • Ans. 

    Our website receives an average of 10,000 unique visitors per day.

    • Our website has a steady flow of traffic with a consistent number of unique visitors per day.

    • We use Google Analytics to track our web traffic and analyze user behavior.

    • Our peak traffic times are during weekdays from 9am to 5pm.

    • We have noticed an increase in mobile traffic over the past year.

    • Our website's traffic is primarily driven by organic search and

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Round 4 with CTO :It was a normal discussion.

General Tips: I got a call through recruiter. My telephonic interview got scheduled. Overall process was very fast. It took not more than 3-4 days till I received offer letter.
Skills: Algorithm, Data structure, SQL
College Name: na

Skills evaluated in this interview

Top OLX Software Developer Interview Questions and Answers

Q1. Design a database schema for a chat application where user can send message to an individual or in group
View answer (1)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (42)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Variation of sort 0,1,2
  • Ans. 

    The question is asking for a variation of sorting an array containing 0s, 1s, and 2s.

    • Use a three-way partitioning algorithm to sort the array in a single pass.

    • Keep track of three pointers - low, mid, and high to partition the array.

    • Example: Input array = [0, 1, 2, 1, 0], Output array = [0, 0, 1, 1, 2]

  • Answered by AI
  • Q2. Longest palindromic substring
  • Ans. 

    A palindromic substring is a string that reads the same forwards and backwards.

    • Use dynamic programming to find the longest palindromic substring.

    • Start by considering each character as the center of a potential palindrome.

    • Expand outwards from each center to check for palindromic substrings.

    • Keep track of the longest palindrome found so far.

    • Example: Input 'babad', Output 'bab' or 'aba'.

  • Answered by AI
  • Q3. Core qns (DBMS+OS+OOPS+CN)+ high level of project
Round 2 - Technical 

(2 Questions)

  • Q1. Deep dive discussion on projects(No DSA qns)
  • Q2. Asking why you used only that techstack on project ,what are your difficulties on project and who advised you to use that techstack

Skills evaluated in this interview

Technology Intern Interview Questions asked at other Companies

Q1. what is ros1 and difference between ros1 and ros2?
View answer (1)
OLX Interview Questions and Answers for Freshers
illustration image
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Difference Between Rank and Dense Rank
  • Ans. 

    Rank assigns unique ranks to each distinct value, while Dense Rank assigns consecutive ranks to each distinct value.

    • Rank does not skip ranks when there are ties, while Dense Rank does

    • Rank will have gaps in ranks if there are ties, while Dense Rank will not

    • Rank function is used to assign a unique rank to each distinct row, while Dense Rank function is used to assign consecutive ranks to each distinct row

  • Answered by AI
  • Q2. Some Basic Joins
  • Q3. Socks Pair Puzzle Qustions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare BASIC SQL and some puzzles questions

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 (9)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Work experience in field
  • Ans. 

    I have 5 years of experience working in the automotive industry, specifically in dealer management roles.

    • Managed relationships with dealers to drive sales and increase profitability

    • Implemented strategies to improve dealer performance and customer satisfaction

    • Trained dealers on new products and services to enhance their sales capabilities

  • Answered by AI
  • Q2. Sell kitni karte the
  • Ans. 

    I used to sell kits for various purposes.

    • I sold kits for automotive maintenance, first aid, home improvement, etc.

    • I had experience selling kits with different components and price points.

    • I focused on understanding customer needs and recommending the right kit for them.

  • Answered by AI
  • Q3. Education kab or kaha se

Dealer Success Manager Interview Questions asked at other Companies

Q1. How much Pre owned cars dealers sales. Where's from the purchase the cars etc.
View answer (1)

OLX interview questions for popular designations

 Retail Associate

 (5)

 Dealer Success Manager

 (5)

 Sales & Marketing

 (3)

 Dealer Relationship Manager

 (2)

 Software Developer

 (2)

 Accounts Payable Executive

 (2)

 Key Account Manager

 (2)

 Senior Android Developer

 (2)

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

(4 Questions)

  • Q1. Why you want to switch from your current role
  • Q2. What is your current CTC
  • Q3. Working experience
  • Q4. What is your Notice period
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell something about yourself
  • Q2. Your current position

Interview Preparation Tips

Interview preparation tips for other job seekers - Be fare less, be honest give your 100%

Dealer Success Manager Interview Questions asked at other Companies

Q1. How much Pre owned cars dealers sales. Where's from the purchase the cars etc.
View answer (1)

Get interview-ready with Top OLX Interview Questions

Security Engineer Interview Questions & Answers

user image Vivek Rajput

posted on 24 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Cloud Security, Encryption
  • Q2. Coding and scripting

Security Engineer Interview Questions asked at other Companies

Q1. 1. What is Cryptography? Cryptography is the practice and study of techniques for securing information and communication mainly to protect the data from third parties that the data is not intended for. 2. What is the difference between Symm... read more
View answer (25)

Jobs at OLX

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

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Other 

(1 Question)

  • Q1. Asked about my experience and worked at first

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice job

Content Moderator Interview Questions asked at other Companies

Q1. What do you know about content moderation?
View answer (5)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Favourite Product. Metrics you would track.
  • Ans. 

    My favorite product is the iPhone. Metrics I would track include user engagement, retention rate, customer satisfaction, and revenue growth.

    • User engagement: tracking daily active users, time spent on the device, and frequency of app usage.

    • Retention rate: monitoring how many users continue to use the product over time.

    • Customer satisfaction: collecting feedback through surveys, reviews, and customer support interactions.

    • ...

  • Answered by AI

Product Manager Interview Questions asked at other Companies

Q1. You see the number of people cancelling the order increasing. Cancel window 24 hours. What would you do?
View answer (26)

Dealer Success Manager Interview Questions & Answers

user image Rabbani Basha K

posted on 22 Dec 2023

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

I applied via LinkedIn and was interviewed in Jun 2023. 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 Resume tips
Round 2 - HR 

(3 Questions)

  • Q1. Tell about Self introduction and going with resume
  • Q2. Why you left the previous job
  • Q3. Expected salary
Round 3 - Asm 

(3 Questions)

  • Q1. You should achieve the target by EOM
  • Q2. You are belongs to which place
  • Q3. Are you ready to relocate
Round 4 - Behavioral 

(3 Questions)

  • Q1. What about your experience
  • Q2. What about your family
  • Q3. Asking about past company experience details

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview schedule will happen easy process. It was not difficult. But some of sr.managements asking difficult questions.

Dealer Success Manager Interview Questions asked at other Companies

Q1. How much Pre owned cars dealers sales. Where's from the purchase the cars etc.
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Solid principle

Senior Android Developer Interview Questions asked at other Companies

Q1. Binary Array Sorting Problem Statement You are provided with a binary array, i.e., an array containing only 0s and 1s. Your task is to sort this binary array and return it after sorting. Input: The first line contains an integer ‘T’ denoti... read more
View answer (1)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Link List operations and result

Round 2 - Technical 

(1 Question)

  • Q1. Design Datadog, a new relic

Interview Preparation Tips

Topics to prepare for OLX Software Development Engineer 3 interview:
  • DSA
Interview preparation tips for other job seekers - Don't forget what you study in college.

Software Development Engineer 3 Interview Questions asked at other Companies

Q1. What are triggers , where can they be used ? What is a mutating trigger problem , how can it be solved?
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

OLX Interview FAQs

How many rounds are there in OLX interview?
OLX interview process usually has 2-3 rounds. The most common rounds in the OLX interview process are One-on-one Round, Resume Shortlist and HR.
How to prepare for OLX 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 OLX. The most common topics and skills that interviewers at OLX expect are Product Engineering, Sales, Inspection, Trade and Management.
What are the top questions asked in OLX interview?

Some of the top questions asked at the OLX interview -

  1. IF CAR 2013 MARUTI WAGNOR 3 RD OWNER WHAT WOULD BE THE PRI...read more
  2. Design a database schema for a chat application where user can send message to ...read more
  3. Write sql to retrieve all unread messages when user sign...read more
How long is the OLX interview process?

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

Recently Viewed

INTERVIEWS

OLX

No Interviews

INTERVIEWS

OLX

No Interviews

LIST OF COMPANIES

DBS Bank

Locations

INTERVIEWS

OLX

No Interviews

SALARIES

Beckman Coulter

INTERVIEWS

OLX

No Interviews

INTERVIEWS

Bio-Rad Laboratories

No Interviews

INTERVIEWS

Osstem Implant India

No Interviews

INTERVIEWS

OLX

No Interviews

Tell us how to improve this page.

OLX Interview Process

based on 36 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Flipkart Interview Questions
4.0
 • 1.3k Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
Quikr Interview Questions
3.7
 • 31 Interviews
eBay Interview Questions
3.8
 • 20 Interviews
Shopclues Interview Questions
3.9
 • 9 Interviews
Paytm Mall Interview Questions
3.6
 • 7 Interviews
Shopify Interview Questions
4.0
 • 3 Interviews
View all

OLX Reviews and Ratings

based on 658 reviews

3.8/5

Rating in categories

3.6

Skill development

3.7

Work-life balance

4.0

Salary

3.2

Job security

3.7

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 658 Reviews and Ratings
Key Account Manager - Tele sales

Gurgaon / Gurugram

1-6 Yrs

₹ 2-4 LPA

Explore more jobs
Dealer Success Manager
152 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Key Account Manager
141 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Accounts Manager
119 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Accounts Manager
70 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Retail Associate
65 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare OLX with

Quikr

3.7
Compare

eBay

3.8
Compare

Tokopedia

4.0
Compare

Flipkart

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