Upload Button Icon Add office photos

Filter interviews by

Thirumoolar Software ml engineer Interview Questions and Answers

Updated 18 Jul 2024

Thirumoolar Software ml engineer Interview Experiences

3 interviews found

ml engineer Interview Questions & Answers

user image Anonymous

posted on 5 Jun 2024

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

I applied via LinkedIn and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Actually it was very easy, anyone with basic interview knowledge can attend this

Round 2 - One-on-one 

(2 Questions)

  • Q1. Types of ML algorithms
  • Ans. 

    ML algorithms are techniques used to enable machines to learn from data and make predictions or decisions without being explicitly programmed.

    • Supervised learning: algorithms learn from labeled training data, e.g. linear regression, support vector machines

    • Unsupervised learning: algorithms find patterns in data without labeled responses, e.g. clustering, dimensionality reduction

    • Reinforcement learning: algorithms learn to...

  • Answered by AI
  • Q2. What is Support vector machine?
  • Ans. 

    Support vector machine is a supervised machine learning algorithm used for classification and regression tasks.

    • SVM finds the hyperplane that best separates the classes in the feature space

    • It works well for high-dimensional data and is effective in cases with clear margin of separation

    • Can handle non-linear data by using kernel trick to map data into higher dimensional space

    • Popular kernels include linear, polynomial, rad

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be clear about the topics you know and be confident

Skills evaluated in this interview

ml engineer Interview Questions & Answers

user image Anonymous

posted on 18 Jul 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Conduct online and very easy questions

Round 2 - Technical 

(2 Questions)

  • Q1. Simple question asked from ml and data science concepts
  • Q2. Python programing

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont go for this company because they are asking money for training period

ml engineer Interview Questions Asked at Other Companies

asked in Air India
Q1. How to evaluate regression models? explain r squared and adjusted ... read more
asked in Air India
Q2. bagging and boosting and their difference, what is ensemble model ... read more
asked in Air India
Q3. Explain working of decision trees, how to select parent and child ... read more
asked in Air India
Q4. What does correlation mean? what is the interpretation if the cor ... read more
asked in Air India
Q5. create dictionary in python from 2 list and key values, sql query ... read more

ml engineer Interview Questions & Answers

user image Praveen Kumar

posted on 27 Mar 2024

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

I applied via LinkedIn and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Topic is machine learning and AI

Round 2 - Coding Test 

Python programming coding

Round 3 - One-on-one 

(2 Questions)

  • Q1. Hr aked me about my family and me
  • Q2. AND DISCUSS MY SALLERY AND NO ONE ASKED ME ABOUT THE MONEY BUT AFTER THE INTERVIEW ONE PERSONE IS CALL ME AND THEY TOLD ME YOU NEED TO PAY MONEY FOR ONBOARDING 1.25LAKS AND AND OTHER 1.75 IS DITECT IN YOU...

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic python coding questions
  • Q2. Nlp, ml related questions
Round 2 - Technical 

(2 Questions)

  • Q1. Coding in python
  • Q2. Questions on the project

I applied via Job Portal and was interviewed in Aug 2021. There were 2 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 - One-on-one 

