Upload Button Icon Add office photos

Filter interviews by

Feynn Labs Data Science Intern Interview Questions and Answers

Updated 10 Jan 2025

11 Interview questions

🔥 Asked by recruiter 3 times
A Data Science Intern was asked 12mo ago
Q. What is supervised learning?
Ans. 

Supervised learning is a type of machine learning where models are trained on labeled data to make predictions or classifications.

  • Involves training a model on a labeled dataset, where each input has a corresponding output.

  • Common algorithms include Linear Regression, Decision Trees, and Support Vector Machines.

  • Used in applications like spam detection (classifying emails) and image recognition (identifying objects i...

A Data Science Intern was asked 12mo ago
Q. What is the difference between KNN and K-Means?
Ans. 

KNN is a supervised learning algorithm used for classification and regression, while K Means is an unsupervised clustering algorithm.

  • KNN stands for K-Nearest Neighbors and assigns a class label based on majority voting of its k-nearest neighbors.

  • K Means is a clustering algorithm that partitions data into k clusters based on similarity.

  • KNN requires labeled data for training, while K Means does not need labeled data...

Data Science Intern Interview Questions Asked at Other Companies

Q1. Rotate Matrix by 90 Degrees Problem Statement Given a square matr ... read more
Q2. Given an array (duplicates allowed), how do you find the second h ... read more
asked in Altimetrik
Q3. What is gradient descent, why does gradient descent follow tan an ... read more
asked in Uber
Q4. What new feature would you like to add to Uber?
asked in Siemens
Q5. How do you implement a machine learning algorithm based on a give ... read more
A Data Science Intern was asked 12mo ago
Q. What is the range of Cross Entropy Loss?
Ans. 

Cross entropy loss measures the difference between two probability distributions.

  • Range of cross entropy loss is [0, infinity)

  • Lower values indicate better model performance

  • Commonly used in classification tasks

🔥 Asked by recruiter 3 times
A Data Science Intern was asked 12mo ago
Q. What is the difference between Logistic and Linear Regression?
Ans. 

Logistic regression is used for binary classification while linear regression is used for regression tasks.

  • Logistic regression predicts the probability of a binary outcome (0 or 1) based on one or more independent variables.

  • Linear regression predicts a continuous outcome based on one or more independent variables.

  • Logistic regression uses a sigmoid function to map predicted values between 0 and 1, while linear regr...

A Data Science Intern was asked 12mo ago
Q. What is the difference between random and ordered partitioning?
Ans. 

Random partition involves splitting data randomly, while ordering partition involves splitting data based on a specific order.

  • Random partition randomly divides data into subsets without any specific order.

  • Ordering partition divides data into subsets based on a specific order, such as time or alphabetical order.

  • Random partition is useful for creating training and testing sets for machine learning models.

  • Ordering pa...

A Data Science Intern was asked
Q. What is a support vector machine?
Ans. 

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

  • Support Vector Machine finds the hyperplane that best separates different classes in the feature space

  • It works by maximizing the margin between the hyperplane and the nearest data points, known as support vectors

  • SVM can handle both linear and non-linear data by using different kernel functions like linear...

A Data Science Intern was asked 5mo ago
Q. What is random forest? What it is called random?
Ans. 

Random forest is an ensemble learning method used for classification and regression tasks, consisting of multiple decision trees.

  • Random forest is made up of multiple decision trees, where each tree is built using a subset of the training data and a random subset of features.

  • During prediction, each tree in the forest independently predicts the output, and the final output is determined by a majority vote (classific...

Are these interview questions helpful?
A Data Science Intern was asked 5mo ago
Q. What is svm? Any project you perform using this?
Ans. 

SVM stands for Support Vector Machine, 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 can handle both linear and non-linear data by using different kernel functions.

  • Example project: Sentiment analysis using SVM to classify movie reviews as positive or negative.

A Data Science Intern was asked 12mo ago
Q. What is linear and logistics.?
Ans. 

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

  • Linear regression is used for predicting continuous outcomes, while logistic regression is used for predicting binary outcomes.

  • In linear regression, the relationship between the independent and dependent vari...

A Data Science Intern was asked
Q. What is linear regression and logistics regression?
Ans. 

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

  • Linear regression is used for predicting continuous outcomes, while logistic regression is used for predicting binary outcomes.

  • Linear regression assumes a linear relationship between the independent and depen...

Feynn Labs Data Science Intern Interview Experiences

5 interviews found

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

I appeared for an interview in Jul 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What is random forest? What it is called random?
  • Ans. 

    Random forest is an ensemble learning method used for classification and regression tasks, consisting of multiple decision trees.

    • Random forest is made up of multiple decision trees, where each tree is built using a subset of the training data and a random subset of features.

    • During prediction, each tree in the forest independently predicts the output, and the final output is determined by a majority vote (classification...

  • Answered by AI
  • Q2. What is svm? Any project you perform using this?
  • Ans. 

    SVM stands for Support Vector Machine, 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 can handle both linear and non-linear data by using different kernel functions.

    • Example project: Sentiment analysis using SVM to classify movie reviews as positive or negative.

  • Answered by AI
Round 2 - Coding Test 

Python question
SQL queries
Form filling paid

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

(4 Questions)

  • Q1. Difference between Random and ordering partition
  • Ans. 

    Random partition involves splitting data randomly, while ordering partition involves splitting data based on a specific order.

    • Random partition randomly divides data into subsets without any specific order.

    • Ordering partition divides data into subsets based on a specific order, such as time or alphabetical order.

    • Random partition is useful for creating training and testing sets for machine learning models.

    • Ordering partiti...

  • Answered by AI
  • Q2. Difference between Logistic and Linear Regression
  • Ans. 

    Logistic regression is used for binary classification while linear regression is used for regression tasks.

    • Logistic regression predicts the probability of a binary outcome (0 or 1) based on one or more independent variables.

    • Linear regression predicts a continuous outcome based on one or more independent variables.

    • Logistic regression uses a sigmoid function to map predicted values between 0 and 1, while linear regressio...

  • Answered by AI
  • Q3. Difference between KNN and K Means
  • Ans. 

    KNN is a supervised learning algorithm used for classification and regression, while K Means is an unsupervised clustering algorithm.

    • KNN stands for K-Nearest Neighbors and assigns a class label based on majority voting of its k-nearest neighbors.

    • K Means is a clustering algorithm that partitions data into k clusters based on similarity.

    • KNN requires labeled data for training, while K Means does not need labeled data.

    • KNN ...

  • Answered by AI
  • Q4. Range of Cross Entropy Loss
  • Ans. 

    Cross entropy loss measures the difference between two probability distributions.

    • Range of cross entropy loss is [0, infinity)

    • Lower values indicate better model performance

    • Commonly used in classification tasks

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Introduced yourself.?
  • Q2. What is linear and logistics.?
  • Ans. 

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

    • Linear regression is used for predicting continuous outcomes, while logistic regression is used for predicting binary outcomes.

    • In linear regression, the relationship between the independent and dependent variables...

  • Answered by AI
Round 2 - Assignment 

Data Science Project

Interview Preparation Tips

Interview preparation tips for other job seekers - Trying to increasing our job vacancies and actively looking to hire freshers. We believe this will bring new energy and innovative ideas to our team.

Data Science Intern Interview Questions & Answers

user image Deeksha Verma

posted on 18 Apr 2024

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

(3 Questions)

  • Q1. What is linear regression and logistics regression?
  • Ans. 

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

    • Linear regression is used for predicting continuous outcomes, while logistic regression is used for predicting binary outcomes.

    • Linear regression assumes a linear relationship between the independent and dependent ...

  • Answered by AI
  • Q2. What is central limit theorem? Why we use it
  • Ans. 

    Central Limit Theorem states that the sampling distribution of the sample mean approaches a normal distribution as the sample size increases.

    • Central Limit Theorem is used to make inferences about a population mean based on the sample mean.

    • It allows us to use the properties of the normal distribution to estimate population parameters.

    • It is essential in hypothesis testing and constructing confidence intervals.

    • For example...

  • Answered by AI
  • Q3. What is support vector machine?
  • Ans. 

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

    • Support Vector Machine finds the hyperplane that best separates different classes in the feature space

    • It works by maximizing the margin between the hyperplane and the nearest data points, known as support vectors

    • SVM can handle both linear and non-linear data by using different kernel functions like linear, pol...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. What are supervied learning
  • Ans. 

    Supervised learning is a type of machine learning where models are trained on labeled data to make predictions or classifications.

    • Involves training a model on a labeled dataset, where each input has a corresponding output.

    • Common algorithms include Linear Regression, Decision Trees, and Support Vector Machines.

    • Used in applications like spam detection (classifying emails) and image recognition (identifying objects in pic...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Feynn Labs?
Ask anonymously on communities.

Interview questions from similar companies

Intern Interview Questions & Answers

TCS user image Mithun M Kumar

posted on 10 May 2021

I applied via Campus Placement and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. OOP concepts, Networking basics,

Interview Preparation Tips

Interview preparation tips for other job seekers - Its easy to pass the interview for fresher, you need to have good aptitude skills

Intern Interview Questions & Answers

Capgemini user image simran sharma

posted on 12 May 2021

Interview Questionnaire 

1 Question

  • Q1. Database related
Are these interview questions helpful?

I appeared for an interview in Aug 2016.

Interview Questionnaire 

3 Questions

  • Q1. To reverse Linked List in pair of three.
  • Q2. Search a number in sorted rotated array.
  • Ans. 

    Search a number in sorted rotated array.

    • Use binary search to find the pivot point where the array is rotated

    • Determine which half of the array the target number may be in

    • Perform binary search on the appropriate half of the array to find the target number

  • Answered by AI
  • Q3. A dynamic programming question was there to find a path in matrix.

Interview Preparation Tips

Round: Technical Interview
Experience: Interviewer mainly focused on problem solving skill.

Skills: Algorithm
College Name: KIIT University

Skills evaluated in this interview

Intern Interview Questions & Answers

Amazon user image Himani Anand1

posted on 28 Oct 2015

Interview Questionnaire 

1 Question

  • Q1. Binary Tree concepts

Interview Preparation Tips

Round: Test
Experience:
Tips:
Duration: 120 minutes
Total Questions: 22

Round: Technical Interview
Experience:
Tips:

General Tips:
Skill Tips:
Skills: Algorithmic Approach To Problem Solving, Data Structures, Core Courses Concepts
College Name: IIM Lucknow

Intern Interview Questions & Answers

Accenture user image Vishwas Nandan R

posted on 4 Nov 2015

Interview Questionnaire 

13 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a highly motivated individual with a passion for learning and a strong work ethic.

    • I have a degree in computer science and have completed several internships in the tech industry.

    • I am proficient in programming languages such as Java, Python, and C++.

    • I have experience working in both team and individual settings, and am comfortable with both.

    • I am a quick learner and am always looking for ways to improve my skills an...

  • Answered by AI
  • Q2. Why consulting?
  • Ans. 

    Consulting offers the opportunity to work on diverse projects, solve complex problems, and make a meaningful impact on clients' businesses.

    • Consulting provides exposure to a variety of industries and business functions.

    • Consultants work on challenging projects that require creative problem-solving skills.

    • Consultants have the opportunity to make a significant impact on clients' businesses.

    • Consulting offers a fast-paced an...

  • Answered by AI
  • Q3. Why Accenture?
  • Ans. 

    Accenture is a global company with a diverse range of clients and projects, offering opportunities for growth and development.

    • Accenture has a strong reputation in the industry and is known for its innovative solutions

    • The company has a global presence, providing opportunities to work with clients from different countries and cultures

    • Accenture offers a wide range of services, from strategy consulting to technology implem...

  • Answered by AI
  • Q4. Work ex related questions
  • Q5. Calculate ROI of your project at Hero Motocorp
  • Ans. 

    The ROI of my project at Hero Motocorp was calculated by comparing the project's benefits to its costs.

    • Identified all costs associated with the project

    • Quantified the benefits of the project

    • Calculated the net profit of the project

    • Divided the net profit by the total cost of the project to get the ROI

    • Example: If the net profit was $100,000 and the total cost was $50,000, the ROI would be 200%

  • Answered by AI
  • Q6. Which subject did you like the most in first term?Explain economies of scale? Why does the cost increase after certain volume? How can that be avoided?
  • Ans. 

    I enjoyed studying economics the most in my first term. Economies of scale occur when production costs decrease as output increases. However, after a certain volume, costs increase due to diminishing returns.

    • Economies of scale refer to the cost advantages that a business can achieve by increasing production output.

    • As production increases, fixed costs are spread over a larger output, resulting in lower average costs.

    • How...

  • Answered by AI
  • Q7. Repeated questioning on why management? and why consulting?
  • Q8. How comfortable would you be in applying your work ex. related learnings in a bank?
  • Q9. Questions related to my work ex at Hero Motocorp
  • Q10. Explain ABC Analysis
  • Ans. 

    ABC Analysis is a technique used in inventory management to categorize items based on their importance.

    • Items are categorized into three groups: A, B, and C.

    • Group A items are the most important and require the most attention.

    • Group C items are the least important and require the least attention.

    • The analysis is based on the Pareto principle, which states that 80% of the effects come from 20% of the causes.

    • ABC Analysis hel...

  • Answered by AI
  • Q11. Questions related to Flipkart’s Big billion Day - What is the motive behind Flipkart’s big billion day?
  • Q12. Given the negative publicity that flipkart witnessed, would you as an entrepreneur have such a sale for your company?
  • Ans. 

    As an entrepreneur, I would prioritize customer satisfaction and ethical business practices over short-term gains.

    • Negative publicity can have long-lasting effects on a company's reputation and customer trust.

    • Instead of focusing on sales at any cost, I would prioritize building a loyal customer base through quality products and excellent customer service.

    • I would also ensure that my company operates ethically and transpa...

  • Answered by AI
  • Q13. Estimate the customers that flipkart would have gained due to the Big billion day

Interview Preparation Tips

Round: Other Interview
Experience: Questions were mostly related to Flipkart’s Big Billion Day
1) Guesstimate the number of customers flipkart would have gained due to the Big Billion Day sale.
- Calculated it for a smaller area taking IIML as sample and suggested about extrapolating these numbers to a city like Lucknow or maybe even India
- Mentioned about the skew in the results if extrapolation was done with IIML as sample.
- Explained about the error corrections that must be considered while extrapolating like Computer literacy, awareness about the sale, internet availability etc.

General Tips: Structured approach to all the answers. Be confident throughout the process and involve the interviewers. Research on the various divisions of Accenture and the kind of projects taken up by those divisions
Know your CV well
Preparation of HR answers is crucial
Skills:
College Name: IIM Lucknow

Feynn Labs Interview FAQs

How many rounds are there in Feynn Labs Data Science Intern interview?
Feynn Labs interview process usually has 1-2 rounds. The most common rounds in the Feynn Labs interview process are Technical, Assignment and One-on-one Round.
How to prepare for Feynn Labs Data Science Intern interview?
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 Feynn Labs. The most common topics and skills that interviewers at Feynn Labs expect are Python, Matplotlib, Numpy, Pandas and Data Entry.
What are the top questions asked in Feynn Labs Data Science Intern interview?

Some of the top questions asked at the Feynn Labs Data Science Intern interview -

  1. What is linear regression and logistics regressi...read more
  2. What is central limit theorem? Why we use...read more
  3. What is svm? Any project you perform using th...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 7 interview experiences

Difficulty level

Moderate 50%
Hard 50%

Duration

Less than 2 weeks 100%
View more
Feynn Labs Data Science Intern Salary
based on 4 salaries
₹0.5 L/yr - ₹1.1 L/yr
67% less than the average Data Science Intern Salary in India
View more details

Feynn Labs Data Science Intern Reviews and Ratings

based on 6 reviews

3.5/5

Rating in categories

3.8

Skill development

3.9

Work-life balance

2.6

Salary

2.3

Job security

3.5

Company culture

2.7

Promotions

3.5

Work satisfaction

Explore 6 Reviews and Ratings
Machine Learning Intern
66 salaries
unlock blur

₹0.5 L/yr - ₹7.2 L/yr

Machine Learning Engineer
5 salaries
unlock blur

₹1 L/yr - ₹1.5 L/yr

Data Analyst
4 salaries
unlock blur

₹1 L/yr - ₹5 L/yr

Data Analyst Intern
4 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

Data Science Intern
4 salaries
unlock blur

₹0.5 L/yr - ₹1.1 L/yr

Explore more salaries
Compare Feynn Labs with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview