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

Quikr Interview Questions and Answers

Updated 1 Jun 2025
Popular Designations

58 Interview questions

An Enterprise Account Manager was asked 2mo ago
Q. What are the sources to identify corporate companies?
Ans. 

Identifying corporate companies involves various sources such as databases, industry reports, and networking platforms.

  • Business Databases: Platforms like LinkedIn Sales Navigator and ZoomInfo provide extensive databases of corporate companies, including contact details and company size.

  • Industry Reports: Reports from firms like Gartner or Forrester can help identify key players in specific industries, along with th...

View all Enterprise Account Manager interview questions
A Data Entry Operator was asked 7mo ago
Q. What is the full form of GST?
Ans. 

GST stands for Goods and Services Tax.

  • GST stands for Goods and Services Tax

  • It is an indirect tax levied on the supply of goods and services in India

  • Implemented on 1st July 2017 to replace multiple indirect taxes like VAT, service tax, etc.

View all Data Entry Operator interview questions
A Data Entry Operator was asked 7mo ago
Q. Who is the CEO of Axis Bank?
Ans. 

Amitabh Chaudhry is the CEO of Axis Bank.

  • Amitabh Chaudhry became the CEO of Axis Bank in January 2019.

  • He was previously the MD and CEO of HDFC Life Insurance Company.

  • Under his leadership, Axis Bank has focused on digital transformation and customer-centric initiatives.

View all Data Entry Operator interview questions
An Associate Software Engineer was asked 8mo ago
Q. Explain how to use setTimeout.
Ans. 

setTimeout is a function in JavaScript used to execute a function after a specified amount of time.

  • setTimeout(function, milliseconds) is used to delay the execution of a function by a specified number of milliseconds.

  • Example: setTimeout(() => { console.log('Hello, world!'); }, 2000) will log 'Hello, world!' after 2 seconds.

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 8mo ago
Q. Describe three approaches to center a div element using CSS.
Ans. 

Three approaches to center a div element

  • Using CSS flexbox: set display property of parent element to flex and justify-content to center

  • Using CSS grid: set display property of parent element to grid and place the div in the center grid area

  • Using margin: set margin property of the div to auto

View all Associate Software Engineer interview questions
An Associate Software Test Engineer was asked
Q. Write a Java program to generate the Fibonacci sequence.
Ans. 

Java code to generate fibonacci series

  • Use a loop to generate the series

  • Start with the first two numbers 0 and 1

  • Add the previous two numbers to get the next number

View all Associate Software Test Engineer interview questions
A Digital Marketing Manager was asked
Q. What is your experience with Google Tag Manager?
Ans. 

I have extensive experience with Google Tag Manager, including setting up tracking codes, triggers, and variables.

  • Implemented various tracking codes for website analytics and conversion tracking

  • Created custom triggers and variables to track specific user interactions

  • Utilized Google Tag Manager to streamline the process of adding and updating tags on websites

View all Digital Marketing Manager interview questions
Are these interview questions helpful?
A Lead Software Consultant was asked
Q. Describe the workflow of the integration and other applications involved in the integration.
Ans. 

The integration workflow involves connecting different applications to enable seamless data exchange.

  • Identify the systems that need to be integrated

  • Define the data flow between the systems

  • Develop APIs or connectors for data exchange

  • Test the integration to ensure data accuracy and consistency

  • Monitor and maintain the integration for ongoing performance

  • Examples: Integrating CRM system with marketing automation platfo...

View all Lead Software Consultant interview questions
A Wordpress Developer was asked
Q. How do you convert from OGG to MP3?
Ans. 

OGG to MP3 conversion can be done using various online converters or software.

  • Use online converters like CloudConvert, Convertio, etc.

  • Use software like VLC media player, Audacity, etc.

  • Install FFmpeg and use command line to convert.

  • Check for copyright issues before converting.

  • Ensure quality of converted file is satisfactory.

View all Wordpress Developer interview questions
A Wordpress Developer was asked
Q. How do you convert from video to audio?
Ans. 

To convert from video to audio, you can use various software and online tools.

  • Use software like VLC Media Player, Handbrake, or FFmpeg to convert video to audio.

  • Online tools like Online-Convert.com and CloudConvert.com can also be used for conversion.

  • Choose the desired audio format and quality before converting.

  • Ensure that the video file is compatible with the software or tool being used for conversion.

View all Wordpress Developer interview questions

Quikr Interview Experiences

33 interviews found

