Upload Button Icon Add office photos
Engaged Employer

i

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

ZIGRAM Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ZIGRAM Product Manager Interview Questions and Answers

Updated 1 Aug 2024

ZIGRAM Product Manager Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce Yourself
  • Ans. 

    Experienced product manager with a background in tech industry and a passion for innovation.

    • Over 5 years of product management experience

    • Strong background in technology industry

    • Proven track record of launching successful products

    • Passionate about driving innovation and customer satisfaction

  • Answered by AI
  • Q2. Why do you want to join Ziagram
  • Ans. 

    I want to join Ziagram because of its innovative products and strong company culture.

    • Innovative products: I am excited about the opportunity to work on cutting-edge products that can make a real impact in the market.

    • Strong company culture: I have heard great things about Ziagram's inclusive and collaborative work environment, and I believe I would thrive in such a setting.

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Case Study of user persona for different products
  • Q2. Guesstimates and case studies

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
2
Poor
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Write a query to extract unique values?
  • Ans. 

    Query to extract unique values

    • Use the SELECT DISTINCT statement in SQL to retrieve unique values from a table

    • For example, SELECT DISTINCT column_name FROM table_name;

    • In Python, you can use the set() function to extract unique values from a list or array

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Previous role and projects

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Overall experience in digital banking, engagement banking as a product owner.
  • Ans. 

    I have 5 years of experience in digital banking and engagement banking as a product owner.

    • Developed and launched a mobile banking app with enhanced user experience

    • Implemented AI chatbot for customer support resulting in 30% reduction in call center traffic

    • Conducted market research and identified customer pain points to improve product offerings

    • Collaborated with cross-functional teams to prioritize and deliver product r...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Mostly on team management, agile and scrum
Round 3 - Case Study 

Product Roadmap creation for Engagement Banking

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. Have comment on your current work and explain it. Rehearse before case study presentation.
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
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jul 2022. There were 5 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 

(1 Question)

  • Q1. Subjectives, Technical, Operational, Case Studies, Best Solutions, Client Communication etc...
Round 3 - One-on-one 

(1 Question)

  • Q1. Daily operationals, best practises, client Communication
Round 4 - One-on-one 

(1 Question)

  • Q1. Team handling, content creation and its management, best practice escalation handling etc
Round 5 - One-on-one 

(1 Question)

  • Q1. HR related negotiations, relocation,

Interview Preparation Tips

Interview preparation tips for other job seekers - Good place

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

Interview Preparation Tips

Round: Test
Experience: I was really frustrated because of the rejection from previous companies and in the same time deeply determined to convert this one as this was the last company offering the profile of Business Analyst. I can say this based on my experience that converting a company is solely a matter of your preparation and self-confidence but a tad bit of luck is also a necessity.
Tips: I have been particularly lucky and so have been all the serious CAT aspirants in the online tests. It is not that you need to enroll in TIME with the word go, but rather analyzing your calculation speed, your communication and interpretation skills can do you wonders.
Duration: 60 minutes
Total Questions: 50

Round: Group Discussion
Experience: Obviously the topic was on Indo-Sino relations, which I was quite aware of. As this a topic on foreign policy, very few people were actually aware of this topic, so I had an obvious advantage. This is the most trite advice but still I will say this "Read, Read,Read".
Tips: There are always some people who are well informed of the given topic and some who are not and it is always helpful to be in the first group in GDs. I like to be up to date on current affairs and at the same time reading novels from the likes of Shashi Tharoor and my personal favorite Khaled Hosseini prepared me for group discussions. It is always helpful to proceed by looking @ the problem from different perspectives like legal, social, academic and technical or else if you are particularly unlucky you might face an abstract topic, where you might need to use your imagination, like one my friend faced "Yellow shoes with pink laces". Even now I cannot aptly describe this topic.

Skills: Communication Skills, Calculations, Verbal, Knowledge on current affairs
College Name: NIT BHOPAL
Motivation: My only motivation was the post the company was offering. As it will be helpful for future plans of working in an Investment Bank or pursuing an MBA.
Funny Moments: In the Interview round, they asked me why do you want join this company. In reply I started with the word 'Firstly' and said because of its profile and did not not think of the second reason and they asked this very thing. I took my moment and realized honesty is best possible way now and replied that you are last non-core company visiting this campus and if you guys reject me I might leave this campus unplaced (because of my weak technical background). On hearing this they started laughing and at that very moment I knew I might not after all.

I applied via Company Website and was interviewed before May 2018. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions about Oops, data structures based on the projects I had done, and my resume
  • Q2. Questions about classes and abstraction

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 parts; part 1 is a coding test and part 2 is discussion.

ZIGRAM Interview FAQs

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

Some of the top questions asked at the ZIGRAM Product Manager interview -

  1. Case Study of user persona for different produ...read more
  2. Guesstimates and case stud...read more

Tell us how to improve this page.

ZIGRAM Product Manager Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

RGBSI Interview Questions
3.5
 • 24 Interviews
MapmyIndia Interview Questions
3.7
 • 24 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
View all
ZIGRAM Product Manager Salary
based on 5 salaries
₹10 L/yr - ₹12 L/yr
50% less than the average Product Manager Salary in India
View more details
Research Analyst
179 salaries
unlock blur

₹1.7 L/yr - ₹4.4 L/yr

Senior Analyst
160 salaries
unlock blur

₹2.8 L/yr - ₹7 L/yr

Senior Research Analyst
75 salaries
unlock blur

₹2.3 L/yr - ₹5.5 L/yr

Analyst
71 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Associate
20 salaries
unlock blur

₹4.8 L/yr - ₹11 L/yr

Explore more salaries
Compare ZIGRAM with

Aurigo

4.7
Compare

Prime Focus Technologies

3.4
Compare

Yalamanchili Software Exports

3.3
Compare

MapmyIndia

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