Upload Button Icon Add office photos

Filter interviews by

Mutual Mobile Project Manager Interview Questions and Answers

Updated 9 Aug 2022

Mutual Mobile Project Manager Interview Experiences

1 interview found

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic Scenario based PM Questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Cross-functional questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Cultural and Behavioural Quetsions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and the interview process is so friendly

Interview questions from similar companies

I applied via Referral and was interviewed in Nov 2018. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Was asked to present a very interesting case as a role play. Requested to conceptualize and present a feature for a software to a client. The interviewers were looking for my approach and ability to presen...
  • Q2. Had to describe the previous projects I worked with, my role, the challenges I faced etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - I received a call from the HR, who scheduled a session at their Kochi Office. The process started with a short 1 to 1, following which I was given a role play scenario. This was followed by an open discussion with my future colleagues and manager. They are happy to give you feedback. Tips: Be honest, be yourself.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Dec 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. General questions to filter.
Round 2 - Assignment 

Case study and call simulation

Round 3 - One-on-one 

(1 Question)

  • Q1. General questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Previous exp in banking domain
  • Ans. 

    Yes, I have 5 years of experience working in the banking domain.

    • Managed projects for implementing new banking software systems

    • Worked closely with stakeholders to ensure project goals aligned with business objectives

    • Led a team of developers to customize banking applications for client needs

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Real time application
  • Ans. 

    Real time application refers to software that processes data as it is received, providing instant feedback or results.

    • Real time applications require low latency for immediate response

    • Examples include live chat applications, stock trading platforms, and online gaming

    • Data is processed and displayed instantly without delay

  • Answered by AI
  • Q2. What domain experience you have
Round 3 - HR 

(1 Question)

  • Q1. Salary negotiation ,company culture
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About projects worked on, roles handled, current work structure.
  • Q2. APIs related questions, rest APIs, scrum related questions, backlog related questions.
Round 2 - Group Discussion 

Multiple hiring managers were on the call with detailed questions on the scrum ceremonies, backlog management, product related questions, Strategic management of product related questions.

Round 3 - One-on-one 

(2 Questions)

  • Q1. More detailed understanding of what I was expecting with related to work.
  • Q2. Detailed explanation on the product roadmap and what was expected of me.
  • Ans. 

    The product roadmap outlines the strategic vision and direction for the product, including key milestones and features.

    • Explain how the product roadmap aligns with the company's overall goals and objectives

    • Detail the timeline for key milestones and feature releases

    • Discuss how feedback from customers and stakeholders is incorporated into the roadmap

    • Explain how the roadmap is communicated to internal teams and external st

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Basic HR questions
  • Q2. Policy related explanation
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Authentication typee, what is sso
  • Ans. 

    SSO stands for Single Sign-On, a method of authentication that allows a user to access multiple applications with one set of login credentials.

    • SSO eliminates the need for users to remember multiple passwords for different applications.

    • Users can log in once and have access to all authorized applications without needing to log in again.

    • Examples of SSO providers include Okta, Microsoft Azure AD, and Google G Suite.

  • Answered by AI
  • Q2. Scrum related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Not so proactive process, everything was laid back
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. 1. How do you keep the team motivated to work towards a goal 2. Conflicts with engineering team, how do you handle

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview, you have to show genuine interest in the role.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

Case is direct, discussed my submission

Round 2 - Technical 

(1 Question)

  • Q1. Asked metrics question

Interview Questionnaire 

