Upload Button Icon Add office photos
Engaged Employer

i

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

Mobikwik Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Mobikwik Senior Manager Interview Questions and Answers

Updated 10 Jun 2024

Mobikwik Senior Manager Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. About work experience.
  • Q2. About your working and how you manage the things on day to day activities to achieve results.
Round 2 - One-on-one 

(7 Questions)

  • Q1. About yourself, your experience your education.
  • Q2. About your work experience since starting of your carrier.
  • Q3. About your family background.
  • Q4. What is your working to achieve your numbers.
  • Q5. How do you reduce idle percentage.
  • Ans. 

    To reduce idle percentage, focus on optimizing workflow, improving communication, setting clear goals, and monitoring performance.

    • Optimize workflow by identifying and eliminating bottlenecks or inefficiencies.

    • Improve communication among team members to ensure tasks are being completed efficiently.

    • Set clear goals and expectations for employees to keep them focused and motivated.

    • Monitor performance regularly to identify ...

  • Answered by AI
  • Q6. How do you increase the productivity of your callers.
  • Ans. 

    Increasing caller productivity through training, motivation, and efficient tools.

    • Provide comprehensive training on product knowledge and communication skills

    • Implement performance incentives to motivate callers to meet and exceed targets

    • Utilize efficient call center software and tools to streamline processes and improve efficiency

  • Answered by AI
  • Q7. What are the strategies you are using to enhance your callers productivity and make them fruitful.
  • Ans. 

    I implement training programs, provide resources, set clear goals, and offer regular feedback to enhance caller productivity.

    • Implementing training programs to improve skills and knowledge

    • Providing resources such as tools and technology to streamline processes

    • Setting clear goals and expectations for callers to work towards

    • Offering regular feedback and coaching to help callers improve performance

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Business Round Checking on Skills
Round 3 - HR 

(1 Question)

  • Q1. Assessing the cultural fit and overall suitability for the role.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - HR 

(1 Question)

  • Q1. Past experience
Round 3 - One-on-one 

(1 Question)

  • Q1. Least experience and domain and market related

I applied via IIM Jobs and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Case Study 

With one of the team members. Case study to gauge problem solving skills, analytical abilities. What could be different reasons for drop in sale, how can each be identified and mitigated?

Round 2 - One-on-one 

(1 Question)

  • Q1. Stakeholder discussion This was with one of the senior stakeholders, to determine your communication skills as well as understanding about completely new business problem/sector in limited amount of time. ...
Round 3 - One-on-one 

(1 Question)

  • Q1. Discussion with the HOD Usual fitment test. Past work experience, aspirations etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Case study was the deciding factor for my interview. First principle thinking is what the recruiters were looking for.
If you have the exact similar past experience, chances of selection are way too high. The startup industry just doesn't prefer to hire a person with conventional business experience.

Interview Preparation Tips

Round: Technical Interview
Experience: Finally, I got the offer from PayU. I was very Happy. Thanks AmbitionBox for helping me in my preparation

Skills: Algorithm, data structures
College Name: Na

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Nice environment

  • Q1. 

    Zigzag Traversal of Binary Tree

    Given a binary tree with integer values in its nodes, your task is to print the zigzag traversal of the tree.

    Note:

    In zigzag order, level 1 is printed from left to right...
  • Ans. 

    Implement a function to print the zigzag traversal of a binary tree.

    • Traverse the tree level by level, alternating the direction of traversal for each level.

    • Use a queue to keep track of nodes at each level.

    • Print the nodes in zigzag order as per the given pattern.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Nice Environment

  • Q1. 

    Prime Numbers Identification

    Given a positive integer N, your task is to identify all prime numbers less than or equal to N.

    Explanation:

    A prime number is a natural number greater than 1 that has no po...

  • Ans. 

    Identify all prime numbers less than or equal to a given positive integer N.

    • Iterate from 2 to N and check if each number is prime

    • Use the Sieve of Eratosthenes algorithm for better efficiency

    • Optimize by only checking up to the square root of N for divisors

  • Answered by AI
  • Q2. What was the use of DBMS in your project, and how did you handle the problems that arose?
  • Ans. 

    DBMS was used to store and manage data in the project, handled problems by optimizing queries and database design.

    • Used DBMS to store and manage project data efficiently

    • Optimized queries for better performance

    • Designed database schema to handle data effectively

    • Resolved concurrency issues by implementing proper locking mechanisms

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAPayU interview preparation:Topics to prepare for the interview - Array ,DP ,Graph ,Recursion, Tree ,Queue,BSTTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do atleast 1 good projects
Tip 2 : Practice Atleast 300 Questions
Tip 3 : Should be able to explain your project

