Upload Button Icon Add office photos
Engaged Employer

i

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

Chetu Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Chetu Team Member Interview Questions and Answers

Updated 30 Jul 2024

Chetu Team Member Interview Experiences

3 interviews found

Team Member Interview Questions & Answers

user image GAURAV KUMAR

posted on 30 Jul 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Simple aptitude question

Round 2 - Coding Test 

Loops, basic binary search programme

Team Member Interview Questions & Answers

user image Anonymous

posted on 7 Sep 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

50questions in 50 minutes 10 questions from Maths and Reagioning

Round 3 - Technical 

(2 Questions)

  • Q1. Oops concept Mvc questions mostly focus on C#
  • Q2. English spoken is important
Round 4 - HR 

(1 Question)

  • Q1. Discussion about salary

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on basics its too easy to crack

Team Member Interview Questions Asked at Other Companies

asked in Dr. Reddy's
Q1. What is endotoxin.and what is the usp chapter numbers of water mo ... read more
asked in Dr. Reddy's
Q2. What is the calibration parameters of HPLC.
asked in ITC
Q3. And ur team member how to handle that critical situation handel
asked in Dr. Reddy's
Q4. 3 mass trasfer and Heat transfer operations that are carried out ... read more
asked in Dr. Reddy's
Q5. What is the 10N HCl pH and 10 N NaOH? And explain???

Team Member Interview Questions & Answers

user image Anonymous

posted on 29 May 2022

I applied via Naukri.com and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Coding Test 
Round 2 - Technical 

(1 Question)

  • Q1. Php relevant qnss, queries
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion , perks and allowances

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to work here, good environment

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jul 2021. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Hashmap implementation
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and provides constant time complexity for insertion, deletion, and retrieval.

    • Hashmap uses hashing function to map keys to indices in an array

    • Collisions can occur when two keys map to the same index, which can be resolved using separate chaining or open addressing

    • Java implementation: HashMap map = new HashMap<>()

  • Answered by AI
  • Q2. Server and environment
  • Q3. Differentce Between een Spring boot,spring
  • Ans. 

    Spring is a framework while Spring Boot is a tool that simplifies Spring application development.

    • Spring Boot provides auto-configuration and embedded servers.

    • Spring requires more configuration and setup.

    • Spring Boot is opinionated and follows 'convention over configuration'.

    • Spring Boot reduces boilerplate code.

    • Spring Boot is ideal for microservices and standalone applications.

  • Answered by AI
  • Q4. Type of conttoler in spring and type of annotations
  • Ans. 

    The type of controller in Spring is @Controller and the type of annotations are @RequestMapping and @ResponseBody.

    • @Controller is used to mark a class as a Spring MVC controller.

    • @RequestMapping is used to map a URL to a method in a controller.

    • @ResponseBody is used to indicate that the return value of a method should be serialized and returned as the response body.

  • Answered by AI
  • Q5. What is junkins why we use
  • Ans. 

    Junkins is not a known term in software engineering.

    • Junkins is not a term used in software engineering.

    • It is possible that the interviewer misspoke or meant to ask a different question.

    • It is important to clarify any confusion or misunderstandings during an interview.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - More should we prectical not to theorical

Skills evaluated in this interview

I applied via Company Website and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. They asked python memory management, string manipulations, regex, and about my current project

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep strong hold on python basics and data structure

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

Interview Questionnaire 

1 Question

  • Q1. Depends on role. I gave interview related to SRE devops. Brush up basics related to Jenkins splunk kubernetes python kafka prometheus docker etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear on basics and fluent, confident when answering. In total 5 rounds including HR

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

Interview Questionnaire 

1 Question

  • Q1. Questions were around Java, Spring,Authentication, Authorization, Forgerock tools.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick with the basics and try to explain yourself clearly. It's ok if you don't know any answer just say it directly to them. In all the interviews they would want to know your approach to a specific problem not the exact solution.

I applied via Naukri.com and was interviewed in Dec 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tech: Core Java concepts, difference between ArrayList and LinkedList, types of functional testing, CI/CD.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear and crisp with your answers. Have a complete clarity with your aspirations and role based responsibilities.

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

It was an online technical round. There were around 20 MCQs and two coding questions. The round had an login window of 30 minutes. One coding question was of the level leetcode medium and the other was leetcode hard.

  • Q1. 

    Search in a Row-wise and Column-wise Sorted Matrix Problem Statement

    You are given an N * N matrix of integers where each row and each column is sorted in increasing order. Your task is to find the positi...

  • Ans. 

    Given a sorted N * N matrix, find the position of a target integer X.

    • Iterate over each row and column to search for the target integer

    • Utilize the sorted nature of the matrix to optimize the search process

    • Return the position of the target integer if found, else return -1 -1

  • Answered by AI
  • Q2. 

    Euler’s Totient Function Problem Statement

    Given an integer N, your task is to determine the count of integers between 1 and N (inclusive) that are coprime to N.

    Input:

    The first line contains an intege...
  • Ans. 

    Euler's Totient Function calculates count of integers coprime to N between 1 and N.

    • Implement Euler's Totient Function to calculate count of coprime integers to N.

    • Use the formula: phi(N) = N * (1 - 1/p1) * (1 - 1/p2) * ... * (1 - 1/pk) where p1, p2, ..., pk are prime factors of N.

    • Example: For N = 9, phi(9) = 9 * (1 - 1/3) = 6.

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

