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 Senior Software Engineer Interview Questions and Answers

Updated 14 Dec 2023

Chetu Senior Software Engineer Interview Experiences

3 interviews found

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

It is simple MCQ machine test and test result is generated then forwarded for First round which is telephonic round.

Round 2 - Coding Test 

This round is on Zoom and will try to check your coding knowledge. Like your role in existing project in current company etc. Totally project related

Round 3 - HR 

(1 Question)

  • Q1. This is for your joining dates a
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2022. There were 3 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 

(1 Question)

  • Q1. They asked questions related your project and technical questions
Round 3 - Coding Test 

You have to do programming test. This is based on logical question.

Senior Software Engineer Interview Questions Asked at Other Companies

asked in DBS Bank
Q1. Tell me about yourself. What technology are you using? What is a ... read more
asked in GlobalLogic
Q2. MapSum Pair Implementation Create a data structure named 'MapSum' ... read more
asked in UST
Q3. Nth Prime Number Problem Statement Find the Nth prime number give ... read more
asked in Capgemini
Q4. Pascal's Triangle Construction You are provided with an integer ' ... read more
Q5. K Largest Elements Problem Statement You are given an integer k a ... read more

I applied via Approached by Company and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - System test 

(1 Question)

  • Q1. Advantage and disadvantage of framework.
  • Ans. 

    Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.

    • Advantage: Provides structure and pre-built components for faster development

    • Advantage: Can improve code quality and maintainability

    • Disadvantage: Can limit flexibility and customization

    • Disadvantage: Requires learning curve and potential dependency issues

    • Example: ReactJS provides a fr...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Oops? Advantage and disadvantage
  • Ans. 

    Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.

    • Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism

    • Disadvantages: complexity, steep learning curve, performance overhead

    • Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics in server side and client side coding

Skills evaluated in this interview

Interview questions from similar companies

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

Round 1 - Aptitude Test 

Aptitude test will a hackerrank test where it might have technical MCQ and/or coding test.

Round 2 - Technical 

(1 Question)

  • Q1. Interviewer will test your logic building capability with puzzel/coding and technical questions and experience discussion.
Round 3 - One-on-one 

(1 Question)

  • Q1. Its a normal discussion with HR about CTC and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - In TR interviewer are really good. They will help you and give hints. They mostly check if you have problem solving approch.

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Javascript basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - learn basic javascript questions with practical approach

I applied via Referral and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Sliding window problem in an Array(using 2 pointers) like Pythagorean triplets.
  • Q2. Overlapping circular linked list problem.
  • Ans. 

    Detect if two circular linked lists overlap

    • Traverse both lists and check if they have the same tail node

    • If they have different tail nodes, they do not overlap

    • If they have the same tail node, check if they intersect at any point

    • Use Floyd's cycle-finding algorithm to detect intersection point

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had 6 rounds of technical interview . Each round of 1 hr or more. In all the rounds I was asked to write proper programs (Sometimes on HackerRank, sometimes on an IDE, sometimes just on a text editor.) . Questions were designed to test problem solving abilities and proper use to dataStructures and coding basics. Lot of emphasis on writing efficient program with least time complexity possible.

During preparations, its important to understand basics of different dataStructures and how to efficiently use it in your programs . For practicing interview problems, I referred leetcode and geeksforgeeks . Solving different kind of problems from these websites really helped me. Dynamic Programming is also an important area from where lot of problems are asked in interview.

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Jun 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. A c++ written round. It contains good questions on c++ related to exception handling, virtual table concepts, smart_ptrs , etc ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with your project.
Have decent but not great knowledge knowledge in DS/Algos
Know basics of system design.
Be good in your programming language.

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic Oracle Architecture, RAC Setup, Golden Gate Troubleshooting, Data Guard recover, RMAN restoration

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on Day to Day activities and Oracle architecture

I applied via Company Website and was interviewed in Apr 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Java memory management
  • Q2. Spring boot basics
  • Q3. Classloaders in java
  • Ans. 

    Classloaders are responsible for loading classes into the JVM at runtime.

    • Java has three built-in classloaders: bootstrap, extension, and system.

    • Custom classloaders can be created to load classes from non-standard sources.

    • Classloaders follow a delegation model, where they first delegate to their parent classloader before attempting to load the class themselves.

    • Classloaders can be used for dynamic class loading and hot-s

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare java basics very well and solve various coding challenges

Skills evaluated in this interview

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

I appeared for an interview before Mar 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Write code to find count of characters in string.
  • Ans. 

    Count characters in a string using array of strings.

    • Iterate through each string in the array

    • For each string, iterate through each character and increment count

    • Return the total count of characters

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Coding related questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Atlassian Values

Skills evaluated in this interview

Chetu Interview FAQs

How many rounds are there in Chetu Senior Software Engineer interview?
Chetu interview process usually has 3 rounds. The most common rounds in the Chetu interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in Chetu Senior Software Engineer interview?

Some of the top questions asked at the Chetu Senior Software Engineer interview -

  1. What is Oops? Advantage and disadvant...read more
  2. Advantage and disadvantage of framewo...read more

Tell us how to improve this page.

Chetu Senior Software Engineer Interview Process

based on 4 interviews

Interview experience

4.5
  
Good
View more
Chetu Senior Software Engineer Salary
based on 647 salaries
₹4.4 L/yr - ₹10 L/yr
50% less than the average Senior Software Engineer Salary in India
View more details

Chetu Senior Software Engineer Reviews and Ratings

based on 70 reviews

3.6/5

Rating in categories

3.8

Skill development

3.3

Work-life balance

3.4

Salary

3.0

Job security

3.2

Company culture

3.7

Promotions

3.2

Work satisfaction

Explore 70 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
647 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
223 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