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
3.7

based on 577 Reviews

Filter interviews by

ShareChat SDE-2 Interview Questions, Process, and Tips

Updated 5 Sep 2024

Top ShareChat SDE-2 Interview Questions and Answers

  • Q1. Find Square root of an integer You are given an integer ‘A’. Your task is to find the greatest non-negative integer whose square is less than or equal to ‘A’. Square of a ...read more
  • Q2. Find the minimum element in a sorted and rotated array You're given a sorted array that has now been rotated 'K' times, which is unknown to you. Rotation here means that ...read more
  • Q3. why ViewModel is necessary, how does it save state

ShareChat SDE-2 Interview Experiences

3 interviews found

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

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 4 Apr 2022

I was interviewed before Apr 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Technical Interview round with questions on DSA.
Tip : Do variants of Binary Search.

  • Q1. Find Square root of an integer

    You are given an integer ‘A’. Your task is to find the greatest non-negative integer whose square is less than or equal to ‘A’.

    Square of a number is the product of the num...

  • Ans. 

    The Simple Approach is to find the floor of the square root, try with all-natural numbers starting from 1. Continue incrementing the number until the square of that number is greater than the given number.


    Algorithm : 
    1. Create a variable (counter) i and take care of some base cases, i.e when the given number is 0 or 1.
    2. Run a loop until i*i <= n , where n is the given number. Increment i by 1.
    3. The floor of t...

  • Answered Anonymously
  • Q2. Find the minimum element in a sorted and rotated array

    You're given a sorted array that has now been rotated 'K' times, which is unknown to you. Rotation here means that every element is shifte...

  • Ans. 

    The brute force solution is to traverse the entire array and find the minimum. Time Complexity : O(N)


    The efficient approach is to use Binary Search. The following pattern can be observed : 
     

    • The minimum element is the only element whose previous is greater than it. If there is no previous element, then there is no rotation (the first element is minimum). We check this condition for the middle element by comp...

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAShareChat 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 interviewRejected

Skills evaluated in this interview

SDE-2 Interview Questions Asked at Other Companies

asked in Walmart
Q1. Maximum Frequency NumberNinja is given an array of integers that ... read more
asked in Atlassian
Q2. K Most Frequent WordsYou have been given an array/list 'WORDS' of ... read more
Q3. Design Question“Rent a Ride”  As a customer to Rent a Ride y ... read more
Q4. Reverse StringYou are given a string ‘S’. You are also given ‘M’ ... read more
asked in ShareChat
Q5. Find Square root of an integerYou are given an integer ‘A’. Your ... read more

SDE-2 Interview Questions & Answers

user image Anonymous

posted on 18 Aug 2021

I applied via Referral and was interviewed in Feb 2021. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Find square root of integer
  • Ans. 

    Use binary search to find the square root of an integer.

    • Start with low=0 and high=x.

    • While low<=high, calculate mid=(low+high)/2.

    • If mid*mid==x, return mid.

    • If mid*mid

    • If mid*mid>x, set high=mid-1.

    • Return high as the floor of the square root.

  • Answered by AI
  • Q2. Find number in sorted rotated array
  • Ans. 

    Find a given number in a sorted rotated array.

    • Use binary search to find the pivot point where the array is rotated.

    • Determine which half of the array the target number may be in.

    • Perform binary search on the appropriate half of the array to find the target number.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do variants of binary search

Skills evaluated in this interview

Interview questions from similar companies

SDE-2 Interview Questions & Answers

Licious user image Saransh Sinha

posted on 7 Nov 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode medium to hard

Round 2 - Technical 

(2 Questions)

  • Q1. Database designing
  • Q2. OOPS principals in Java
  • Ans. 

    OOPS principles in Java refer to concepts like inheritance, encapsulation, polymorphism, and abstraction.

    • Inheritance: Allows a class to inherit properties and behavior from another class. Example: class B extends class A.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit. Example: private variables with public getter and setter methods.

    • Polymorphism: Ability to present the same interfac...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

I don't remember the ques

Round 2 - Technical 

(1 Question)

  • Q1. System design of notification system
  • Ans. 

    Design a scalable notification system for sending real-time alerts to users.

    • Use a distributed system to handle high volume of notifications.

    • Implement message queues for asynchronous processing.

    • Utilize push notifications for mobile devices.

    • Include a user preference system for customizing notification settings.

    • Consider implementing a notification history feature for users to view past alerts.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. System design of google pay
  • Ans. 

    Google Pay is a digital wallet platform and online payment system developed by Google.

    • Google Pay uses secure tokenization to protect user's payment information.

    • It integrates with various payment methods like credit/debit cards, UPI, and NFC.

    • The system handles transactions, user authentication, and merchant integrations.

    • Google Pay leverages Google's infrastructure for scalability and reliability.

    • It provides features lik

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Look for interview exp

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

Blinkit user image Anonymous

posted on 20 May 2022

I was interviewed in May 2022.

Round 1 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Timing was around 11 am
Environment was great, it intrigued me to join Blinkit.

  • Q1. Pair Sum

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to return the list of all pairs of elements such that each sum of elements of each pair eq...

  • Ans. 

    First approach : Loop inside Loop to figure out the sum of two numbers are equal to a constant number. But the complexity is N2 

    Second approach : i used Map to store numbers. Before storing we just check rhta constant number - current number exist in map or not.

    Second solution is approved

  • Answered Anonymously