Application resume tips for other job seekers

Tip 1 : Always be true with the resume
Tip 2 : Do not put false things on resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where the array has less than 3 elements separately.

    • Consider using a set to ensure distinct elements in the array.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Use the formula for finding the intersection point of two lines in 2D space.

    • Handle precision issues that may arise due to floating-point arithmetic.

    • Return -1.000000 -1.000000 if the lines do not intersect.

    • Ensure the lines 'AB' and 'PQ' are distinct.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where the array has less than 3 elements separately.

    • Use a set to store distinct elements for efficient processing.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The task is to find the longest palindromic substring within STR. If there are several palindromic substring...

  • Ans. 

    Find the longest palindromic substring in a given string.

    • Iterate through the string and expand around each character to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Implement a function to calculate the intersection point of two lines on a 2D plane

    • Handle precision up to six decimal places in the output

    • Return -1.000000 -1.000000 if the lines do not intersect

    • Ensure the lines 'AB' and 'PQ' are distinct

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 1.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Add skills iff you are sure

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Timing was 9 PM. Platform was not good. Platform was very lagging so overall it was bad experience.

  • Q1. 

    Find the Third Greatest Element

    Given an array 'ARR' of 'N' distinct integers, determine the third largest element in the array.

    Input:

    The first line contains a single integer 'T' representing the numb...
  • Ans. 

    Find the third largest element in an array of distinct integers.

    • Sort the array in descending order and return the element at index 2.

    • Handle cases where there are less than 3 elements in the array.

    • Consider edge cases like negative integers and duplicates.

  • Answered by AI
  • Q2. 

    Longest Palindromic Substring Problem Statement

    You are provided with a string STR of length N. The goal is to identify the longest palindromic substring within this string. In cases where multiple palind...

  • Ans. 

    Identify the longest palindromic substring in a given string.

    • Iterate through each character in the string and expand around it to find palindromes

    • Keep track of the longest palindrome found so far

    • Return the longest palindromic substring with the smallest start index

  • Answered by AI
  • Q3. 

    Ninja and Geometry Problem Statement

    In this problem, Ninja is provided with two lines on a 2D plane. The first line 'AB' is determined by two points A and B. The second line 'PQ' is determined by two poi...

  • Ans. 

    Calculate the intersection point of two lines on a 2D plane with precision up to six decimal places.

    • Implement a function to calculate the intersection point of two lines on a 2D plane

    • Handle precision up to six decimal places in the output

    • Return -1.000000 -1.000000 if the lines do not intersect

    • Ensure the lines 'AB' and 'PQ' are distinct

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 7 CGPAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Have some projects.
Tip 2 : Do a course from Coding Ninjas.

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things.

Final outcome of the interviewRejected

Skills evaluated in this interview

I appeared for an interview in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 mins
Round difficulty - Medium

First round was coding round, where i was asked 2 DS algo questions, 1 was easy and other was of medium difficulty

  • Q1. 

    Shortest Path in a Binary Matrix Problem Statement

    Given a binary matrix of size N * M where each element is either 0 or 1, find the shortest path from a source cell to a destination cell, consisting only...

  • Ans. 

    Find the shortest path in a binary matrix from a source cell to a destination cell consisting only of 1s.

    • Use Breadth First Search (BFS) algorithm to find the shortest path.

    • Keep track of visited cells to avoid revisiting them.

    • Update the path length as you traverse through the matrix.

    • Return -1 if no valid path exists.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 50 mins
