Upload Button Icon Add office photos
Engaged Employer

i

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

ShareChat Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ShareChat Interview Questions and Answers

Updated 23 May 2025
Popular Designations

50 Interview questions

A Senior Product Analyst was asked 7mo ago
Q. Write a SQL query to find the retention rate for users of MOJ.
Ans. 

Calculate the retention rate for a product using SQL by analyzing user activity over specific time frames.

  • Define retention: Measure of users who return after their first interaction.

  • Common formula: Retention Rate = (Returning Users / Total Users) * 100.

  • Example SQL query: SELECT COUNT(DISTINCT user_id) AS returning_users FROM user_activity WHERE activity_date BETWEEN '2023-01-01' AND '2023-01-31';

  • Identify cohorts: ...

View all Senior Product Analyst interview questions
A Senior QA Engineer was asked 7mo ago
Q. What are some negative test cases for a money transaction?
Ans. 

Negative test cases for money transaction

  • Transaction amount exceeds account balance

  • Invalid account number provided

  • Transaction fails due to network issues

  • Transaction is blocked due to suspicious activity

View all Senior QA Engineer interview questions
A Senior QA Engineer was asked 7mo ago
Q. What are the key differences between mobile and web application testing?
Ans. 

Mobile app testing involves testing applications on mobile devices, while web app testing involves testing applications on web browsers.

  • Mobile app testing includes testing on various mobile devices with different screen sizes and operating systems.

  • Web app testing focuses on compatibility with different web browsers and screen resolutions.

  • Mobile app testing may involve testing for offline functionality and push not...

View all Senior QA Engineer interview questions
A Software Developer was asked 7mo ago
Q. Given the head of a linked list, determine if the linked list has a cycle in it. There is a cycle in a linked list if there is some node in the list that can be reached again by continuously following the n...
Ans. 

Use Floyd's Tortoise and Hare algorithm to detect loop in linked list.

  • Initialize two pointers, slow and fast, at the head of the linked list.

  • Move slow pointer by one step and fast pointer by two steps.

  • If they meet at any point, there is a loop in the linked list.

View all Software Developer interview questions
A Software Developer was asked 7mo ago
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

Reversing a linked list involves changing the direction of its nodes to point backwards.

  • 1. Initialize three pointers: previous (prev), current (curr), and next.

  • 2. Set prev to null and curr to the head of the list.

  • 3. Iterate through the list: while curr is not null, do the following:

  • - Store the next node: next = curr.next.

  • - Reverse the link: curr.next = prev.

  • - Move prev and curr one step forward: prev = cu...

View all Software Developer interview questions
A Senior Engineer was asked 8mo ago
Q. Tell me about the event loop.
Ans. 

Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and handling events.

  • Event loop is commonly used in JavaScript to handle asynchronous operations.

  • It allows for non-blocking I/O operations by delegating tasks to the operating system.

  • Event loop continuously checks the event queue for any pending events and executes them in a sequential manner.

  • Example...

View all Senior Engineer interview questions
A Software Development Engineer II was asked 9mo ago
Q. Given a boolean matrix mat[N][M], where each row is sorted in non-decreasing order, find the row with the maximum number of 1s.
Ans. 

Find the row with maximum number of 1's in a matrix

  • Iterate through each row of the matrix

  • Count the number of 1's in each row

  • Track the row with maximum number of 1's

View all Software Development Engineer II interview questions
Are these interview questions helpful?
A Senior Data Analyst was asked 11mo ago
Q. How would you perform Root Cause Analysis if a consumption metric decreases?
Ans. 

Analyzing reasons for a decline in consumption metrics involves multiple factors, including user behavior and external influences.

  • Check for changes in user behavior, such as reduced engagement or usage frequency.

  • Investigate external factors like seasonality or economic conditions affecting consumption.

  • Analyze product or service changes, such as pricing adjustments or feature modifications.

  • Review marketing efforts ...

View all Senior Data Analyst interview questions
A Senior Software Engineer was asked 11mo ago
Q. How would you design a Facebook feed with integrated ads?
Ans. 

Integrate ads into Facebook feed for monetization

  • Utilize Facebook Audience Network for ad integration

  • Implement native ads for seamless user experience

  • Use targeting options to display relevant ads to users

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 11mo ago
Q. Which database is the best choice?
Ans. 

There is no one-size-fits-all answer to which DB is the best choice, as it depends on the specific requirements of the project.

  • Consider the type of data being stored (structured, unstructured, etc.)

  • Evaluate the scalability and performance needs of the project

  • Take into account the budget and resources available for maintenance and support

  • Look at the existing technology stack and compatibility with other systems

  • Cons...

