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 and Answers for Freshers

Updated 26 Jun 2025
Popular Designations

25 Interview questions

A Full Stack Developer was asked 6mo ago
Q. What is the event loop?
Ans. 

The event loop is a core concept in JavaScript that manages asynchronous operations and executes code in a non-blocking manner.

  • The event loop allows JavaScript to perform non-blocking I/O operations despite being single-threaded.

  • It works with a call stack, a callback queue, and a message queue to handle asynchronous tasks.

  • When an asynchronous operation completes, its callback is pushed to the callback queue.

  • The ev...

View all Full Stack Developer interview questions
A Machine Learning Software Engineer was asked 12mo ago
Q. Write the code to build an XGBoost model.
Ans. 

Building an xgboost model involves training a gradient boosting algorithm for classification or regression tasks.

  • Install xgboost library using pip install xgboost

  • Import necessary libraries like xgboost, numpy, and pandas

  • Prepare the data by splitting into training and testing sets

  • Instantiate an xgboost classifier or regressor object

  • Fit the model on the training data using the fit method

  • Make predictions on the test ...

View all Machine Learning Software Engineer interview questions
A Machine Learning Software Engineer was asked 12mo ago
Q. How do you create a virtual environment using the command line?
Ans. 

Creating a virtual environment in CMD helps manage dependencies for Python projects.

  • Open Command Prompt (cmd) on your computer.

  • Navigate to your project directory using 'cd path_to_your_project'.

  • Run 'python -m venv env' to create a virtual environment named 'env'.

  • Activate the virtual environment with 'env\Scripts\activate' on Windows.

  • To deactivate, simply type 'deactivate' in the command prompt.

View all Machine Learning Software Engineer interview questions
A Machine Learning Software Engineer was asked 12mo ago
Q. Create a simple ANN network using TensorFlow.
Ans. 

Creating a simple Artificial Neural Network (ANN) using Tensorflow.

  • Import the necessary libraries like tensorflow and numpy.

  • Define the input layer, hidden layers, and output layer.

  • Compile the model with appropriate loss function and optimizer.

  • Train the model using training data.

  • Evaluate the model using test data.

View all Machine Learning Software Engineer interview questions
A Software Engineer was asked
Q. What are the differences between JavaScript and jQuery anonymous functions in Java?
Ans. 

JavaScript anonymous functions in jQuery are used to create functions without a name, while JavaScript functions are named functions.

  • JavaScript functions are named and can be reused multiple times.

  • jQuery anonymous functions are used for event handling and callbacks.

  • JavaScript functions can be defined using the function keyword, while jQuery anonymous functions are created using the $ symbol.

View all Software Engineer interview questions
A Software Developer was asked
Q. What are the concepts of OOP, and how are they used in .NET?
Ans. 

OOP stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

  • OOP focuses on creating objects that contain data and methods to manipulate that data.

  • In DotNet, OOP is implemented using classes and objects. Classes define the blueprint for objects, while objects are instances of classes.

  • Encapsulation, inheritance, and polymorphism are key principles of OOP that are utilized in Do...

View all Software Developer interview questions
A Software Developer was asked
Q. What is a stored procedure in MS SQL?
Ans. 

A stored procedure in MS SQL is a precompiled collection of SQL statements that can be saved and reused.

  • Stored procedures can improve performance by reducing the amount of data sent over the network.

  • They can be used to encapsulate business logic and provide a layer of security by controlling access to data.

  • Stored procedures can accept input parameters and return output parameters or result sets.

  • Example: CREATE PRO...

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. What are the types of joins in MS SQL?
Ans. 

Types of joins in Ms Sql include inner join, left join, right join, and full outer join.

  • Inner join: Returns rows when there is at least one match in both tables.

  • Left join: Returns all rows from the left table and the matched rows from the right table.

  • Right join: Returns all rows from the right table and the matched rows from the left table.

  • Full outer join: Returns rows when there is a match in one of the tables.

View all Software Developer interview questions
A Software Developer was asked
Q. What is MVC and what is its role in .NET?
Ans. 

MVC stands for Model-View-Controller. It is a design pattern used in DotNet for separating concerns in an application.

  • Model represents the data and business logic of the application.

  • View is responsible for displaying the user interface.

  • Controller handles user input and updates the model and view accordingly.

  • MVC helps in achieving separation of concerns, making the code more organized and maintainable.

  • Example: In a...

View all Software Developer interview questions
A Software Engineer was asked
Q. What is the difference 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...

View all Software Engineer interview questions

Chetu Interview Experiences for Freshers

20 interviews found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic aptitude test with technical and non technical question

Round 2 - Technical 

(1 Question)

  • Q1. What is event loop
  • Ans. 

    The event loop is a core concept in JavaScript that manages asynchronous operations and executes code in a non-blocking manner.

    • The event loop allows JavaScript to perform non-blocking I/O operations despite being single-threaded.

    • It works with a call stack, a callback queue, and a message queue to handle asynchronous tasks.

    • When an asynchronous operation completes, its callback is pushed to the callback queue.

    • The event l...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
  • Q1. Some basic html, css, js and reactjs questions..
  • Q2. Basic questions from html css js and reactjs
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. All oops concept
  • Ans. 

    Object-oriented programming concepts like inheritance, encapsulation, polymorphism, and abstraction.

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

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only the ne...

  • Answered by AI
  • Q2. Basic sql query