Round difficulty - Easy

I was asked to design url shortner

  • Q1. Can you explain how you would design a URL shortener?
  • Ans. 

    Design a URL shortener system

    • Generate a unique short code for each URL

    • Store the mapping of short code to original URL in a database

    • Redirect users from short URL to original URL when accessed

    • Consider implementing features like custom short codes, expiration dates, and analytics

    • Ensure scalability and performance by using distributed systems and caching

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 50 mins
Round difficulty - Medium

This was hiring manager round

  • Q1. Can you discuss a coding problem you encountered, your past projects, and any behavioral questions related to your experiences?
  • Ans. 

    Discussed coding problem, past projects, and behavioral questions in SDE - 1 interview.

    • Coding problem: Discussed how I optimized a sorting algorithm in a previous project.

    • Past projects: Talked about a web application I developed using React and Node.js.

    • Behavioral questions: Shared how I handled a conflict within a team during a project.

    • Example: Explained how I implemented a feature in a mobile app that improved user en

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNAJupiter Money interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Operating System, DBMS, OOPSTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DS and algo well(i prepared from GFG)
Tip 2 : Must know basics of DBMS and OS
Tip 3 : Be confident and genuine

Application resume tips for other job seekers

Tip 1 : Prepare resume iteratively
Tip 2 : show ur resume to seniors and ask for suggestions

Final outcome of the interviewSelected

Skills evaluated in this interview

Mobikwik Interview FAQs

How many rounds are there in Mobikwik Senior Manager interview?
Mobikwik interview process usually has 2 rounds. The most common rounds in the Mobikwik interview process are One-on-one Round.
How to prepare for Mobikwik Senior Manager 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 Mobikwik. The most common topics and skills that interviewers at Mobikwik expect are Marketing, Reconciliation, CRM, Campaign Management and Digital Marketing.
What are the top questions asked in Mobikwik Senior Manager interview?

Some of the top questions asked at the Mobikwik Senior Manager interview -

  1. What are the strategies you are using to enhance your callers productivity and ...read more
  2. How do you increase the productivity of your calle...read more
  3. How do you reduce idle percenta...read more

Tell us how to improve this page.

Mobikwik Senior Manager Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

HighRadius Interview Questions
2.9
 • 184 Interviews
Razorpay Interview Questions
3.6
 • 148 Interviews
Rupeek Interview Questions
3.7
 • 61 Interviews
PayU Payments Interview Questions
3.5
 • 54 Interviews
Freecharge Interview Questions
3.8
 • 53 Interviews
BankBazaar Interview Questions
3.4
 • 50 Interviews
ACKO Interview Questions
3.7
 • 49 Interviews
Jupiter Money Interview Questions
3.3
 • 29 Interviews
View all
Mobikwik Senior Manager Salary
based on 29 salaries
₹10 L/yr - ₹39 L/yr
At par with the average Senior Manager Salary in India
View more details

Mobikwik Senior Manager Reviews and Ratings

based on 5 reviews

2.4/5

Rating in categories

2.4

Skill development

3.1

Work-life balance

2.3

Salary

2.4

Job security

2.1

Company culture

2.1

Promotions

2.9

Work satisfaction

Explore 5 Reviews and Ratings
Team Lead
69 salaries
unlock blur

₹2.2 L/yr - ₹7 L/yr

Assistant Manager
56 salaries
unlock blur

₹4.5 L/yr - ₹12.6 L/yr

Senior Executive
55 salaries
unlock blur

₹2.7 L/yr - ₹6.7 L/yr

Software Developer
49 salaries
unlock blur

₹7.9 L/yr - ₹30.6 L/yr

Software Development Engineer II
48 salaries
unlock blur

₹11 L/yr - ₹30 L/yr

Explore more salaries
Compare Mobikwik with

Paytm

3.3
Compare

Freecharge

3.8
Compare

HighRadius

2.9
Compare

Razorpay

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