View all Senior Software Engineer interview questions

ShareChat Interview Experiences

79 interviews found

Data Analyst Interview Questions & Answers

user image Kartik Gogia

posted on 1 Nov 2023

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

I applied via Company Website and was interviewed before Nov 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. SQL Joins Question
  • Q2. Tough Python Questions

Senior Product Analyst Interview Questions & Answers

user image B Devanarayanan

posted on 21 Nov 2024

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

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Sql question around finding the retention rate for moj
  • Ans. 

    Calculate the retention rate for a product using SQL by analyzing user activity over specific time frames.

    • Define retention: Measure of users who return after their first interaction.

    • Common formula: Retention Rate = (Returning Users / Total Users) * 100.

    • Example SQL query: SELECT COUNT(DISTINCT user_id) AS returning_users FROM user_activity WHERE activity_date BETWEEN '2023-01-01' AND '2023-01-31';

    • Identify cohorts: Analy...

  • Answered by AI
  • Q2. Tell me about a product you hate but need to use everyday
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Medium level DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. Find the row with maximum number of 1's
  • Ans. 

    Find the row with maximum number of 1's in a matrix

    • Iterate through each row of the matrix

    • Count the number of 1's in each row

    • Track the row with maximum number of 1's

  • Answered by AI
  • Q2. Design Book My Show

Interview Preparation Tips

Interview preparation tips for other job seekers - It all depends on the interviewers mood.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Tell about event loop.
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and handling events.

    • Event loop is commonly used in JavaScript to handle asynchronous operations.

    • It allows for non-blocking I/O operations by delegating tasks to the operating system.

    • Event loop continuously checks the event queue for any pending events and executes them in a sequential manner.

    • Example: In ...

  • Answered by AI

Skills evaluated in this interview

Lead Operator Interview Questions & Answers

user image Anonymous

posted on 14 Jun 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Basic, Easy Assignments

Round 2 - One-on-one 

(2 Questions)

  • Q1. Easy HR Questions
  • Q2. East HR questions
Round 3 - Technical 

(2 Questions)

  • Q1. Content related questions
  • Q2. Content related technical questions
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Share chat support Chatroom
  • Ans. 

    Chat support chatroom is a platform where customers can interact with support agents in real-time.

    • Chat support chatroom allows customers to ask questions and receive immediate assistance.

    • Support agents can handle multiple customer inquiries simultaneously in a chatroom.

    • Chat support chatroom can be integrated with AI chatbots to provide automated responses.

    • Customers can also share files, screenshots, and other relevant ...

  • Answered by AI
  • Q2. And technical support Chatroom

Interview Preparation Tips

Interview preparation tips for other job seekers - Officel
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Assignment 

Assignment related to local language to know our local language skills

Round 2 - HR 

(2 Questions)

  • Q1. How much you know about yout local language
  • Ans. 

    I am fluent in my local language and can communicate effectively in both spoken and written forms.

    • I am a native speaker of my local language

    • I have received formal education in my local language

    • I regularly use my local language in daily conversations and interactions

  • Answered by AI
  • Q2. How much you Can accomodate for your language
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 question only simple

Round 2 - Technical 

(2 Questions)

  • Q1. Reverse linked list
  • Ans. 

    Reversing a linked list involves changing the direction of its nodes to point backwards.

    • 1. Initialize three pointers: previous (prev), current (curr), and next.

    • 2. Set prev to null and curr to the head of the list.

    • 3. Iterate through the list: while curr is not null, do the following:

    • - Store the next node: next = curr.next.

    • - Reverse the link: curr.next = prev.

    • - Move prev and curr one step forward: prev = curr; c...

  • Answered by AI
  • Q2. Detect loop in linked list
  • Ans. 

    Use Floyd's Tortoise and Hare algorithm to detect loop in linked list.

    • Initialize two pointers, slow and fast, at the head of the linked list.

    • Move slow pointer by one step and fast pointer by two steps.

    • If they meet at any point, there is a loop in the linked list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be patient

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

DSA Problems from leetcode

Round 2 - Technical 

(1 Question)

  • Q1. Basics about Android and iOS

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 5 Sep 2024

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

I applied via Referral and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Coding Test 

It was a leetcode medium, related BFS,

Round 2 - Technical 

(2 Questions)

  • Q1. Basic of android like fragment activity communication
  • Q2. Why ViewModel is necessary, how does it save state
  • Ans. 

    ViewModel is necessary in Android development to save and manage UI-related data during configuration changes.

    • ViewModel helps in retaining data during configuration changes like screen rotations

    • It separates UI-related data from UI controller (Activity/Fragment)

    • ViewModel survives configuration changes and can be shared between fragments

    • It helps in maintaining data consistency and prevents memory leaks

    • ViewModel is lifecy...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. I am online new member celebrate
  • Q2. Online new member join

Interview Preparation Tips

Topics to prepare for ShareChat Banking Executive interview:
  • Technical Support

Top trending discussions

View All
Salary Discussions, Hike & Promotions
2w
a senior executive
GF salary Vs. My salary
Me and my gf have been dating for 5 years. Back in 2020, I started my career with a package of ₹5 LPA. Over the years, I’ve reached ₹22 LPA in 2025. She started her journey with ₹3 LPA(2020) and is now earning ₹8 LPA(2025). We’ve been in a live-in relationship for around 2 years, and the idea was to share expenses equally. But, equal sharing never really happened. If we go to a café she likes, especially with friends, I will pay the entire bill. We only split the house rent and grocery bills. I told her lots of time to cut down these costly cafe expenses or earn more money, increase your package, study and work hard, but.....she is now in her comfort zone. Being from a tech background, I have seen people upgrade their skills and package for a good life in metro cities. I am ready to support her in her studies, but she is like I am earning enough for myself.... No, you are not. I love her, but I don't know how to overcome this issue between us. Please suggest!
Got a question about ShareChat?
Ask anonymously on communities.

ShareChat Interview FAQs

How many rounds are there in ShareChat interview?
ShareChat interview process usually has 2-3 rounds. The most common rounds in the ShareChat interview process are One-on-one Round, Technical and Resume Shortlist.
How to prepare for ShareChat 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 ShareChat. The most common topics and skills that interviewers at ShareChat expect are Social Media, POP, Networking, Excel and Interpersonal Skills.
What are the top questions asked in ShareChat interview?

Some of the top questions asked at the ShareChat interview -

  1. Find average n days retention for all users given the user ID, date and activit...read more
  2. Find nth item without using limit and rank Remove duplicates from combination ...read more
  3. 25 horses, find 5 fastest horses, with the constraint that you're only allowe...read more
What are the most common questions asked in ShareChat HR round?

The most common HR questions asked in ShareChat interview are -

  1. Why are you looking for a chan...read more
  2. What are your salary expectatio...read more
How long is the ShareChat interview process?

The duration of ShareChat 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.2/5

based on 71 interview experiences

Difficulty level

Easy 31%
Moderate 69%

Duration

Less than 2 weeks 62%
2-4 weeks 24%
4-6 weeks 5%
More than 8 weeks 8%
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 465 Interviews
Meesho Interview Questions
3.7
 • 363 Interviews
CARS24 Interview Questions
3.5
 • 359 Interviews
Udaan Interview Questions
3.9
 • 346 Interviews
Zepto Interview Questions
3.5
 • 289 Interviews
BlackBuck Interview Questions
3.7
 • 193 Interviews
Tata 1mg Interview Questions
3.6
 • 180 Interviews
Digit Insurance Interview Questions
3.8
 • 158 Interviews
Paisabazaar.com Interview Questions
3.4
 • 152 Interviews
Urban Company Interview Questions
3.4
 • 143 Interviews
View all

ShareChat Reviews and Ratings

based on 591 reviews

3.6/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.9

Salary

2.6

Job security

3.5

Company culture

3.2

Promotions

3.3

Work satisfaction

Explore 591 Reviews and Ratings
Intern - Gujarati - Business Development(Sales)

Bangalore / Bengaluru

0-1 Yrs

Not Disclosed

Video Editor

Bangalore / Bengaluru

2-4 Yrs

Not Disclosed

Vibely - Growth Marketing Head

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Explore more jobs
Senior Associate Operations
154 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Operations Associate
127 salaries
unlock blur

₹3.5 L/yr - ₹6.1 L/yr

Lead Operator
72 salaries
unlock blur

₹6 L/yr - ₹12.7 L/yr

Territory Sales Manager
66 salaries
unlock blur

₹4 L/yr - ₹9.1 L/yr

Associate Product Manager
62 salaries
unlock blur

₹15 L/yr - ₹41 L/yr

Explore more salaries
Compare ShareChat with

Udaan

3.9
Compare

Swiggy

3.8
Compare

CARS24

3.5
Compare

BlackBuck

3.7
Compare
write
Share an Interview