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

Clear (1)

Chetu Machine Learning Software Engineer Interview Questions, Process, and Tips

Updated 25 Jun 2024

Chetu Machine Learning Software Engineer Interview Experiences

1 interview found

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.
  • 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

Uncia Technologies

Follow success, join our journey

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

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

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. 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 reuse 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 methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

Interview Questionnaire 

1 Question

  • Q1. About my college projects and about my passion

I applied via Recruitment Consulltant and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Standard Aptitude questions

Round 2 - Coding Test 

Based on strings and array

Round 3 - One-on-one 

(1 Question)

  • Q1. Background questions and technical questions related to problem solved

Interview Preparation Tips

Interview preparation tips for other job seekers - Mindtree is one of the best companies, i really miss working there.
It's more on your self development and your carrier.

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)

I applied via Company Website and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Self introduction

Interview Preparation Tips

Interview preparation tips for other job seekers - say individual ideas,plans, story's.say different opinions,speek confidentially, correctly answer Yes or no questions, correctly say interested and confidential job,
Contribute & help others!
anonymous
You can choose to be anonymous

Chetu Interview FAQs

How many rounds are there in Chetu Machine Learning Software Engineer interview?
Chetu interview process usually has 4 rounds. The most common rounds in the Chetu interview process are Aptitude Test, Technical and HR.
What are the top questions asked in Chetu Machine Learning Software Engineer interview?

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

  1. Remove space from given dataframe and concat the first and last name and add ne...read more
  2. Create simple ANN network using Tensorfl...read more
  3. Create the virtual environment using c...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

SALARIES

Adobe

JOBS

Adobe

No Jobs

SALARIES

Adobe

SALARIES

UST

SALARIES

Adobe

JOBS

Adobe

No Jobs

SALARIES

UST

SALARIES

Adobe

Tell us how to improve this page.

Chetu Machine Learning Software Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Tide Business Finance Platform

Thrive at work, live fully - experience balance like never before!

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 788 Interviews
Globant Interview Questions
3.8
 • 172 Interviews
View all
Software Engineer
1.2k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
645 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
264 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
222 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Chetu with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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