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

Filter interviews by

Chingari Interview Questions and Answers for Experienced

Updated 23 Feb 2024

Chingari Interview Experiences for Experienced

Popular Designations

3 interviews found

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

I applied via Walk-in and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. About your self
Round 3 - One-on-one 

(2 Questions)

  • Q1. Previous job and discription
  • Q2. One on one mock call

Inside Sales Specialist Interview Questions asked at other Companies

Q1. If you are selling courses to IIT graduates , how would you do it?
View answer (3)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Dec 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

General JS Array method questions.

Round 3 - Technical 

(1 Question)

  • Q1. Frontend Architectural discussion
Round 4 - CTO 

(1 Question)

  • Q1. Kind of introduction with technical discussion

Software Development Engineer II Interview Questions asked at other Companies

Q1. Given 2 large numeric comma seperated strings. You need to calculate their sum along with maintaining the correct position of commas. Example Test Case - s1 - "123,456,788" s2 - "1" output - "123,456,789" constraints - since the strings can... read more
View answer (1)
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

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Jun 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 - Aptitude Test 

50 mcq were asked in 12 mins. Most of the candidates qualified this round.

Round 3 - Coding Test 

3 coding questions of basic DSA were asked. Also few mcqs from Operating System, Networking and DBMS.

Round 4 - Technical 

(3 Questions)

  • Q1. The technical round was of 40 mins. 3 standard questions from DSA were asked for which only approach was enough. Questions were from string, array and tree- Rotated string, Lowest common ancestor, etc.
  • Q2. Project related discussion regarding my role in the team.
  • Q3. A few HR questions related to family background. Why not go for higher studies like the rest of my family. Had to convince him that I saw more growth in working for an organisation.
Round 5 - HR 

(1 Question)

  • Q1. My introduction then, standard HR questions like where do i see myself in coming yrs, why do i want to join the company, etc. It lasted 10 mins

Interview Preparation Tips

Topics to prepare for Cogoport Software Engineer interview:
  • DSA
  • DBMS
  • OS
  • Networking
  • Project
Interview preparation tips for other job seekers - Try to present yourself in a confident and straightforward manner. Ask as many questions as possible at the end to convey your eagerness to join the company.
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 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 - Aptitude Test 

15 minutes test.
50 questions
easy questions
Management , Leadership , Character Type questions

Round 3 - Coding Test 

2 coding questions
resume grilling
easy medium questions

Round 4 - HR 

(2 Questions)

  • Q1. Time management questions
  • Q2. Toughest project you work upon
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

45 mins, Basic aptitude , comprehension and decision making questions

Round 2 - Technical 

(1 Question)

  • Q1. Questions related to databases, DSA - medium, SQL Queries

I applied via Company Website and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Reverse a given Linked List. Both O(1) and O(N) space complexity. Where N is the size of Linked List.
  • Ans. 

    Reverse a given Linked List with O(1) and O(N) space complexity.

    • For O(1) space complexity, use three pointers to reverse the links in place.

    • For O(N) space complexity, use a stack to store the nodes and then pop them to create the reversed list.

    • Be careful with edge cases such as empty list or list with only one node.

  • Answered by AI
  • Q2. Explain your project. and give a brief overview for the technologies involved in the process of making the project. (Expect some cross-questioning for the technologies you are going to mention).
  • Q3. In a party of N people, only one person is known to everyone. Such a person may be present in the party, if yes, (s)he doesn't know anyone in the party. Find this celebrity (is present).
  • Ans. 

    Find the celebrity in a party of N people where only one person is known to everyone.

    • The celebrity doesn't know anyone in the party.

    • We can use a stack to keep track of potential celebrities.

    • If a person knows someone, they cannot be a celebrity.

    • If a person doesn't know someone, we can push them onto the stack.

    • After iterating through all people, we check if the stack has only one person and if that person is known to eve

  • Answered by AI
  • Q4. Explain in detail the working behind the algorithms of Merge Sort and Quick Sort.
  • Ans. 

    Merge Sort and Quick Sort are sorting algorithms that use divide and conquer approach.

    • Merge Sort divides the array into two halves, sorts them recursively, and then merges them.

    • Quick Sort selects a pivot element, partitions the array around the pivot, and recursively sorts the sub-arrays.

    • Merge Sort has a worst-case time complexity of O(nlogn), while Quick Sort has an average case time complexity of O(nlogn).

    • Merge Sort ...

  • Answered by AI
  • Q5. Trapping Rain-Water problem: Given N non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.
  • Ans. 

    Compute amount of water trapped in an elevation map after raining

    • Iterate through the array and find the maximum height on the left and right of each bar

    • Calculate the amount of water that can be trapped on each bar using the difference between the minimum of the two maximum heights and the height of the bar

    • Add up the amount of water trapped on each bar to get the total amount of water trapped

  • Answered by AI
  • Q6. Zigzag traversal of a given binary tree.
  • Ans. 

    Zigzag traversal of a binary tree is a way of traversing the tree in a zigzag pattern.

    • Use a stack to keep track of nodes to be visited.

    • For each level, alternate between adding nodes to the stack from left to right and right to left.

    • Pop nodes from the stack and add their children to the stack in the appropriate order.

    • Repeat until all nodes have been visited.

  • Answered by AI
  • Q7. Given a dictionary with {Key, Value} as {String, Integer}. Sort the given dictionary in ascending/descending order according to: 1) Key. 2) Value.
  • Ans. 

    Sort a dictionary by key or value in ascending/descending order.

    • Use sorted() function with lambda function to sort by key or value.

    • For ascending order, use reverse=False and for descending order, use reverse=True.

    • Example: sorted_dict = sorted(dictionary.items(), key=lambda x: x[0], reverse=True)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - - Have a good understanding of Data Structures and Algorithm.
- Whatever your project may be, you should know aspect of it and expect some cross-questions as well.
- Be confident with what solution you are coming up, and try to make it efficient if asked.

Skills evaluated in this interview

Interview Questionnaire 

3 Questions

  • Q1. Why should we hire you?
  • Q2. What are your weaknesses?
  • Q3. What are your goals

Interview Preparation Tips

Interview preparation tips for other job seekers - Make list of questions that you would like to ask during the interview
Be prepared
Display confidence during interview

I applied via Naukri.com and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Explain the difference b/w quick sort and merge sort ?
  • Ans. 

    Quick sort is a divide and conquer algorithm that sorts the array by selecting a pivot element and partitioning the other elements around it. Merge sort is also a divide and conquer algorithm that divides the array into two halves, sorts them separately and then merges them.

    • Quick sort has an average time complexity of O(n log n) while merge sort has a time complexity of O(n log n) in all cases.

    • Quick sort is an in-place...

  • Answered by AI
  • Q2. System Design for Naukri.com platform
  • Ans. 

    System design for Naukri.com platform

    • Identify user requirements and design the system architecture accordingly

    • Use scalable and reliable technologies for high traffic handling

    • Implement features like job search, job posting, resume upload, etc.

    • Ensure data security and privacy of users

    • Integrate with third-party services like payment gateways, social media platforms, etc.

  • Answered by AI
  • Q3. ADD two numbers (Linked List ) / leetcode question
  • Q4. Highest subset sum subarray ?
  • Ans. 

    Highest sum of contiguous subarray in an array

    • Use Kadane's algorithm to find the maximum sum subarray

    • Initialize max_so_far and max_ending_here to 0

    • Loop through the array and update max_ending_here and max_so_far

    • Return max_so_far as the highest subset sum subarray

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3 technical rounds . If you have clear concepts of Ds & Algo , it will do .Questions were mainly asked from DP, arrays and strings .Other than that some system design problems were also asked which includes the Design of Naukri.com.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. ADD two linkedlist (Leetcode Question)
  • Ans. 

    Add two linked lists and return the sum as a linked list.

    • Traverse both linked lists and add the corresponding nodes.

    • Handle carry over while adding nodes.

    • Create a new linked list to store the sum and return it.

  • Answered by AI
  • Q2. Knowledge about different tech stacks
  • Q3. Diff b/w quick sort and merge sort
  • Ans. 

    Quick sort is faster but unstable, while merge sort is slower but stable.

    • Quick sort uses a pivot element to divide the array into two parts and recursively sorts them.

    • Merge sort divides the array into two halves, sorts them separately, and then merges them.

    • Quick sort has an average time complexity of O(n log n), while merge sort has a time complexity of O(n log n) in all cases.

    • Quick sort is not stable, meaning that the...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was good . All of the interviewers were friendly .It was a nice discussion.

Skills evaluated in this interview

Chingari Interview FAQs

How many rounds are there in Chingari interview for experienced candidates?
Chingari interview process for experienced candidates usually has 3-4 rounds. The most common rounds in the Chingari interview process for experienced candidates are Technical, Resume Shortlist and HR.
How to prepare for Chingari interview for experienced candidates?
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 Chingari. The most common topics and skills that interviewers at Chingari expect are Agile Coaching, Open Source, Python, Backend and JIRA.
What are the top questions asked in Chingari interview for experienced candidates?

Some of the top questions asked at the Chingari interview for experienced candidates -

  1. Kind of introduction with technical discuss...read more
  2. Frontend Architectural discuss...read more
  3. Design API Rate Limi...read more
How long is the Chingari interview process?

The duration of Chingari interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Chingari Interview Process for Experienced

based on 3 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

ShareChat Interview Questions
3.6
 • 77 Interviews
MagicPin Interview Questions
3.0
 • 50 Interviews
Tokopedia Interview Questions
4.0
 • 27 Interviews
Meritto Interview Questions
3.6
 • 22 Interviews
Trell Interview Questions
3.2
 • 14 Interviews
Josh India Interview Questions
4.7
 • 2 Interviews
Roposo Interview Questions
4.4
 • 1 Interview
MOJ Interview Questions
3.4
 • 1 Interview
View all

Chingari Reviews and Ratings

based on 46 reviews

3.7/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.7

Salary

2.8

Job security

3.4

Company culture

3.3

Promotions

3.5

Work satisfaction

Explore 46 Reviews and Ratings
Associate Product Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Content Moderator
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Chingari with

ShareChat

3.6
Compare

Roposo

4.3
Compare

MOJ

3.4
Compare

MX Takatak

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