Interview Questionnaire 

12 Questions

  • Q1. Given a no K and an array. Find pair of elements whose sum is equal to given no K
  • Ans. 

    Find pair of elements in an array whose sum is equal to a given number K.

    • Iterate through the array and for each element, check if K minus the element exists in the array.

    • Use a hash table to store the elements and their indices for faster lookup.

    • If multiple pairs exist, return any one of them.

    • If no pair exists, return null or an appropriate message.

  • Answered by AI
  • Q2. If there is a website run by 2 servers. These 2 servers balances the load using Load Balancer. So, if 1 session is created on 1 server and say load is shift to another server immediately, then how session ...
  • Ans. 

    Session is maintained using session affinity or sticky sessions.

    • Session affinity ensures that a user's session is always directed to the same server.

    • Load balancer uses a unique identifier to route requests to the same server.

    • Sticky sessions can be implemented using cookies or URL rewriting.

    • Session replication can also be used to maintain session data across multiple servers.

  • Answered by AI
  • Q3. WAP to implement some basic Design Patterns like Singleton?
  • Ans. 

    Singleton pattern ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private constructor to prevent direct instantiation of the class

    • Create a private static instance of the class

    • Create a public static method to access the instance

    • Ensure thread safety by using synchronized keyword or static initialization block

    • Examples: Logger, Configuration Manager, Database Connection ...

  • Answered by AI
  • Q4. Abstract class? How it is different from interface? Is multiple inheritance possible in php? How?
  • Ans. 

    Explaining abstract class, interface and multiple inheritance in PHP.

    • Abstract class is a class that cannot be instantiated and can have abstract methods.

    • Interface is a collection of abstract methods and constants that can be implemented by a class.

    • Multiple inheritance is not possible in PHP, but can be achieved using interfaces.

    • Interfaces can be implemented by multiple classes, allowing for multiple inheritance-like be...

  • Answered by AI
  • Q5. Write a stored procedure from a given set of tables and conditions. Simple one
  • Ans. 

    Write a stored procedure from given tables and conditions

    • Identify the tables and their relationships

    • Determine the conditions to be used in the stored procedure

    • Write the SQL code for the stored procedure

    • Test the stored procedure to ensure it returns the desired results

  • Answered by AI
  • Q6. How to increase php memory at run time, if it exhausts?
  • Ans. 

    To increase PHP memory at run time, modify the php.ini file or use ini_set() function.

    • Edit the memory_limit value in php.ini file

    • Use ini_set('memory_limit', '256M') function to increase memory limit at run time

    • Check for memory leaks in the code

    • Use unset() function to free up memory after use

  • Answered by AI
  • Q7. What all we can do with php.ini?
  • Ans. 

    php.ini is a configuration file for PHP that allows users to customize various settings.

    • Change PHP settings such as memory limit, file upload size, and error reporting

    • Enable or disable extensions and modules

    • Set timezone and language settings

    • Configure email settings

    • Control caching and session settings

  • Answered by AI
  • Q8. Session and cookies?
  • Ans. 

    Sessions and cookies are mechanisms for storing user data in web applications, enhancing user experience and state management.

    • Cookies are small pieces of data stored on the user's browser, while sessions are stored on the server.

    • Cookies can have expiration dates, while sessions typically expire when the user closes the browser or after a set time.

    • Example of a cookie: 'user_id=12345; expires=Wed, 21 Oct 2023 07:28:00 GM...

  • Answered by AI
  • Q9. Javascript clausers?
  • Ans. 

    JavaScript closures are functions that retain access to their lexical scope, even when executed outside that scope.

    • A closure is created when a function is defined inside another function.

    • Closures can access variables from their parent function's scope.

    • Example: function outer() { let x = 10; return function inner() { return x; }; }

    • Closures are useful for data encapsulation and creating private variables.

    • They can also be...

  • Answered by AI
  • Q10. Jquery function to get domain from a url?
  • Ans. 

    Use window.location to get domain from a url in jQuery.

    • Use window.location to get the full url

    • Use .hostname to get the domain name

    • Use .replace() to remove 'www.' if present

  • Answered by AI
  • Q11. WAP to get smallest plindron number larger than the given no?
  • Ans. 

    WAP to find smallest palindrome number larger than given number.

    • Convert the given number to string and check if it is already a palindrome.

    • If not, increment the number and check if it is a palindrome.

    • Repeat until a palindrome number larger than the given number is found.

    • Use a while loop to implement the above steps.

  • Answered by AI
  • Q12. WAP to check if linked list elements is a palindrome without using any extra space?
  • Ans. 

    WAP to check if linked list elements is a palindrome without using any extra space.

    • Traverse the linked list and reverse the second half of the list

    • Compare the first half with the reversed second half

    • Use two pointers to traverse the list, one at normal speed and other at double speed

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, JQuery, Javascript
College Name: na