(1 Question)

  • Q1. Questions related to college projects.

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy Interview Process and Great projects.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between Precision and Recall?
  • Ans. 

    Precision is the ratio of correctly predicted positive observations to the total predicted positive observations, while Recall is the ratio of correctly predicted positive observations to the all observations in actual class.

    • Precision focuses on the accuracy of positive predictions, while Recall focuses on the proportion of actual positives that were correctly identified.

    • Precision = TP / (TP + FP)

    • Recall = TP / (TP + FN...

  • Answered by AI
  • Q2. What are the hyperparameters of Random forest?
  • Ans. 

    Hyperparameters of Random Forest include number of trees, max depth of trees, minimum samples per leaf, and maximum features.

    • Number of trees: Determines the number of decision trees in the forest.

    • Max depth of trees: Controls the maximum depth of each decision tree.

    • Minimum samples per leaf: Specifies the minimum number of samples required to be at a leaf node.

    • Maximum features: Determines the maximum number of features t

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. What are python decorators
  • Ans. 

    Python decorators are functions that modify the behavior of other functions or methods.

    • Decorators are denoted by the @ symbol followed by the decorator function name.

    • They are commonly used for adding functionality to existing functions without modifying their code.

    • Decorators can be used for logging, timing, authentication, caching, etc.

    • Example: @staticmethod decorator in Python is used to define a method that is not bo

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Only one round was there

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About yourself and projects
  • Q2. Mostly questions related to project, technology involve etc.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is linear regression
  • Ans. 

    Linear regression is a statistical method used to model the relationship between a dependent variable and one or more independent variables.

    • Linear regression aims to find the best-fitting straight line that describes the relationship between variables.

    • It is commonly used for predicting numerical values based on input features.

    • The equation for a simple linear regression model is y = mx + b, where y is the dependent vari...

  • Answered by AI
  • Q2. What is support vector machine
  • Ans. 

    Support Vector Machine (SVM) is a supervised machine learning algorithm used for classification and regression tasks.

    • SVM finds the hyperplane that best separates different classes in the feature space

    • It works by maximizing the margin between the closest data points from different classes

    • SVM can handle non-linear data by using kernel functions to map data into higher-dimensional space

    • Examples: classifying emails as spam...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is difference between object detection and segmentation in image
  • Ans. 

    Object detection identifies objects in an image, while segmentation assigns a label to each pixel in the image.

    • Object detection involves identifying and locating objects within an image, often using bounding boxes.

    • Segmentation assigns a class label to each pixel in the image, creating a pixel-wise mask for each object.

    • Object detection is typically used when the goal is to identify and locate multiple objects in an imag...

  • Answered by AI
  • Q2. Technology used in camera sensor
  • Ans. 

    Camera sensors use various technologies such as CMOS and CCD to capture images.

    • CMOS (Complementary Metal-Oxide-Semiconductor) sensors are commonly used in modern digital cameras for their low power consumption and high image quality.

    • CCD (Charge-Coupled Device) sensors are another type of sensor used in some cameras, known for their high-quality images but higher power consumption.

    • Other technologies used in camera senso...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write a code to sort a list without using inbuild function
  • Ans. 

    Implement a sorting algorithm to sort a list without using built-in functions.

    • Use a common sorting algorithm like bubble sort, selection sort, or insertion sort.

    • Iterate through the list and compare adjacent elements to swap them if necessary.

    • Repeat the process until the list is sorted in ascending order.

  • Answered by AI
  • Q2. Explain web scraping using code
  • Ans. 

    Web scraping is the process of extracting data from websites using code.

    • Identify the website and the specific data to be extracted

    • Use libraries like BeautifulSoup or Scrapy in Python to parse HTML

    • Inspect the website's HTML structure to locate the data

    • Write code to extract the data and store it in a desired format

  • Answered by AI

Skills evaluated in this interview

Thirumoolar Software Interview FAQs

How many rounds are there in Thirumoolar Software ml engineer interview?
Thirumoolar Software interview process usually has 2-3 rounds. The most common rounds in the Thirumoolar Software interview process are Aptitude Test, One-on-one Round and Coding Test.
What are the top questions asked in Thirumoolar Software ml engineer interview?

Some of the top questions asked at the Thirumoolar Software ml engineer interview -

  1. What is Support vector machi...read more
  2. Types of ML algorit...read more
  3. AND DISCUSS MY SALLERY AND NO ONE ASKED ME ABOUT THE MONEY BUT AFTER THE INTER...read more

Tell us how to improve this page.

Thirumoolar Software ml engineer Interview Process

based on 3 interviews

1 Interview rounds

  • Aptitude Test Round
View more
Thirumoolar Software ml engineer Salary
based on 4 salaries
₹2.7 L/yr - ₹3.5 L/yr
71% less than the average ml engineer Salary in India
View more details

Thirumoolar Software ml engineer Reviews and Ratings

based on 5 reviews

3.6/5

Rating in categories

3.6

Skill development

3.4

Work-life balance

3.3

Salary

3.3

Job security

3.6

Company culture

3.6

Promotions

3.6

Work satisfaction

Explore 5 Reviews and Ratings
Machine Learning Engineer
7 salaries
unlock blur

₹3 L/yr - ₹3 L/yr

Front end Developer
5 salaries
unlock blur

₹0.8 L/yr - ₹9 L/yr

Artificial Intelligence Researcher
5 salaries
unlock blur

₹6 L/yr - ₹6 L/yr

Data Analyst
4 salaries
unlock blur

₹4.2 L/yr - ₹4.3 L/yr

HR Executive Recruiter
4 salaries
unlock blur

₹1.2 L/yr - ₹2.4 L/yr

Explore more salaries
Compare Thirumoolar Software with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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