Upload Button Icon Add office photos
Engaged Employer

i

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

Quikr Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Quikr Senior Product Manager Interview Questions and Answers

Updated 16 Jul 2022

Quikr Senior Product Manager Interview Experiences

1 interview found

I applied via Referral and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Puzzles Case studies
Round 2 - One-on-one 

(1 Question)

  • Q1. Discussion with the CEO

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself in the interview. Just keep calm in answering the questions

Interview questions from similar companies

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

(2 Questions)

  • Q1. Tell about work experience
  • Ans. 

    Experienced product manager with 8+ years in tech industry, leading cross-functional teams to launch successful products.

    • Led product development from ideation to launch for multiple software products

    • Managed cross-functional teams including engineers, designers, and marketers

    • Implemented agile methodologies to improve product development process

    • Collaborated with stakeholders to gather requirements and prioritize features

    • ...

  • Answered by AI
  • Q2. Product strategy case question

I was interviewed before Feb 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

It comprised of general aptitude questions and two coding questions. It was an offline test.

  • Q1. 

    N Queens Problem

    Given an integer N, find all possible placements of N queens on an N x N chessboard such that no two queens threaten each other.

    Explanation:

    A queen can attack another queen if they ar...

  • Ans. 

    The N Queens Problem involves finding all possible placements of N queens on an N x N chessboard where no two queens threaten each other.

    • Use backtracking algorithm to explore all possible configurations.

    • Keep track of rows, columns, and diagonals to ensure queens do not attack each other.

    • Generate and print valid configurations where queens are placed safely.

    • Consider constraints and time limit for efficient solution.

    • Exam...

  • Answered by AI
  • Q2. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Achieve sorting in a single scan over the array without using any extra space.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

After having a technical discussion about my CV. He gave me two questions to code.

  • Q1. 

    Ninja and Substrings Problem Statement

    Ninja has to determine all the distinct substrings of size two that can be formed from a given string 'STR' comprising only lowercase alphabetic characters. These su...

  • Ans. 

    Find all unique contiguous substrings of size two from a given string.

    • Iterate through the string and extract substrings of size two

    • Use a set to store unique substrings

    • Return the set as an array of strings

  • Answered by AI
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next points back to a previous node.

    • Traverse the linked list using two pointers, one moving one step at a time and the other moving two steps at a time.

    • If the two pointers meet at any point, there is a cycle in the linked list.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
Round 3 - HR 

(1 Question)

Round duration - 30 minutes
Round difficulty - Easy

This was supposed to be the HR round but out of surprise the interviewer started by giving me a question to code. 
After I approached this question with the right solution he just asked about my family. After that he said to wait. After half an hour the results were announced. A total of three students were hired and I was amongst one of them.

  • Q1. 

    Balanced Parentheses Combinations

    Given an integer N representing the number of pairs of parentheses, find all the possible combinations of balanced parentheses using the given number of pairs.

    Explanati...

  • Ans. 

    Generate all possible combinations of balanced parentheses for a given number of pairs.

    • Use recursion to generate all possible combinations of balanced parentheses.

    • Keep track of the number of open and close parentheses used in each combination.

    • Return the valid combinations as an array of strings.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMagicbricks interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 5 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 interviewSelected

Skills evaluated in this interview

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

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

Interview Questionnaire 

8 Questions

  • Q1. Puzzles were asked during the interview
  • Q2. Different types of case studies were asked
  • Q3. Experience of my previous jobs
  • Q4. What kind of role do you want to get into? Product Analytics vs Data Science vs Product Management?
  • Ans. 

    I am interested in pursuing a career in Product Management.

    • I enjoy working with cross-functional teams to develop and launch successful products.

    • I have experience in market research, product strategy, and product development.

    • I am passionate about understanding customer needs and delivering solutions that meet those needs.

    • I am excited about the opportunity to lead a team and drive product innovation.

    • While I have some ex...

  • Answered by AI
  • Q5. Why do you think you are more suitable for a product management role?
  • Q6. What kind of data science projects you have done in the past?
  • Ans. 

    I have worked on data science projects related to customer segmentation, predictive modeling, and recommendation systems.

    • Developed a customer segmentation model using K-means clustering algorithm

    • Built a predictive model to forecast sales using time series analysis

    • Created a recommendation system for an e-commerce platform using collaborative filtering

    • Analyzed user behavior data to identify patterns and improve user enga...

  • Answered by AI
  • Q7. What have you done as a product manager in your previous organization?
  • Q8. Mention one project in detail that you led end-to-end.

Interview Preparation Tips

Interview preparation tips for other job seekers - My interview was for being done for two positions - data science and product management. So the questions were asked from both the domains. A lot of focus on puzzles was there. Also, the interviewer wanted to see if I have clarity of the role that I wanted to get into.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 questions in 60 minutes

Round 2 - Technical 

(2 Questions)

  • Q1. System design, 1 hr
  • Q2. Don’t remember the question
Round 3 - HR 

(2 Questions)

  • Q1. Asked about my school life
  • Q2. Asked about my family
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2023. There were 4 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. HR screening to check fit
Round 2 - One-on-one 

(1 Question)

  • Q1. Product round with a PM/ SPM
Round 3 - Case Study 

Product case study with a couple of questions

Round 4 - One-on-one 

(1 Question)

  • Q1. Final round with senior management
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Competitor benchmarking and understanding business

Round 2 - Case Study 

Discussion on the take home assignment case study for competitor benchmarking

Round 3 - Case Study 

Discussion on various avenues one can try within 99acres for business growth

Interview Preparation Tips

Interview preparation tips for other job seekers - Align business objectives very clearly before answering.

I applied via LinkedIn and was interviewed in Jul 2022. There were 2 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 - Aptitude Test 

Q1 - array questions.
Q2 - Graph questions.
Q3 - DP questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Must do medium questions on leetcode. Should be know all the data structures and algorithms. Should be know all CS fundamentals. No need to give advanced contest on codeforces.
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
Contribute & help others!
anonymous
You can choose to be anonymous

Quikr Interview FAQs

How many rounds are there in Quikr Senior Product Manager interview?
Quikr interview process usually has 2 rounds. The most common rounds in the Quikr interview process are One-on-one Round.

Recently Viewed

INTERVIEWS

Yatra

No Interviews

REVIEWS

Jio Platforms

No Reviews

INTERVIEWS

Accenture

No Interviews

SALARIES

MAQ Software

INTERVIEWS

Cognizant

No Interviews

INTERVIEWS

Citrix

No Interviews

INTERVIEWS

Parthenon - EY

No Interviews

REVIEWS

MAQ Software

No Reviews

INTERVIEWS

Oliver Wyman

No Interviews

SALARIES

BYJU'S

Tell us how to improve this page.

Quikr Senior Product Manager Salary
based on 6 salaries
₹18 L/yr - ₹38 L/yr
18% less than the average Senior Product Manager Salary in India
View more details
Key Account Manager
286 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
91 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
85 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Manager
80 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Key Account Manager
80 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Quikr with

OLX

3.8
Compare

JustDial

3.5
Compare

MagicBricks

3.7
Compare

Cartrade.com

4.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent