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

53 Interview questions

A Software Developer Intern was asked
Q. 

Network Delay Time Problem Statement

Given a network of nodes numbered from 1 to 'N', and 'M' edges. Each edge is represented by three values (u, v, w) where 'u' and 'v' are nodes, and 'w' is an integer re...

Ans. 

Find the time it takes for a signal to travel from a given source node to all other nodes in a network.

  • Use Dijkstra's algorithm to find the shortest path from the source node to all other nodes.

  • Keep track of the minimum time taken to reach each node.

  • If it is impossible for the signal to reach all nodes, return -1.

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. 

Safe Nodes in the Graph

You are provided with a matrix/list called 'EDGES' representing 'E' edges of a directed graph with 'N' nodes. Starting from a node 'START', a character named Ninja walks along a dir...

Ans. 

Find all safe nodes in a directed graph where Ninja stops at an end node in less than 'K' steps.

  • Create a graph using the provided edges.

  • Perform a depth-first search (DFS) starting from each node to check if it reaches an end node.

  • Keep track of visited nodes and end nodes to determine safe nodes.

  • Return the safe nodes in sorted order.

View all Software Developer Intern interview questions
A Software Developer Intern was asked
Q. 

Postfix to Prefix Conversion Problem

Ninja has been given a Postfix expression and requires assistance in converting it to a Prefix expression.

A Postfix expression is formatted such that the operator fol...

Ans. 

Convert Postfix expression to Prefix expression by reversing the Postfix expression and then traversing it from left to right.

  • Reverse the given Postfix expression

  • Traverse the reversed expression from left to right

  • If an operand is encountered, push it to the stack

  • If an operator is encountered, pop two operands from the stack and concatenate them with the operator in the prefix form

  • Push the resulting string back to ...

View all Software Developer Intern interview questions

ShareChat Interview Experiences

79 interviews found

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
Interview Tips & Stories
1w (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 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.7
 • 475 Interviews
Meesho Interview Questions
3.7
 • 370 Interviews
CARS24 Interview Questions
3.5
 • 361 Interviews
Udaan Interview Questions
3.9
 • 347 Interviews
Zepto Interview Questions
3.5
 • 296 Interviews
BlackBuck Interview Questions
3.7
 • 194 Interviews
Tata 1mg Interview Questions
3.6
 • 189 Interviews
Digit Insurance Interview Questions
3.8
 • 159 Interviews
Paisabazaar.com Interview Questions
3.4
 • 156 Interviews
Urban Company Interview Questions
3.4
 • 143 Interviews
View all

ShareChat Reviews and Ratings

based on 590 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 590 Reviews and Ratings
Marketing Operations Associate

Bangalore / Bengaluru

1-3 Yrs

Not Disclosed

Promo Writer (Hindi)

Kolkata,

Mumbai

+5

7-10 Yrs

Not Disclosed

Promo Editor (Hindi)

Kolkata,

Mumbai

+5

7-10 Yrs

Not Disclosed

Explore more jobs
Senior Associate Operations
154 salaries
unlock blur

₹4 L/yr - ₹9 L/yr

Operations Associate
128 salaries
unlock blur

₹3.5 L/yr - ₹6.1 L/yr

Lead Operator
80 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

₹24.6 L/yr - ₹40.3 L/yr

Explore more salaries
Compare ShareChat with

Udaan

3.9
Compare

Swiggy

3.7
Compare

CARS24

3.5
Compare

BlackBuck

3.7
Compare
write
Share an Interview