Upload Button Icon Add office photos
Engaged Employer

i

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

Chingari Verified Tick

Compare button icon Compare button icon Compare
3.7

based on 45 Reviews

Filter interviews by

Chingari Software Engineer Interview Questions and Answers

Updated 1 Oct 2023

Chingari Software Engineer Interview Experiences

2 interviews found

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

I applied via Approached by Company and was interviewed before Sep 2022. There were 4 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. DSA round and medium level
  • Q2. Merge sort type/variation
Round 3 - Technical 

(1 Question)

  • Q1. Data Structure and Algorithms
Round 4 - Technical 

(1 Question)

  • Q1. System Design LLD round
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Oct 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Merge Sort based question
Round 3 - Technical 

(1 Question)

  • Q1. DP based question
Round 4 - Behavioral 

(1 Question)

  • Q1. Design API Rate Limiter
  • Ans. 

    Design an API rate limiter to control the number of requests a user can make within a certain time frame.

    • Implement a token bucket algorithm to track and limit the number of requests per user.

    • Set a maximum limit of requests per user per time frame (e.g. 100 requests per hour).

    • Use a sliding window to track the requests and reset the limit after the time frame expires.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just medium leetcode questions

Skills evaluated in this interview

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find DuplicateYou have been given an integer array/list(ARR) of s ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Python Theory questions, Memory management
  • Q2. Basic Data Structures and Algorithms
Round 2 - Technical 

(2 Questions)

  • Q1. Basic data structure and algorithms
  • Q2. Development and deployment of python django projects
  • Ans. 

    Python Django is a popular web framework for developing and deploying web applications.

    • Use virtual environments to manage dependencies

    • Utilize Django's built-in admin interface for managing data

    • Deploy Django projects using platforms like Heroku or AWS

    • Consider using Docker for containerization

    • Implement continuous integration and deployment pipelines

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. High Level Design Components

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

2 dsa questions of easy/medium

Round 2 - Technical 

(1 Question)

  • Q1. Asked two dsa questions of leetcodeeasy/medium
Round 3 - Technical 

(1 Question)

  • Q1. Asked two dsa questions of leetcode easy/medium
Round 4 - Behavioral 

(1 Question)

  • Q1. Asked one dsa question on tree and discussion on resume and dbms os
Round 5 - HR 

(1 Question)

  • Q1. Salary Discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Internshala and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Easy to medium, can solve with leetcode medium

Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of islands count
  • Ans. 

    Count the number of islands in a grid of '1's and '0's

    • Iterate through the grid and for each '1' encountered, perform a depth-first search to mark all connected '1's as visited

    • Increment the island count for each new island found

    • Ensure to handle boundary cases and check for visited nodes

  • Answered by AI
  • Q2. First and last index of a particular element in an array
  • Ans. 

    Find the first and last index of a specific element in an array of strings.

    • Iterate through the array and keep track of the index of the first and last occurrence of the element.

    • Return the first and last index once the iteration is complete.

    • Example: Array ['apple', 'banana', 'apple', 'orange'], element 'apple' - First index: 0, Last index: 2.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Design Questions to build a scalable micro service
  • Q2. Salary Discussion
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Oops Inheritance and Incapsulation

I applied via Recruitment Consulltant and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Concurrency related general question

Interview Preparation Tips

Interview preparation tips for other job seekers - Concurrency related questions, prepare well on multithreading, locks.

I applied via Recruitment Consultant and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Merge the two list which has different intervals. So merge them on the basis where they are overlapping.
  • Ans. 

    Merge two lists with different intervals based on overlapping intervals.

    • Sort both lists based on start time.

    • Iterate through both lists and compare intervals for overlap.

    • Merge overlapping intervals and add non-overlapping intervals to the result list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more of the competitive coding interview questions, such as from the coding practice website like leetcode, careercup, geekfor geeks.

Skills evaluated in this interview

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

(5 Questions)

  • Q1. What are decorators
  • Ans. 

    Decorators are functions that modify the behavior of other functions or methods.

    • Decorators are used to add functionality to existing functions without modifying their code.

    • They are commonly used in Python to modify the behavior of functions or methods.

    • Decorators are often used for logging, authentication, caching, and more.

    • Example: @staticmethod or @classmethod decorators in Python.

  • Answered by AI
  • Q2. What is python and is application
  • Ans. 

    Python is a high-level programming language known for its simplicity and readability, commonly used for web development, data analysis, artificial intelligence, and more.

    • Python is versatile and can be used for various applications such as web development, data analysis, artificial intelligence, scientific computing, and automation.

    • It is known for its clean syntax and readability, making it a popular choice for beginner...

  • Answered by AI
  • Q3. What oops define it with coding examples
  • Ans. 

    Object-oriented programming is a programming paradigm based on the concept of objects, which can contain data and code.

    • Encapsulation: bundling data and methods that operate on the data into a single unit

    • Inheritance: creating new classes based on existing classes

    • Polymorphism: the ability for objects to be treated as instances of their parent class

    • Abstraction: hiding the complex implementation details and showing only th

  • Answered by AI
  • Q4. Write a code to print infinite fibonacci series
  • Ans. 

    Use a loop to continuously calculate and print Fibonacci numbers

    • Use a loop to calculate the next Fibonacci number by adding the previous two numbers

    • Print each Fibonacci number as it is calculated

    • Consider using a while loop to continuously calculate and print Fibonacci numbers

  • Answered by AI
  • Q5. Write a code to check palindrome using two pointer
  • Ans. 

    Code to check palindrome using two pointers in an array of strings

    • Initialize two pointers, one at the start of the string and one at the end

    • Compare characters at the two pointers, moving them towards each other until they meet or cross

    • If all characters match, the string is a palindrome

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare dsa

Skills evaluated in this interview

Chingari Interview FAQs

How many rounds are there in Chingari Software Engineer interview?
Chingari interview process usually has 4 rounds. The most common rounds in the Chingari interview process are Technical, Resume Shortlist and Behavioral.
What are the top questions asked in Chingari Software Engineer interview?

Some of the top questions asked at the Chingari Software Engineer interview -

  1. Design API Rate Limi...read more
  2. DSA round and medium le...read more
  3. Merge sort type/variat...read more

Tell us how to improve this page.

Chingari Software Engineer Salary
based on 7 salaries
₹12 L/yr - ₹25 L/yr
86% more than the average Software Engineer Salary in India
View more details
Associate Product Manager
8 salaries
unlock blur

₹8 L/yr - ₹21 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹18 L/yr - ₹46.7 L/yr

Software Engineer
7 salaries
unlock blur

₹12 L/yr - ₹25 L/yr

Content Moderator
7 salaries
unlock blur

₹1.2 L/yr - ₹2.5 L/yr

Product Manager
7 salaries
unlock blur

₹19 L/yr - ₹42 L/yr

Explore more salaries
Compare Chingari with

ShareChat

3.7
Compare

Roposo

4.4
Compare

MOJ

3.6
Compare

MX Takatak

5.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview