Upload Button Icon Add office photos

Filter interviews by

Cheers Interactive Software Engineer Interview Questions and Answers for Experienced

Updated 23 Jun 2020

Cheers Interactive Software Engineer Interview Experiences for Experienced

1 interview found

I applied via Naukri.com and was interviewed in Dec 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why use reactjs
  • Ans. 

    ReactJS is a popular JavaScript library for building user interfaces.

    • ReactJS allows for reusable components, making development faster and more efficient.

    • It uses a virtual DOM, which improves performance by minimizing updates to the actual DOM.

    • ReactJS has a large and active community, providing support and resources for developers.

    • It can be used for both web and mobile app development, with tools like React Native.

    • Reac...

  • Answered by AI
  • Q2. What is functional and class based components.
  • Ans. 

    Functional components are stateless and rely on props, while class-based components have state and lifecycle methods.

    • Functional components are written as functions and return JSX elements.

    • Class-based components are written as ES6 classes and extend the React.Component class.

    • Functional components are simpler and easier to test and understand.

    • Class-based components have access to lifecycle methods like componentDidMount ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The first round was telephonic interview. In first round they asked about myself and my current project. And some basics of ReactJS and nodejs. In the second round mostly questions was from ReactJS and some questions based on my CV skills.
Last round was HR where we discuss about the current CTC and expected CTC and negotiation.

Skills evaluated in this interview

Software Engineer Jobs at Cheers Interactive

View all

Interview questions from similar companies

I applied via Company Website and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How do you handle downtime
  • Ans. 

    I prioritize identifying the root cause and finding a solution while keeping stakeholders informed.

    • Identify the root cause of the downtime

    • Communicate with stakeholders about the issue and expected resolution time

    • Work on finding a solution as quickly as possible

    • Implement preventative measures to avoid future downtime

    • Document the incident and steps taken for future reference

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Because confident and prepare well for versant test

I applied via LinkedIn and was interviewed in Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basic OOPS concepts?
  • Q2. Logical Coding like remove duplicates from array

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on your basic OOPS concepts

I applied via Recruitment Consulltant and was interviewed before Feb 2021. There were 2 interview rounds.

Round 1 - Assignment 

Cofing round on hackerearth

Round 2 - Case Study 

Case study with algo and db design

Interview Preparation Tips

Interview preparation tips for other job seekers - Great technology, poor worklife balance

I applied via Company Website and was interviewed in May 2022. There were 7 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 

This aptitude + technical MCQ test was of 120 minutes in duration. Had MCQs on quantitative ability, logical ability, Language, and technical MCQs consisted of questions on DBMS, OS, Networks, DSA. There were two coding questions as well. One on Bit Manipulating, and the other on DFS.

Round 3 - One-on-one 

(1 Question)

  • Q1. A question on BFS very similar to Leetcode 924. Was given one hour to discuss and come to an optimized solution with the interviewer.
Round 4 - Technical 

(4 Questions)

  • Q1. Search an element in a sorted and rotated array
  • Ans. 

    Search an element in a sorted and rotated array

    • Find the pivot point where the array is rotated

    • Divide the array into two sub-arrays based on pivot point

    • Perform binary search on the appropriate sub-array

  • Answered by AI
  • Q2. SQL query on left join
  • Q3. Questions on CPP memory management
  • Q4. Questions related to projects done
Round 5 - Technical 

(2 Questions)

  • Q1. Propose a system for a popular media stream service
  • Ans. 

    Proposed system for a popular media stream service

    • Implement a recommendation engine to suggest content based on user preferences and viewing history

    • Integrate with social media platforms to allow users to share and discuss content

    • Provide multiple subscription options with varying levels of access and features

    • Ensure high-quality streaming with minimal buffering through the use of content delivery networks

    • Implement robust...

  • Answered by AI
  • Q2. Questions related to Fullstack Tech Stacks
Round 6 - Case Study 

Guesstimate on number of Reddit users in India. No starting input was given. Gave solution by using bottom to top approach. Tried to focus on quantifying teenagers with internet access and a particular interest about internet. Gave a figure around ~1 million in a year.

Round 7 - HR 

(1 Question)

  • Q1. Where do you see yourself at McKinsey?

Interview Preparation Tips

Topics to prepare for McKinsey & Company Software Engineer interview:
  • DSA
  • DBMS
  • Web Development
Interview preparation tips for other job seekers - Show leadership potential. Be honest. They are smart, they are McKinsey, they know what's what. If appearing for software profile, the preparation is no different from what's needed for other companies. They are highly selective. Rest assured; it will be good experience, keep your head up.

Skills evaluated in this interview

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

(1 Question)

  • Q1. Asked about SAAS, JS questions
Round 2 - Coding Test 

Given a case study need to solve in 2 days

Round 3 - One-on-one 

(1 Question)

  • Q1. Explain the case study. Palindrome function in any prog language
  • Ans. 

    A palindrome function checks if a given string reads the same forwards and backwards.

    • A palindrome function typically involves reversing the input string and comparing it to the original string.

    • Examples: 'racecar' is a palindrome, 'hello' is not a palindrome.

    • Common languages for implementing a palindrome function include Python, Java, and C++.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. General Guidelines
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

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

Round 1 - Coding Test 

4 problems 2 easy 2 meds

Round 2 - Technical 

(3 Questions)

  • Q1. Problem solving
  • Q2. Why you choose bcg
  • Q3. Case study what is it
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Case Study 

This round includes an assignment which needs to be completed based on Java, Springboot, REST and any Frontend. They evaluated the case study based on how I write the APIs, how normalised my database is, and how user friendly the UI is.

Round 2 - Technical 

(1 Question)

  • Q1. How will you add pagination in Spring Boot JPA query?
  • Ans. 

    Use Spring Data JPA's Pageable interface to add pagination in queries.

    • Use Pageable interface in repository method signature

    • Pass PageRequest object with page number, size, and sorting criteria

    • Example: public List findAllUsers(Pageable pageable);

Answered by AI

Skills evaluated in this interview

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

I appeared for an interview before Aug 2023.

Round 1 - HR 

(2 Questions)

  • Q1. Why did you chose bcg?
  • Ans. 

    I chose BCG because of their reputation for innovative projects and strong company culture.

    • Reputation for innovative projects

    • Strong company culture

    • Opportunities for growth and development

  • Answered by AI
  • Q2. Salary ecxpectation
Round 2 - Coding Test 

Merge 2 sorted array

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. How to write custom django admin commands
  • Ans. 

    Custom Django admin commands can be written to perform specific tasks in the Django admin interface.

    • Create a management/commands directory inside your Django app directory

    • Create a Python file for your custom command inside the management/commands directory

    • Define a class that extends BaseCommand and implement the handle method to execute the command logic

    • Register the custom command in the Django admin interface by addin

  • Answered by AI
  • Q2. Python decorator

Skills evaluated in this interview

Cheers Interactive Interview FAQs

How to prepare for Cheers Interactive Software Engineer 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 Cheers Interactive. The most common topics and skills that interviewers at Cheers Interactive expect are Redux, Automation Testing, Data Visualization, Design Patterns and Functional Testing.
What are the top questions asked in Cheers Interactive Software Engineer interview for experienced candidates?

Some of the top questions asked at the Cheers Interactive Software Engineer interview for experienced candidates -

  1. What is functional and class based componen...read more
  2. Why use reac...read more

Tell us how to improve this page.

Cheers Interactive Software Engineer Salary
based on 4 salaries
₹7.2 L/yr - ₹9.2 L/yr
5% less than the average Software Engineer Salary in India
View more details

Cheers Interactive Software Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Business Analyst
29 salaries
unlock blur

₹4 L/yr - ₹8.5 L/yr

Senior Research Analyst
16 salaries
unlock blur

₹2.3 L/yr - ₹10.8 L/yr

Assistant Manager
14 salaries
unlock blur

₹5.5 L/yr - ₹16 L/yr

Project Manager
12 salaries
unlock blur

₹8.1 L/yr - ₹15 L/yr

Senior Research Specialist
10 salaries
unlock blur

₹10.8 L/yr - ₹17 L/yr

Explore more salaries
Compare Cheers Interactive with

Deloitte

3.8
Compare

Ernst & Young

3.4
Compare

PwC

3.4
Compare

KPMG India

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