It was a technical + HR round. The interview panel consisted of two technical guys and one person from HR.

  • Q1. 

    Sort Array of Strings Problem Statement

    Given an array of strings ARRSTR[] of size N, and a character C, your task is to sort the ARRSTR[] array according to a new alphabetical order that starts with the ...

  • Ans. 

    Sort an array of strings based on a new alphabetical order starting with a given character.

    • Iterate through the array of strings and compare each string with the given character to determine the new order.

    • Implement a custom comparator function to sort the strings based on the new alphabetical order.

    • Use built-in sorting functions in programming languages like Python, Java, or C++ to efficiently sort the array.

  • Answered by AI
  • Q2. Can you explain the pillars of Object-Oriented Programming (OOP)?
  • Ans. 

    The pillars of OOP are Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation restricts access to certain components of an object, protecting its integrity.

    • Abstraction hides complex implementation details and only shows the necessary features.

    • Polymorphism allows objects to be treated as instances of their parent class, ena

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Amity School Of Engineering And Technology. I applied for the job as SDE - 1 in BengaluruEligibility criteriaAbove 7.5 CGPA, No BacklogsAmadeus interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, Database Manangement Systems, SQL Queries, Greedy and DP Problems, Basics of Computer Networks.Time required to prepare for the interview - 4 monthsInterview preparation tips for other job seekers

Tip 1 : Practice questions on CP platforms such as codechef and codeforces. It will greatly help you for clearing coding round.
Tip 2 : Make notes of theory Subjects. It will greatly help you in last minute preparation.
Tip 3 : Go through the interview experience of the company before hand.
Tip 4 : Practice questions by narrating the explaination. Else it gets very difficult to both explain and code at the same time of interview.

Application resume tips for other job seekers

Tip 1 : Never lie on the resume. If you are not confident about something dont add it.
Tip 2 : Have atleast 2 projects on resume.
Tip 3 : Dont make it colourful. Follow any formal standard template.
Tip 4 : Add links to the project or your work if possible.
Tip 5 : Have only one Page. Dont write stories.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Company Website and was interviewed before Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. If fresher is attending the interview then mostly they'll ask questions from resume What are generics, UML diagram for the proper medicine suggestions based on the patient allergies to a particular drug ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with the contents of resume,
First round: versant test
Second round: Technical Interview 1
Third round: Technical Interview 2

Feedback of best of the 2 technical interviews will be considered.

IF selected will receive a call from HR

Chetu Interview FAQs

How many rounds are there in Chetu Team Member interview?
Chetu interview process usually has 3 rounds. The most common rounds in the Chetu interview process are Coding Test, Technical and HR.
What are the top questions asked in Chetu Team Member interview?

Some of the top questions asked at the Chetu Team Member interview -

  1. oops concept Mvc questions mostly focus on...read more
  2. English spoken is import...read more
  3. Php relevant qnss, quer...read more

Tell us how to improve this page.

Chetu Team Member Interview Process

based on 2 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

AVASOFT Interview Questions
3.6
 • 162 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
ServiceNow Interview Questions
4.1
 • 120 Interviews
Thomson Reuters Interview Questions
4.1
 • 113 Interviews
Amadeus Interview Questions
3.9
 • 107 Interviews
EbixCash Limited Interview Questions
4.0
 • 102 Interviews
UKG Interview Questions
3.1
 • 102 Interviews
SPRINKLR Interview Questions
3.0
 • 101 Interviews
Atlassian Interview Questions
3.6
 • 88 Interviews
View all
Chetu Team Member Salary
based on 62 salaries
₹2.8 L/yr - ₹7 L/yr
5% more than the average Team Member Salary in India
View more details

Chetu Team Member Reviews and Ratings

based on 12 reviews

2.7/5

Rating in categories

2.9

Skill development

2.6

Work-life balance

2.4

Salary

2.6

Job security

2.6

Company culture

2.8

Promotions

2.6

Work satisfaction

Explore 12 Reviews and Ratings
Software Engineer
1.2k salaries
unlock blur

₹2.4 L/yr - ₹11 L/yr

Software Developer
1k salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Senior Software Engineer
646 salaries
unlock blur

₹4.4 L/yr - ₹10 L/yr

Team Lead
280 salaries
unlock blur

₹4.2 L/yr - ₹13.5 L/yr

Senior Software Developer
220 salaries
unlock blur

₹4.6 L/yr - ₹11 L/yr

Explore more salaries
Compare Chetu with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

R Systems International

3.3
Compare

EbixCash Limited

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