Round 2 - Face to Face 

(3 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

Timing 11 am
Interviewer had good knowledge

  • Q1. Technical Question

    Activity lifecycle

  • Ans. 

    Tip 1 : Remember important methods and what is the used of every method

  • Answered Anonymously
  • Q2. Technical Question

    Fragment lifecycle

  • Ans. 

    Tip 1 : Remember important methods and what is the used of every method

  • Answered Anonymously
  • Q3. System Design Question

    Explain MVVM pattern

  • Ans. 

    Tip 1 : must have knowledge about MVC, mvp,mvi,mvvm patterns.

  • Answered Anonymously
Round 3 - Face to Face 

Round duration - 30 Minutes
Round difficulty - Easy

This round is cultural fit round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 2 in BangaloreEligibility criteriaNoGrofers interview preparation:Topics to prepare for the interview - Data structures, Threading and synchronisation, Kotlin vs Java, Activities lifecycle, Fragment lifecycle, Android services, Reduce APK size, Create analytics libraryTime required to prepare for the interview - 1 monthInterview preparation tips for other job seekers

Tip 1 : Prepare easy/medium level data structures questions in leetcode. Solve atleast 50 questions of multiple types like strings, arrays, tree, linked list, graph
Tip 2 : Go through Android basic questions like lifecycle, live data, MVC/mvp/ mvvm pattern, retrofit, data binding
Tip 3 : Atleast solve 5 design questions like how to build Instagram, analytics library, crashlytics

Application resume tips for other job seekers

Tip 1 : be concise 
Tip 2 : write only those keywords which you have in depth knowledge

Final outcome of the interviewSelected

Skills evaluated in this interview

SDE-2 Interview Questions & Answers

Meesho user image Anonymous

posted on 11 Nov 2022

I was interviewed in May 2022.

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. Data Structures and Algorithms
Round 3 - Technical 

(1 Question)

  • Q1. Machine Coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong at Data Structures and Algorithms, and good system design knowledge

SDE-2 Interview Questions & Answers

Rivigo user image Anonymous

posted on 17 Jun 2021

Interview Questionnaire 

5 Questions

  • Q1. Round1: Hackerrank test: 1 SQL, 1 OOPS, 1 RestAPI, 1 Algo Question
  • Q2. Round2: 3 DS/Algo Questions + 1 Java Question
  • Q3. Round3: LLD + Little bit HLD
  • Q4. Round4: System Design
  • Q5. Round5: Talk with engineering head
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is clousers
  • Q2. What is promises
Round 2 - Technical 

(2 Questions)

  • Q1. Explain javascript architecture
  • Q2. What is mvvm architecture
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were 2 questions in coding one with array and in string releated

Round 2 - One-on-one 

(3 Questions)

  • Q1. About Selenium questions
  • Q2. Other basic questions related to testing
  • Q3. Management related question
Round 3 - HM 

(2 Questions)

  • Q1. One program to solve
  • Q2. Other questions in selenium

ShareChat Interview FAQs

How many rounds are there in ShareChat SDE-2 interview?
ShareChat interview process usually has 2 rounds. The most common rounds in the ShareChat interview process are Coding Test and Technical.
How to prepare for ShareChat SDE-2 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 Python, Social Media, Application Integration, Application Software and C++.
What are the top questions asked in ShareChat SDE-2 interview?

Some of the top questions asked at the ShareChat SDE-2 interview -

  1. why ViewModel is necessary, how does it save st...read more
  2. Find number in sorted rotated ar...read more
  3. Find square root of inte...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 423 Interviews
Udaan Interview Questions
4.0
 • 334 Interviews
Meesho Interview Questions
3.7
 • 322 Interviews
CARS24 Interview Questions
3.6
 • 316 Interviews
BlackBuck Interview Questions
3.8
 • 172 Interviews
Blinkit Interview Questions
3.7
 • 170 Interviews
Tata 1mg Interview Questions
3.7
 • 141 Interviews
Paisabazaar.com Interview Questions
3.5
 • 136 Interviews
Urban Company Interview Questions
3.5
 • 133 Interviews
Ninjacart Interview Questions
4.0
 • 94 Interviews
View all
ShareChat SDE-2 Salary
based on 14 salaries
₹28.4 L/yr - ₹51 L/yr
11% more than the average SDE-2 Salary in India
View more details

ShareChat SDE-2 Reviews and Ratings

based on 7 reviews

3.5/5

Rating in categories

3.2

Skill development

3.4

Work-life balance

4.2

Salary

3.2

Job security

2.9

Company culture

3.5

Promotions

3.4

Work satisfaction

Explore 7 Reviews and Ratings
Senior Associate Operations
135 salaries
unlock blur

₹4 L/yr - ₹8.8 L/yr

Operations Associate
104 salaries
unlock blur

₹3.5 L/yr - ₹6.1 L/yr

Lead Operator
82 salaries
unlock blur

₹6.5 L/yr - ₹12 L/yr

Territory Sales Manager
76 salaries
unlock blur

₹4 L/yr - ₹8.8 L/yr

Associate Manager
69 salaries
unlock blur

₹9.2 L/yr - ₹18 L/yr

Explore more salaries
Compare ShareChat with

MOJ

3.6
Compare

Chingari

3.7
Compare

Roposo

4.4
Compare

MX Takatak

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