Interview Preparation Tips

Interview preparation tips for other job seekers - 1 round was aptitude round after that 2 technical round are conducted

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Dec 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Mcq on sql, python, syntax, english sentence

Round 2 - Phone interview 

(2 Questions)

  • Q1. Question on dictionary
  • Q2. Question on data leakage, bias variance trade off,
Round 3 - Technical 

(4 Questions)

  • Q1. Build xg bost model(actaul code)
  • Ans. 

    Building an xgboost model involves training a gradient boosting algorithm for classification or regression tasks.

    • Install xgboost library using pip install xgboost

    • Import necessary libraries like xgboost, numpy, and pandas

    • Prepare the data by splitting into training and testing sets

    • Instantiate an xgboost classifier or regressor object

    • Fit the model on the training data using the fit method

    • Make predictions on the test data ...

  • Answered by AI
  • Q2. Create the virtual environment using cmd.
  • Ans. 

    Creating a virtual environment in CMD helps manage dependencies for Python projects.

    • Open Command Prompt (cmd) on your computer.

    • Navigate to your project directory using 'cd path_to_your_project'.

    • Run 'python -m venv env' to create a virtual environment named 'env'.

    • Activate the virtual environment with 'env\Scripts\activate' on Windows.

    • To deactivate, simply type 'deactivate' in the command prompt.

  • Answered by AI
  • Q3. Remove space from given dataframe and concat the first and last name and add new column to dataframe.
  • Ans. 

    Remove spaces from dataframe, concatenate first and last name, and add new column.

    • Use str.replace() to remove spaces from dataframe columns.

    • Use str.cat() to concatenate first and last name.

    • Use df['new_column'] = concatenated_names to add new column.

  • Answered by AI
  • Q4. Create simple ANN network using Tensorflow.
  • Ans. 

    Creating a simple Artificial Neural Network (ANN) using Tensorflow.

    • Import the necessary libraries like tensorflow and numpy.

    • Define the input layer, hidden layers, and output layer.

    • Compile the model with appropriate loss function and optimizer.

    • Train the model using training data.

    • Evaluate the model using test data.

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. Salary discussion?
  • Q2. Asking to come to office location noida to received offer letter
  • Q3. No clarity on what CTC they are offering.

Interview Preparation Tips

Topics to prepare for Chetu Machine Learning Software Engineer interview:
  • Deep Learning
  • Machine Learning
  • Python
  • Data Structures

Skills evaluated in this interview

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

I applied via Approached by Company

Round 1 - Aptitude Test 

There is MCQ question categories reasoning math logical puzzle etc.

Round 2 - Technical 

(1 Question)

  • Q1. Question from java and android 1 Opps deep drive concept Encapsulation Abstraction Polymorphism Inheritance Use of keywords Var , val cons, static inline return break an...
Round 3 - Coding Test 

Assign some coding questions it will online on zoom and it will be final round

Interview Preparation Tips

Topics to prepare for Chetu Android Software Developer interview:
  • OOPS
  • Android SDK
  • Background service
  • Intent
  • coroutine
  • Daggr
  • hilt
Interview preparation tips for other job seekers - We confident and don’t try to make smart just
Redy for interview if you don’t know answer of question simply say sorry i don’t have remember and skip on next question okay be cool 😎
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was very easy

Round 2 - Technical 

(5 Questions)

  • Q1. What is OOP’s Concept and how using in DotNet
  • Ans. 

    OOP stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOP focuses on creating objects that contain data and methods to manipulate that data.

    • In DotNet, OOP is implemented using classes and objects. Classes define the blueprint for objects, while objects are instances of classes.

    • Encapsulation, inheritance, and polymorphism are key principles of OOP that are utilized in DotNet ...

  • Answered by AI
  • Q2. What is Mvc and what is the role in DotNet
  • Ans. 

    MVC stands for Model-View-Controller. It is a design pattern used in DotNet for separating concerns in an application.

    • Model represents the data and business logic of the application.

    • View is responsible for displaying the user interface.

    • Controller handles user input and updates the model and view accordingly.

    • MVC helps in achieving separation of concerns, making the code more organized and maintainable.

    • Example: In a DotN...

  • Answered by AI
  • Q3. What are the types of joins in Ms Sql
  • Ans. 

    Types of joins in Ms Sql include inner join, left join, right join, and full outer join.

    • Inner join: Returns rows when there is at least one match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full outer join: Returns rows when there is a match in one of the tables.

  • Answered by AI
  • Q4. What is store procedure in Ms Sql
  • Ans. 

    A stored procedure in MS SQL is a precompiled collection of SQL statements that can be saved and reused.

    • Stored procedures can improve performance by reducing the amount of data sent over the network.

    • They can be used to encapsulate business logic and provide a layer of security by controlling access to data.

    • Stored procedures can accept input parameters and return output parameters or result sets.

    • Example: CREATE PROCEDUR...

  • Answered by AI
  • Q5. What is the significance of Sql joins in database management
  • Ans. 

    Sql joins are used to combine rows from two or more tables based on a related column between them.

    • Joins are essential for retrieving data from multiple tables in a database

    • Types of joins include inner join, outer join, left join, and right join

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Chetu Software Developer interview:
  • Java Script
  • MS SQL Server
Interview preparation tips for other job seekers - My interview was very good, the interviewer was very nice, I got a lot of time to answer.

Skills evaluated in this interview

Devops Engineer Interview Questions & Answers

user image Amresh Sharma

posted on 18 Aug 2023

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

(1 Question)

  • Q1. About you your experience and communication skills
Round 3 - Technical 

(2 Questions)

  • Q1. Depends upon team leader Ask basics as well as the issue they are facing during their work.
  • Q2. Especially Linux file system How to mount additional disk Booting process Docker file structure
Round 4 - Technical 

(2 Questions)

  • Q1. Second technical round is depends upon the TL he can ask your experience and issues
  • Q2. And can ask questions about cloud AWS and azure
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Not so tough and you will learn a lot of things that are new to you

Round 2 - Aptitude Test 

The duration is about 90 minute

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

There main focus was on coding there were 10mcq of your coding s nd other section was for aptitude

Round 3 - One-on-one 

(2 Questions)

  • Q1. They will start asking from your core branch... As you take any language name you found your expertise they will ask deeply on tht topic
  • Q2. If you are from like electronic engineering student they will ask you questions from your related subject?!!

Interview Preparation Tips

Interview preparation tips for other job seekers - The company has 4 year bond and the package they provide is very less
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Multiple question math GK reasoning etc

Round 2 - Technical 

(5 Questions)

  • Q1. C# string and string builder
  • Ans. 

    String is mutable which mean one values assign then it can not change It create new object every execute String builder is immutable its values is changes dynamically means it can not create new object

  • Answered Anonymously
  • Q2. Sql question total 40 min on call
  • Ans. 

    Select *from table1,table and execute result Join queres

  • Answered Anonymously
  • Q3. Java script difference b/w java script and jQuery anonymous function in java
  • Q4. Constructor type casting its types
  • Ans. 

    Constructor type casting involves converting one data type to another in a constructor.

    • Constructor type casting is used to convert one data type to another in a constructor.

    • It can be done implicitly or explicitly depending on the languages.

    • For example, in Java, you can explicitly cast a data type in a constructor like this: int num = (int) doubleNum;

  • Answered by AI
  • Q5. C# reverse string program without using in build feature
  • Ans. 

    Reverse a string in C# without using built-in features

    • Create a character array from the input string

    • Use two pointers to swap characters at the beginning and end of the array

    • Continue swapping until the pointers meet in the middle

  • Answered by AI
Round 3 - Coding Test 

Sql queries and c# coding

Skills evaluated in this interview

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Chetu?
Ask anonymously on communities.

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. Remove space from given dataframe and concat the first and last name and add ne...read more
  2. What is the difference between delete and trunca...read more
  3. What is the significance of Sql joins in database managem...read more
What are the most common questions asked in Chetu HR round for freshers?

The most common HR questions asked in Chetu interview are for freshers -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. What are your salary expectatio...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.

Overall Interview Experience Rating

4.2/5

based on 11 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

AVASOFT Interview Questions
2.9
 • 173 Interviews
Oracle Cerner Interview Questions
3.7
 • 161 Interviews
Thomson Reuters Interview Questions
4.1
 • 124 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 111 Interviews
EbixCash Limited Interview Questions
3.9
 • 106 Interviews
SPRINKLR Interview Questions
3.0
 • 105 Interviews
Atlassian Interview Questions
3.4
 • 91 Interviews
View all

Chetu Reviews and Ratings

based on 1.2k reviews

3.3/5

Rating in categories

3.5

Skill development

3.1

Work-life balance

3.2

Salary

2.9

Job security

3.1

Company culture

3.3

Promotions

3.2

Work satisfaction

Explore 1.2k Reviews and Ratings
Male Executive Recruiter

Noida

3-5 Yrs

₹ 3.5-4 LPA

Technical Project Manager

Noida,

Ghaziabad

+1

6-11 Yrs

Not Disclosed

Explore more jobs
Software Engineer
1.2k salaries
unlock blur

₹2.2 L/yr - ₹11.2 L/yr

Software Developer
1k salaries
unlock blur

₹1 L/yr - ₹9.2 L/yr

Senior Software Engineer
659 salaries
unlock blur

₹4.4 L/yr - ₹12.5 L/yr

Team Lead
264 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Senior Software Developer
248 salaries
unlock blur

₹4.6 L/yr - ₹12 L/yr

Explore more salaries
Compare Chetu with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

R Systems International

3.3
Compare

EbixCash Limited

3.9
Compare
write
Share an Interview