9 Questions

  • Q1. Questions related to the work done at my previous company
  • Q2. Find if a given directed graph is cyclic or not
  • Ans. 

    To check if a directed graph is cyclic or not

    • Use Depth First Search (DFS) algorithm to traverse the graph

    • Maintain a visited set to keep track of visited nodes

    • Maintain a recursion stack to keep track of nodes in the current DFS traversal

    • If a node is visited and is already in the recursion stack, then the graph is cyclic

    • If DFS traversal completes without finding a cycle, then the graph is acyclic

  • Answered by AI
  • Q3. You have a stream of bytes from which you can read one byte at a time. You only have enough space to store one byte. After processing those bytes, you have to return a random byte. Note: The probability of...
  • Ans. 

    Return a random byte from a stream of bytes with equal probability.

    • Create a variable to store the count of bytes read

    • Create a variable to store the current random byte

    • For each byte read, generate a random number between 0 and the count of bytes read

    • If the random number is 0, store the current byte as the random byte

    • Return the random byte

  • Answered by AI
  • Q4. Find if a given Binary Tree is BST or not
  • Ans. 

    Check if a binary tree is a binary search tree or not.

    • Traverse the tree in-order and check if the values are in ascending order.

    • For each node, check if its value is greater than the maximum value of its left subtree and less than the minimum value of its right subtree.

    • Use recursion to check if all nodes in the tree satisfy the above condition.

  • Answered by AI
  • Q5. Devise an algorithm to determine the Nth-to-Last element in a singly linked list of unknown length. If N = 0, then your algorithm must return the last element. You should parse the list only once
  • Ans. 

    Algorithm to find Nth-to-Last element in a singly linked list of unknown length

    • Traverse the list and maintain two pointers, one at the beginning and one at Nth node from beginning

    • Move both pointers simultaneously until the second pointer reaches the end of the list

    • The first pointer will be pointing to the Nth-to-Last element

    • If N=0, return the last element

    • Parse the list only once

  • Answered by AI
  • Q6. Given an array of integers, print all possible permutations. Also explain your approach
  • Ans. 

    Print all possible permutations of an array of integers

    • Use recursion to swap elements and generate permutations

    • Start with the first element and swap it with each subsequent element

    • Repeat the process for the remaining elements

    • Stop when all elements have been swapped with the first element

    • Print each permutation as it is generated

  • Answered by AI
  • Q7. Design a Stack DS that also prints in O(1) the minimum element you pushed in the stack
  • Ans. 

    Design a stack that prints the minimum element pushed in O(1)

    • Use two stacks, one for storing elements and another for storing minimums

    • When pushing an element, compare it with the top of minimum stack and push the smaller one

    • When popping an element, pop from both stacks

    • To get the minimum element, just return the top of minimum stack

  • Answered by AI
  • Q8. Given a linked list with loop, how would you find the starting point of the loop ?
  • Ans. 

    To find the starting point of a loop in a linked list, use Floyd's cycle-finding algorithm.

    • Use two pointers, one moving at twice the speed of the other.

    • When they meet, move one pointer to the head of the list and keep the other at the meeting point.

    • Move both pointers one step at a time until they meet again, which is the starting point of the loop.

  • Answered by AI
  • Q9. Find a number a matrix mat[m][n] where all the rows and columns are sorted non-decreasingly. What will be the complexity of the solution
  • Ans. 

    To find a number in a matrix where all rows and columns are sorted non-decreasingly. Complexity of the solution.

    • Use binary search to find the number in each row and column

    • Start from the top-right corner or bottom-left corner to optimize search

    • Time complexity: O(m log n) or O(n log m) depending on the starting corner

  • Answered by AI

Interview Preparation Tips

Skills: Algorithm, Data structure
College Name: Na

Skills evaluated in this interview

I appeared for an interview before Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

It was on online objective test consisting of 4 sections: Aptitude, Technical MCQs, Code snippet based MCQs and Coding part.

  • Q1. 

    Valid Parentheses Problem Statement

    Given a string 'STR' consisting solely of the characters “{”, “}”, “(”, “)”, “[” and “]”, determine if the parentheses are balanced.

    Input:

    The first line contains an...
  • Ans. 

    The task is to determine if a given string of parentheses is balanced or not.

    • Iterate through the characters of the string and use a stack to keep track of opening parentheses.

    • When encountering an opening parenthesis, push it onto the stack. When encountering a closing parenthesis, check if it matches the top of the stack.

    • If the stack is empty at the end or there are unmatched parentheses, the string is not balanced.

    • Exa...

  • Answered by AI
  • Q2. 

    Palindrome Linked List Problem Statement

    Determine if a given singly linked list of integers is a palindrome. Return true if it is a palindrome, otherwise return false.

    Example:

    Input:
    1 -> 2 -> ...
  • Ans. 

    Check if a given singly linked list of integers is a palindrome.

    • Use two pointers to find the middle of the linked list.

    • Reverse the second half of the linked list.

    • Compare the first half with the reversed second half to determine if it is a palindrome.

  • Answered by AI
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical and managerial round. The interviewer gave me a situation where I am in testing team and I found that customer requirement was drop down list at a place but developer has used bullet selection, and is not ready to change it. How will you manage? I gave some good replies and he was convinced.

  • Q1. What is a virtual function?
  • Ans. 

    A virtual function is a function in a base class that is declared using the keyword 'virtual' and can be overridden by a function with the same signature in a derived class.

    • Virtual functions allow for dynamic polymorphism in object-oriented programming.

    • They are used to achieve runtime polymorphism by enabling late binding.

    • Virtual functions are declared in a base class and can be overridden in derived classes.

    • Example: v...

  • Answered by AI
  • Q2. Can you explain how to perform a level order traversal of a binary tree in spiral form?
  • Ans. 

    Level order traversal of a binary tree in spiral form involves alternating between left and right while traversing each level.

    • Start by pushing the root node into a queue.

    • While the queue is not empty, pop a node, print its value, and push its children into the queue.

    • For each level, alternate between popping nodes from the queue and printing their values from left to right or right to left.

    • Continue this process until all

  • Answered by AI
  • Q3. What are abstract classes in C++?
  • Ans. 

    Abstract classes in C++ are classes that cannot be instantiated and are designed to be base classes for other classes.

    • Abstract classes may contain pure virtual functions, making them incomplete and unable to be instantiated.

    • Derived classes must implement all pure virtual functions from the abstract class in order to be concrete classes.

    • Abstract classes can have non-virtual functions and member variables like regular cl...

  • Answered by AI
