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 Interview Questions, Process, and Tips for Freshers

Updated 4 Apr 2025

Top Chetu Interview Questions and Answers for Freshers

View all 28 questions

Chetu Interview Experiences for Freshers

Popular Designations

19 interviews found

Web Developer Interview Questions & Answers

user image Anonymous

posted on 30 Sep 2022

I applied via Naukri.com and was interviewed in Aug 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 

(2 Questions)

  • Q1. C# oops concept .net core
  • Q2. Sql server Database
Round 3 - HR 

(3 Questions)

  • Q1. Discussion of about of your company
  • Q2. Salary discussion And benefits
  • Q3. Features About of your company

Interview Preparation Tips

Interview preparation tips for other job seekers - I am a web developer and I have 6 month experience from chetu India PVT LDT

Top Chetu Web Developer Interview Questions and Answers

Q1. Can you explain the concept of ACID properties in DBMS?
View answer (1)

Web Developer Interview Questions asked at other Companies

Q1. Last Index of Element The task is to determine the index of the last occurrence of a specified element x within an array that may contain duplicate elements. If the element is not present, return -1. Input: The first line contains an intege... read more
View answer (2)

Interview Questionnaire 

6 Questions

  • Q1. What is inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reusability and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and metho...

  • Answered by AI
  • Q2. Consept of this use and benifit?
  • Ans. 

    The question is unclear and lacks context.

    • Please provide more information or rephrase the question.

    • Without context, it is difficult to understand what is being asked.

    • It is important to communicate clearly in technical interviews.

  • Answered by AI
  • Q3. Why use routing?
  • Ans. 

    Routing is used to direct network traffic efficiently and securely.

    • Routing helps to find the best path for data packets to travel.

    • It enables load balancing and fault tolerance.

    • Routing protocols like OSPF, BGP, and EIGRP are used to manage routing tables.

    • Routing can be static or dynamic depending on the network requirements.

  • Answered by AI
  • Q4. Described Thunk and saga ?
  • Ans. 

    Thunk and saga are middleware libraries used in Redux for handling asynchronous actions.

    • Thunk is a function that wraps an expression to delay its evaluation.

    • Saga is a generator function that allows for complex control flow and error handling.

    • Thunk is simpler and easier to use, while Saga is more powerful and flexible.

    • Example: Thunk can be used to dispatch an action after an API call is complete.

    • Example: Saga can be use...

  • Answered by AI
  • Q5. Life cycle method?
  • Ans. 

    Life cycle methods are functions that are called at different stages of a component's life cycle in React.

    • There are three categories of life cycle methods: mounting, updating, and unmounting.

    • Mounting methods are called when a component is being created and inserted into the DOM.

    • Updating methods are called when a component's state or props change.

    • Unmounting methods are called when a component is being removed from the D...

  • Answered by AI
  • Q6. Deference between foreach and map ?
  • Ans. 

    foreach is used to iterate over an array and perform an action on each element, while map creates a new array by applying a function to each element of an existing array.

    • foreach does not return a new array, while map does

    • foreach can only perform an action on each element, while map can transform each element

    • foreach is useful for performing side effects, while map is useful for creating a new array with transformed elem

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Reed basic concepts of js and most focused on es6

Skills evaluated in this interview

Top Chetu Software Engineer Interview Questions and Answers

Q1. Find All Pairs Adding Up to Target Given an array of integers ARR of length N and an integer Target, your task is to return all pairs of elements such that they add up to the Target. Input: The first line contains an integer 'T' denoting th... read more
View answer (1)

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 (223)
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

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Interview Questionnaire 