Skills evaluated in this interview

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 Sep 2024. There was 1 interview round.

Round 1 - HR 

(5 Questions)

  • Q1. What is GST full from
  • Ans. 

    GST stands for Goods and Services Tax.

    • GST stands for Goods and Services Tax

    • It is an indirect tax levied on the supply of goods and services in India

    • Implemented on 1st July 2017 to replace multiple indirect taxes like VAT, service tax, etc.

  • Answered by AI
  • Q2. Who is the ceo of Axis bank
  • Ans. 

    Amitabh Chaudhry is the CEO of Axis Bank.

    • Amitabh Chaudhry became the CEO of Axis Bank in January 2019.

    • He was previously the MD and CEO of HDFC Life Insurance Company.

    • Under his leadership, Axis Bank has focused on digital transformation and customer-centric initiatives.

  • Answered by AI
  • Q3. Tall about yourself
  • Ans. 

    I am a detail-oriented individual with strong data entry skills and a passion for accuracy and efficiency.

    • Graduated with a degree in Computer Science

    • Proficient in Microsoft Excel and data entry software

    • Experience working as a data entry operator at XYZ Company

    • Strong attention to detail and ability to meet deadlines

    • Excellent typing speed of 70 words per minute

  • Answered by AI
  • Q4. Deference Between confidence and overconfidence
  • Ans. 

    Confidence is a belief in your ability to succeed, balanced with awareness of your strengths and weaknesses. Overconfidence, however, involves an inflated sense of ability, often leading to underestimating challenges and overlooking potential risks.

  • Answered Anonymously
  • Q5. Deference between hard work and smart work
  • Ans. 

    Hard work involves putting in a lot of effort and time, while smart work focuses on finding efficient ways to achieve goals.

    • Hard work is about working long hours and putting in a lot of effort, often without considering more efficient methods.

    • Smart work involves finding ways to work more efficiently and effectively, such as using technology or delegation.

    • Hard work may lead to burnout and exhaustion, while smart work ca...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Quikr Data Entry Operator interview:
  • Data Analysis
  • Data Entry
Interview preparation tips for other job seekers - Find the genuine platform to apply for your job
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your past experience?
  • Q2. Why you want to join us?
Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me something about you?
  • Q2. How many accounts you have onboarded in last organization?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Oct 2024, where I was asked the following questions.

  • Q1. What are the sources to identify corporate companies?
  • Ans. 

    Identifying corporate companies involves various sources such as databases, industry reports, and networking platforms.

    • Business Databases: Platforms like LinkedIn Sales Navigator and ZoomInfo provide extensive databases of corporate companies, including contact details and company size.

    • Industry Reports: Reports from firms like Gartner or Forrester can help identify key players in specific industries, along with their m...

  • Answered by AI
  • Q2. How do you connect with the appropriate decision-makers?

Interview Questions & Answers

user image Anonymous

posted on 1 Jun 2025

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Tell me about your self and career goals?
  • Q2. What is your achievements on Sales Targets ?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Duration - 1 hour
Total Questions - 50

Round 2 - HR 

(2 Questions)

  • Q1. Why do you want to join our organization
  • Q2. Introduce yourself
Round 3 - Technical 

(1 Question)

  • Q1. Write a java code to generate fibonacci series
  • Ans. 

    Java code to generate fibonacci series

    • Use a loop to generate the series

    • Start with the first two numbers 0 and 1

    • Add the previous two numbers to get the next number

  • Answered by AI

Skills evaluated in this interview

Salesman Interview Questions & Answers

user image Anonymous

posted on 20 Sep 2023

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

I applied via LinkedIn and was interviewed in Mar 2023. 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. About Sales, New idea, How you can improve.
  • Q2. About sale, New ideas

Interview Preparation Tips