Round 3 - Face to Face 

(6 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was also a technical round. He asked to optimize the code I wrote in coding round. Then he asked me a few puzzles and questions on OOPS, OS and DBMS.

  • Q1. Can you explain the ACID properties in the context of database management systems?
  • Ans. 

    ACID properties are a set of properties that guarantee the reliability of transactions in database management systems.

    • ACID stands for Atomicity, Consistency, Isolation, and Durability.

    • Atomicity ensures that either all operations in a transaction are completed successfully or none of them are.

    • Consistency ensures that the database remains in a consistent state before and after the transaction.

    • Isolation ensures that the e...

  • Answered by AI
  • Q2. What is the difference between paging and segmentation in operating systems?
  • Ans. 

    Paging and segmentation are memory management techniques in operating systems.

    • Paging divides physical memory into fixed-size blocks called pages, while segmentation divides logical memory into variable-size segments.

    • Paging allows for efficient memory allocation and management, while segmentation provides protection and sharing of memory.

    • Paging is simpler to implement but can lead to internal fragmentation, while segmen...

  • Answered by AI
  • Q3. What is concurrency control?
  • Ans. 

    Concurrency control is a technique used in databases to manage simultaneous access and modification of data by multiple users or processes.

    • Concurrency control ensures that transactions are executed in a way that maintains data consistency and integrity.

    • Techniques like locking, timestamp ordering, and optimistic concurrency control are used to implement concurrency control.

    • For example, in a banking system, concurrency c...

  • Answered by AI
  • Q4. What is the difference between String Buffer and String Builder in Java?
  • Ans. 

    String Buffer is synchronized and thread-safe, while String Builder is not synchronized and faster.

    • String Buffer is synchronized, making it thread-safe for use in multi-threaded environments.

    • String Builder is not synchronized, resulting in faster performance but not thread-safe.

    • String Builder is preferred for single-threaded operations, while String Buffer is preferred for multi-threaded operations.

  • Answered by AI
  • Q5. What are smart pointers in C++?
  • Ans. 

    Smart pointers in C++ are objects that act like pointers but provide automatic memory management.

    • Smart pointers help prevent memory leaks by automatically managing memory allocation and deallocation.

    • Examples include unique_ptr, shared_ptr, and weak_ptr.

    • unique_ptr is used for exclusive ownership, shared_ptr for shared ownership, and weak_ptr to prevent circular references.

  • Answered by AI
  • Q6. What is the difference between a mutex and a semaphore?
  • Ans. 

    Mutex is used for exclusive access to a resource, while semaphore is used for controlling access to a resource by multiple threads.

    • Mutex is binary and allows only one thread to access the resource at a time.

    • Semaphore can have a count greater than one, allowing multiple threads to access the resource simultaneously.

    • Mutex is typically used for protecting critical sections of code, while semaphore is used for synchronizat...

  • Answered by AI

Interview Preparation Tips

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

Mutual Mobile Interview FAQs

How many rounds are there in Mutual Mobile Project Manager interview?
Mutual Mobile interview process usually has 3 rounds. The most common rounds in the Mutual Mobile interview process are One-on-one Round.
How to prepare for Mutual Mobile Project 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 Mutual Mobile. The most common topics and skills that interviewers at Mutual Mobile expect are Agile, Scrum, Software Development Life Cycle, Agile Methodology and Android.
What are the top questions asked in Mutual Mobile Project Manager interview?

Some of the top questions asked at the Mutual Mobile Project Manager interview -

  1. Basic Scenario based PM Questi...read more
  2. Cultural and Behavioural Quetsi...read more
  3. Cross-functional questi...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 48 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
Backbase Interview Questions
3.8
 • 22 Interviews
3Pillar Global Interview Questions
3.3
 • 19 Interviews
Khoros Interview Questions
3.7
 • 19 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Yodlee Interview Questions
3.8
 • 17 Interviews
Bottomline Interview Questions
3.3
 • 17 Interviews
CyberArk Interview Questions
3.6
 • 13 Interviews
View all
Mutual Mobile Project Manager Salary
based on 12 salaries
₹9 L/yr - ₹30.8 L/yr
15% more than the average Project Manager Salary in India
View more details

Mutual Mobile Project Manager Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

2.0

Skill development

4.0

Work-life balance

3.0

Salary

1.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
IOS Developer
12 salaries
unlock blur

₹6.7 L/yr - ₹14 L/yr

QA Engineer
12 salaries
unlock blur

₹2.6 L/yr - ₹8 L/yr

Project Manager
12 salaries
unlock blur

₹9 L/yr - ₹30.8 L/yr

Senior Engineer
11 salaries
unlock blur

₹9.5 L/yr - ₹32 L/yr

Associate Engineer
9 salaries
unlock blur

₹5 L/yr - ₹6 L/yr

Explore more salaries
Compare Mutual Mobile with

Yodlee

3.8
Compare

Fingent

4.4
Compare

Bravura Solutions

3.9
Compare

CloudMoyo

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