9 Questions

  • Q1. What is interface ?
  • Ans. 

    An interface is a contract that specifies the methods and properties that a class must implement.

    • An interface defines a set of methods and properties that a class must implement

    • Interfaces are used to achieve abstraction and polymorphism

    • Interfaces can be used to define contracts between different parts of a system

    • A class can implement multiple interfaces

    • Example: The IDisposable interface in C# is used to ensure that an ...

  • Answered by AI
  • Q2. What is the difference between delete and truncate?
  • Ans. 

    Delete removes specific rows while truncate removes all rows from a table.

    • Delete is a DML command while truncate is a DDL command.

    • Delete is slower than truncate as it logs each row deletion while truncate only logs the deallocation of data pages.

    • Delete can be rolled back while truncate cannot be rolled back.

    • Delete can have a WHERE clause to specify which rows to delete while truncate removes all rows.

    • Delete does not re...

  • Answered by AI
  • Q3. What are the sealed classes?
  • Ans. 

    Sealed classes are classes that cannot be inherited and are used to restrict class hierarchy.

    • Sealed classes are declared using the 'sealed' keyword.

    • They can have abstract members but cannot be instantiated.

    • They are useful in creating exhaustive when expressions.

    • They restrict the inheritance hierarchy and prevent unintended subclassing.

    • Example: sealed class Shape { abstract fun draw() }

  • Answered by AI
  • Q4. Stored procedure?
  • Q5. Difference between union and union all.
  • Ans. 

    Union combines and removes duplicates while Union All combines all rows.

    • Union is used to combine the result sets of two or more SELECT statements into a single result set with no duplicates.

    • Union All is used to combine the result sets of two or more SELECT statements into a single result set with all rows.

    • Union is slower than Union All because it has to remove duplicates.

    • Union requires that the number and order of colu...

  • Answered by AI
  • Q6. Triggers and functions.
  • Q7. Abstract class with example
  • Ans. 

    Abstract class is a class that cannot be instantiated and can only be inherited by other classes.

    • An abstract class can have abstract and non-abstract methods.

    • Abstract methods have no implementation and must be implemented by the child class.

    • Non-abstract methods can have implementation and can be inherited by the child class.

    • An abstract class can have constructors and variables.

    • Example: abstract class Animal { abstract

  • Answered by AI
  • Q8. Primary key and foreign key difference.
  • Ans. 

    Primary key uniquely identifies a record while foreign key refers to a primary key in another table.

    • Primary key is a column or set of columns that uniquely identifies a record in a table

    • Foreign key is a column or set of columns that refers to a primary key in another table

    • Primary key cannot have null values while foreign key can have null values

    • Primary key is used to enforce data integrity while foreign key is used to

  • Answered by AI
  • Q9. Inheritance and polymorphism.

Skills evaluated in this interview

Top Chetu Software Developer Interview Questions and Answers

Q1. Suppose one of your relative is seriously ill and nobody is present there except you and you must have to come to office because there is a meeting with clients when you reach office. What will you do?
View answer (2)

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)

Chetu interview questions for popular designations

 Software Engineer

 (34)

 Software Developer

 (33)

 DOT NET Developer

 (12)

 Web Developer

 (4)

 UI Developer

 (3)

 Senior Software Engineer

 (3)

 Java Developer

 (3)

 Team Member

 (3)

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 Mar 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Round 1 is Optional test. Which we have to pass atleast 30 marks out of 50

Round 2 - One-on-one 

(1 Question)

  • Q1. What is oops. What is .net core What is Mssql. What is joins. What is union. What is procedures
  • Ans. 

    Answers to common technical questions asked in a .NET Software Developer interview.

    • OOPs stands for Object-Oriented Programming, a programming paradigm that uses objects to represent real-world entities.

    • .NET Core is a cross-platform, open-source framework for building modern applications.

    • MS SQL is a relational database management system used to store and retrieve data.

    • Joins are used to combine data from two or more tabl...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. SQL queries. Max average salary.
  • Ans. Login process. Authentication. Authorization. Return type of action method
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident.learn theoretical part first then coding round must be stronger

Skills evaluated in this interview

.NET Software Developer Interview Questions asked at other Companies

Q1. Can sealed class inherit non-profit sealed class
View answer (4)

Get interview-ready with Top Chetu Interview Questions

I applied via Campus Placement and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Can you draft a notice based on a current situation provided to you?
  • Ans. 

    Yes, I can draft a notice based on a current situation provided to me.

    • I would need to understand the current situation and the purpose of the notice

    • I would gather all relevant information and ensure accuracy

    • I would use clear and concise language and follow any applicable legal requirements

    • I would review and revise the notice as necessary

    • Examples: notice of termination, notice of breach of contract, notice of change in

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I drafted a 2 pager notice for the Head of Legal Dept., I did that in 45 minutes. He said that it was too long and that attorney correspondence to a third party needs to be a crisp 1 pager affirming and advising to cease and desist or to perform a function. Your grammar needs to be to the point, no need for hoi polloi words.

Legal Counsel Interview Questions asked at other Companies

Q1. Can you draft a notice based on a current situation provided to you?
View answer (1)

Jobs at Chetu

View all

Trainee Interview Questions & Answers

user image Anonymous

posted on 15 May 2022

I applied via Referral and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Too easy

Round 2 - Technical 

(1 Question)

  • Q1. They can Ask anything, not even related to you technology, and try to be philosopher.

Interview Preparation Tips

Topics to prepare for Chetu Trainee interview:
  • Dotnet
Interview preparation tips for other job seekers - Dont waste you time here, this company is not even worth it

Trainee Interview Questions asked at other Companies

Q1. Ques1: There is a big file of words which is dynamically changing. We are continuously adding some words into it. How would you keep track of top 10 trending words at each moment? Ques2:Write a function that returns the length of the longes... read more
View answer (2)

Interview Questionnaire 

1 Question

  • Q1. What is Dispatcher servlet
  • Ans. 

    Dispatcher servlet is the front controller of Spring MVC framework.

    • It receives all incoming requests and delegates them to appropriate handlers.

    • It uses HandlerMapping to map requests to appropriate handlers.

    • It uses HandlerAdapter to invoke the appropriate handler method.

    • It uses ViewResolver to resolve the view for the response.

    • It is configured in web.xml or through Java configuration.

    • Example: DispatcherServlet dispatch...

  • Answered by AI

Skills evaluated in this interview

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)

I applied via Walk-in and was interviewed before Jan 2021. There were 5 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Are you want to work in Chetu Inc
  • Q2. First you complete your core Java then jdbc then servlet then JSP then spring
  • Q3. How to eligible for chetu inc
  • Q4. There are two ways to go chetu inc first is you complete two years experience then you will be eligible for interview in Chetu inc second way is chetu organize skill centre program you can join this pr...
  • Q5. Are you want to know about interview
  • Q6. Chetu Inc take CBT and interview

Interview Preparation Tips

Interview preparation tips for other job seekers - First you complete CBT questions then prepare interview questions keep confidant on yourself

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (4)

Chetu Interview FAQs

How many rounds are there in Chetu interview for freshers?
Chetu interview process for freshers usually has 3 rounds. The most common rounds in the Chetu interview process for freshers are Technical, Aptitude Test and Resume Shortlist.
How to prepare for Chetu interview for freshers?
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 Chetu. The most common topics and skills that interviewers at Chetu expect are Hiring, IT Recruitment, Interviewing, Recruitment and Screening.
What are the top questions asked in Chetu interview for freshers?

Some of the top questions asked at the Chetu interview for freshers -

  1. What is the difference between delete and trunca...read more
  2. Remove space from given dataframe and concat the first and last name and add ne...read more
  3. What is the significance of Sql joins in database managem...read more
How long is the Chetu interview process?

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

Tell us how to improve this page.

Chetu Interview Process for Freshers

based on 10 interviews

Interview experience

4.1
  
Good
View more

Interview Questions from Similar Companies

AVASOFT Interview Questions
2.9
 • 166 Interviews
Oracle Cerner Interview Questions
3.7
 • 158 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Thomson Reuters Interview Questions
4.1
 • 114 Interviews
Amadeus Interview Questions
3.9
 • 108 Interviews
EbixCash Limited Interview Questions
4.0
 • 103 Interviews
UKG Interview Questions
3.1
 • 103 Interviews
SPRINKLR Interview Questions
3.0
 • 102 Interviews
Atlassian Interview Questions
3.5
 • 89 Interviews
View all

Chetu Reviews and Ratings

based on 1.1k reviews

3.3/5

Rating in categories

3.5

Skill development

3.0

Work-life balance

3.1

Salary

2.8

Job security

3.0

Company culture

3.2

Promotions

3.1

Work satisfaction

Explore 1.1k Reviews and Ratings
Software Engineer - AI/ML

Noida

2-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.2k salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Software Developer
1k salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Senior Software Engineer
644 salaries
unlock blur

₹4.4 L/yr - ₹10.5 L/yr

Team Lead
282 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