Interview preparation tips for other job seekers - Be positive.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Center div using 3 approaches
  • Ans. 

    Three approaches to center a div element

    • Using CSS flexbox: set display property of parent element to flex and justify-content to center

    • Using CSS grid: set display property of parent element to grid and place the div in the center grid area

    • Using margin: set margin property of the div to auto

  • Answered by AI
  • Q2. Display use of setTimeout
  • Ans. 

    setTimeout is a function in JavaScript used to execute a function after a specified amount of time.

    • setTimeout(function, milliseconds) is used to delay the execution of a function by a specified number of milliseconds.

    • Example: setTimeout(() => { console.log('Hello, world!'); }, 2000) will log 'Hello, world!' after 2 seconds.

  • Answered by AI
Round 2 - Coding Test 

Asked me to create a carousel component

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Feb 2022. There were 4 interview rounds.

Round 1 - Assignment 

EBOOK

Round 2 - Assignment 

JPG TO PDF

Round 3 - Assignment 

PDF CREATOR

Round 4 - Technical 

(6 Questions)

  • Q1. WHAT IS THE IMAGE FILE HEIGHT
  • Ans. 

    The image file height refers to the vertical size of the image in pixels.

    • Image file height is measured in pixels.

    • It determines the vertical size of the image.

    • The height can be found in the image file's metadata or by opening the image in an image editor and checking its properties.

  • Answered by AI
  • Q2. WHAT THE CROPPED IMAGE
  • Ans. 

    A cropped image is an image that has been trimmed or cut to a specific size or shape.

    • Cropping an image removes unwanted parts of the image

    • Cropped images are often used for thumbnails or profile pictures

    • Cropping can be done manually or with software like Photoshop

    • Aspect ratio should be considered when cropping to avoid distortion

  • Answered by AI
  • Q3. WHAT IS THE CODEC LAST NAME
  • Ans. 

    The question is unclear and does not make sense in the context of a Wordpress Developer interview.

    • The question is likely a mistake or a joke.

    • There is no codec with the last name.

    • Codec is a term used in digital media to refer to a method of encoding and decoding data.

    • As a Wordpress Developer, knowledge of codecs may be useful for working with multimedia content on websites.

  • Answered by AI
  • Q4. HOW TO CONVERT FROM VIDEO TO AUDIO
  • Ans. 

    To convert from video to audio, you can use various software and online tools.

    • Use software like VLC Media Player, Handbrake, or FFmpeg to convert video to audio.

    • Online tools like Online-Convert.com and CloudConvert.com can also be used for conversion.

    • Choose the desired audio format and quality before converting.

    • Ensure that the video file is compatible with the software or tool being used for conversion.

  • Answered by AI
  • Q5. HOW TO CONVERT FROM OGG FROM MP3
  • Ans. 

    OGG to MP3 conversion can be done using various online converters or software.

    • Use online converters like CloudConvert, Convertio, etc.

    • Use software like VLC media player, Audacity, etc.

    • Install FFmpeg and use command line to convert.

    • Check for copyright issues before converting.

    • Ensure quality of converted file is satisfactory.

  • Answered by AI
  • Q6. HOW TO CONVERT WAV TO MP3
  • Ans. 

    Use a media converter software or an online converter tool to convert WAV to MP3.

    • Download and install a media converter software like Audacity or Freemake Audio Converter.

    • Open the software and import the WAV file.

    • Choose MP3 as the output format and select the desired quality.

    • Click on the convert button and wait for the process to complete.

    • Alternatively, use an online converter tool like Online-Convert or Zamzar.

    • Upload ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This test evaluates candidates ' skills in identifying, recording, and managing
accounts receivable the test helps you identify accounts who have the skills
required into work in accounting and maintaining records for accounts receivable.

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Nov 2022. There were 2 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 - One-on-one 

(4 Questions)

  • Q1. What is your experience with google tag manager ?
  • Ans. 

    I have extensive experience with Google Tag Manager, including setting up tracking codes, triggers, and variables.

    • Implemented various tracking codes for website analytics and conversion tracking

    • Created custom triggers and variables to track specific user interactions

    • Utilized Google Tag Manager to streamline the process of adding and updating tags on websites

  • Answered by AI
  • Q2. A/B test how is it done , what is the use of this test ?
  • Ans. 

    A/B testing is a method used to compare two versions of a webpage or app to determine which one performs better.

    • A/B testing involves creating two versions (A and B) of a webpage or app with one differing element, such as a headline or call-to-action button.

    • Users are randomly shown either version A or B, and their interactions are measured to determine which version performs better in terms of conversions or other metri...

  • Answered by AI
  • Q3. How to do targeting , what approach would you take to target a specific audience ?
  • Ans. 

    Targeting specific audience involves identifying key demographics, interests, and behaviors to tailor marketing strategies.

    • Conduct market research to understand the target audience's demographics, interests, and behaviors.

    • Utilize data analytics tools to track and analyze customer behavior and preferences.

    • Create buyer personas to represent different segments of the target audience.

    • Use social media targeting options to r...

  • Answered by AI
  • Q4. If a marketing campaign is not working as expected , what was the issue ? what steps did u take to understand the issue ?
  • Ans. 

    The issue could be due to various factors such as targeting, messaging, or timing. Steps taken include analyzing data, conducting A/B testing, and adjusting strategies accordingly.

    • Identify the specific goals and KPIs of the campaign to determine where it may be falling short

    • Analyze data such as click-through rates, conversion rates, and engagement metrics to pinpoint areas of underperformance

    • Conduct A/B testing to test...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - this is B2C ecommerce company look into how campaigns can be run according the specific areas and audience targets

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Sep 2022. There were 2 interview rounds.

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 - Technical 

(5 Questions)

  • Q1. Interview regarding the HL7 intervace and Mirth Engine integration
  • Ans. Keep the knowledge on Hands on experience of your techinical skills
  • Answered Anonymously
  • Q2. The question was based on you worked on technical skill
  • Ans. Both Javascript and XML integration interview based on you skill used on interface
  • Answered Anonymously
  • Q3. TCP/IP integration
  • Q4. Related on connectivity of the integration
  • Q5. Workflow of the integration and other application involved on integration
  • Ans. 

    The integration workflow involves connecting different applications to enable seamless data exchange.

    • Identify the systems that need to be integrated

    • Define the data flow between the systems

    • Develop APIs or connectors for data exchange

    • Test the integration to ensure data accuracy and consistency

    • Monitor and maintain the integration for ongoing performance

    • Examples: Integrating CRM system with marketing automation platform, c...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
4d (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 Quikr?
Ask anonymously on communities.

Quikr Interview FAQs

How many rounds are there in Quikr interview?
Quikr interview process usually has 2-3 rounds. The most common rounds in the Quikr interview process are One-on-one Round, Resume Shortlist and Technical.
How to prepare for Quikr 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 Quikr. The most common topics and skills that interviewers at Quikr expect are B2B Sales, Telesales, Outbound Sales, Microservices and Java.
What are the top questions asked in Quikr interview?

Some of the top questions asked at the Quikr interview -

  1. If there is a website run by 2 servers. These 2 servers balances the load using...read more
  2. 1. Given a wood of some size. It burns from 1 end to another and takes 30 min. ...read more
  3. How to implement Critical section in Java and on which variab...read more
How long is the Quikr interview process?

The duration of Quikr 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 22 interview experiences

Difficulty level

Easy 9%
Moderate 91%

Duration

Less than 2 weeks 91%
2-4 weeks 9%
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.7
 • 474 Interviews
Meesho Interview Questions
3.7
 • 368 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Blinkit Interview Questions
3.8
 • 241 Interviews
Oyo Rooms Interview Questions
3.2
 • 230 Interviews
Myntra Interview Questions
3.9
 • 229 Interviews
BlackBuck Interview Questions
3.7
 • 194 Interviews
FirstCry Interview Questions
3.5
 • 187 Interviews
Tata 1mg Interview Questions
3.6
 • 186 Interviews
Spinny Interview Questions
3.7
 • 184 Interviews
View all

Quikr Reviews and Ratings

based on 517 reviews

3.7/5

Rating in categories

3.3

Skill development

3.6

Work-life balance

3.6

Salary

3.2

Job security

3.4

Company culture

3.3

Promotions

3.3

Work satisfaction

Explore 517 Reviews and Ratings
Key Account Manager
218 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Senior Executive
88 salaries
unlock blur

₹2.2 L/yr - ₹5.4 L/yr

Assistant Manager
79 salaries
unlock blur

₹3.6 L/yr - ₹11.7 L/yr

Senior Key Account Manager
74 salaries
unlock blur

₹3.2 L/yr - ₹6.9 L/yr

Sales Manager
68 salaries
unlock blur

₹4.3 L/yr - ₹11 L/yr

Explore more salaries
Compare Quikr with

OLX

3.8
Compare

Udaan

3.9
Compare

Swiggy

3.7
Compare

Oyo Rooms

3.2
Compare
write
Share an Interview