SlideShare a Scribd company logo
By OnlineInterviewQuestions.com
Machine Learning Interview Questions
Q1. What is machine learning?
Machine learning is the use of algorithms and data to perform specific tasks. ML is the process of giving the
system the ability to learn from data using certain sophisticated algorithms. With the algorithms, you build a
certain mathematical model on the data to explore patterns or predict.
ML today is used in a wide variety of applications like Spotify, Netflix, Amazon, Google Search, etc.
Q2. What supervised and unsupervised machine learning?
Supervised and unsupervised are the two types of Machine learning algorithms available.
In the supervised type, the algorithms are applied to the known labeled data to formulate a model. Labeled data
means the data is tagged. With this data, the algorithm creates a model that is then applied to unknown data to
predict its outcome or tag it. Linear regression is a good example of supervised learning.
In the unsupervised type, the algorithm is applied to the unlabeled data. The data neither is classified nor
labeled, but the unsupervised algorithm is used to find the hidden structure with the unlabeled data. K-means
clustering algorithm is a good example of this type.
Q3. What is ROC curve?
ROC curve is a graphical plot to illustrate the ability of a classifier system. Basically, this curve tells you how
much a binary classifier system is capable of distinguishing between classes. This curve is plotted with TPR
(True Positive Rate) on the y-axis and FPR (False Positive Rate) on the x-axis. TPR is also known as
sensitivity recall or probability of detection and FPR is also known as the probability of false alarm.
Q4. What is the difference between classification and regression?
Regression is the process of estimating the mapping function (f) given the input value (x) to the continuous
output value (y). It is used to predict a value given the data. Here, labeled data is used to create a model or
function and this function is used to predict the value of unlabeled data. Linear or Logistic regression is a good
example of this type.
Classification is the process of categorizing the data. The classification model is created from using the
algorithm on the data so it is categorized mainly based on the similarity. Naive Bayes classifier is a good
example of this type.
Q5. What is Ensemble learning?
Ensemble learning is the process of applying multiple learning algorithms on a dataset to get better predictive
performance. By applying multiple algorithms the performance is improved while the likelihood of choosing a
wrong algorithm is reduced. The ensemble is a supervised type of learning algorithm as it can be trained and
used to make predictions.
Q6. Explain Navie Bayes?
Naive Bayes is a type of classification algorithm used to classify data based on the probabilistic classifiers. It is
a collection of classification algorithms that uses Baye’s theorem. This theorem finds the probability of an event
occurring given the probability of an already occurred other event.
//Baye’s Theorem mathematical equation
P(A/B) = P(B/A) * P(A) / P(B)
Q7. What is Reinforcement Learning?
Reinforced learning is a type of machine learning that employs a trial and error method to find a solution to the
problem. It is used in many software and machines to find the best possible path to get to the solution The agent
(i.e) the learning model takes the action to maximize the reward in a particular situation. There is no need for
labeled data in this type as the reinforcement agent decides what to do with the data given the task.
Q8. What Is training Set and test Set in a Machine Learning Model?
The training data is used by the algorithm to create a model. It used this data to learn and fit the model. In a
dataset, about 60 to 80 percent of data is allocated as training data. The testing data is used to test the accuracy
of the model trained with the training data. The model from the training data predicts the testing data to see how
well it works. Separating the dataset into training and testing data is important as you can minimize the effect of
data discrepancies and better understand the characteristics of the model.
Q9. What is Confusion Matrix?
Confusion Matrix, also known as the error matrix, is a table to describe the performance of the classification
model on the set of test data. The rows in this table represent the predicted class while the column presents the
actual class. In this table, the number of correct and incorrect predictions are described with the count values so
we can get insights into the errors and the type of errors made.
Q10. What are stages of building a model in Machine Learning?
The seven steps in building a machine learning model are,
Data Collection - In this step, we collect the data related to the problem.
Data Preparation - Here, we clean and organize the collected data based on the problem. We remove duplicate
data, error data, fill missing data, etc in this process
Choosing an algorithm - As the name suggests, in this stage, you choose the appropriate algorithm for the
problem.
Train the algorithm - We use the dataset to train the algorithm to create a model.
Evaluate the model - We use the test data from the dataset to find the accuracy of the model created.
Parameter Tuning - In this step, we tune the model parameters to improve its performance.
Make predictions - In this step, we apply the created model on a real dataset.
Q11. What Is Deep Learning?
Deep learning is a subfield of machine learning which uses an artificial neural network to learn from the
dataset. It is now the most popular ML technique which is used in many areas such as driverless cars, voice
control, hand’s free speakers, and more. This technique uses data directly from the image, sound, or video to
learn from it. The artificial neural network has multiple layers of nodes interconnected with each other. It is
loosely inspired by biological neural networks. Deep Learning achieves good accuracy when compared to other
models sometimes even exceeding human-level performance.
Q12. Explain KNN Algorithm?
KNN is a supervised algorithm used for both classification and regression. It uses labeled data to model a
function to produce an output from the unlabeled data. It uses the Euclidean distance formula to calculate the
distance between the data points for classification or prediction. It works on the principle that similar data points
must be close to each other so it uses the distance to calculate the similar points that are close to each other.
Q13. What Is a Random Forest?
Random forest is a supervised algorithm that is mainly used for classification problems. It creates a decision
tree from the data samples. Based on the decision tree, it predicts the result. Then, the voting process takes place
in which voting is performed for every predicted result. Finally, the most voted prediction result is taken as the
final prediction result. This technique is also used as regression as well.
Q14. What Is Decision Tree Classification?
The decision tree algorithm is a supervised learning algorithm that is used for classification as well as
regression problems. In this type, we infer the simple decision rules from the training data and create a decision
tree. We start from the root attribute of the decision tree with the record attribute and follow the branch of the
root that corresponds to the match. In this way, we jump to the next branch until the final classification is
reached.
Q15. What are collinearity and multicollinearity?
Collinearity is the association between two explanatory variables while the multicollinearity is the linear
related association between two or more explanatory variables. Collinearity occurs when two predictor variables
have a non-zero correlation in multiple regression. Non-collinearity occurs when two or more predictor
variables are inter-correlated.
Please Visit OnlineInterviewquestions.com to download more pdfs

More Related Content

What's hot

Selecting the Right Type of Algorithm for Various Applications - Phdassistance
Selecting the Right Type of Algorithm for Various Applications - PhdassistanceSelecting the Right Type of Algorithm for Various Applications - Phdassistance
Selecting the Right Type of Algorithm for Various Applications - Phdassistance
PhD Assistance
 
Supervised Unsupervised and Reinforcement Learning
Supervised Unsupervised and Reinforcement Learning Supervised Unsupervised and Reinforcement Learning
Supervised Unsupervised and Reinforcement Learning
Aakash Chotrani
 
Selecting the Right Type of Algorithm for Various Applications - Phdassistance
Selecting the Right Type of Algorithm for Various Applications - PhdassistanceSelecting the Right Type of Algorithm for Various Applications - Phdassistance
Selecting the Right Type of Algorithm for Various Applications - Phdassistance
PhD Assistance
 
Machine learning - AI
Machine learning - AIMachine learning - AI
Machine learning - AI
Witekio
 
Machine learning Algorithms
Machine learning AlgorithmsMachine learning Algorithms
Machine learning Algorithms
Walaa Hamdy Assy
 
Statistical learning intro
Statistical learning introStatistical learning intro
Statistical learning intro
Pei-shen (James) Wu
 
Supervised Machine Learning
Supervised Machine LearningSupervised Machine Learning
Supervised Machine Learning
Ankit Rai
 
Supervised learning
  Supervised learning  Supervised learning
Supervised learning
Learnbay Datascience
 
Supervised Machine Learning With Types And Techniques
Supervised Machine Learning With Types And TechniquesSupervised Machine Learning With Types And Techniques
Supervised Machine Learning With Types And Techniques
SlideTeam
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
Eng Teong Cheah
 
Machine Learning presentation.
Machine Learning presentation.Machine Learning presentation.
Machine Learning presentation.butest
 
Presentation on supervised learning
Presentation on supervised learningPresentation on supervised learning
Presentation on supervised learning
Tonmoy Bhagawati
 
ML Basics
ML BasicsML Basics
ML Basics
SrujanaMerugu1
 
Machine Learning - Deep Learning
Machine Learning - Deep LearningMachine Learning - Deep Learning
Machine Learning - Deep Learning
Adetimehin Oluwasegun Matthew
 
Applications in Machine Learning
Applications in Machine LearningApplications in Machine Learning
Applications in Machine Learning
Joel Graff
 
Supervised Machine Learning Techniques common algorithms and its application
Supervised Machine Learning Techniques common algorithms and its applicationSupervised Machine Learning Techniques common algorithms and its application
Supervised Machine Learning Techniques common algorithms and its application
Tara ram Goyal
 
Machine learning overview
Machine learning overviewMachine learning overview
Machine learning overview
prih_yah
 

What's hot (17)

Selecting the Right Type of Algorithm for Various Applications - Phdassistance
Selecting the Right Type of Algorithm for Various Applications - PhdassistanceSelecting the Right Type of Algorithm for Various Applications - Phdassistance
Selecting the Right Type of Algorithm for Various Applications - Phdassistance
 
Supervised Unsupervised and Reinforcement Learning
Supervised Unsupervised and Reinforcement Learning Supervised Unsupervised and Reinforcement Learning
Supervised Unsupervised and Reinforcement Learning
 
Selecting the Right Type of Algorithm for Various Applications - Phdassistance
Selecting the Right Type of Algorithm for Various Applications - PhdassistanceSelecting the Right Type of Algorithm for Various Applications - Phdassistance
Selecting the Right Type of Algorithm for Various Applications - Phdassistance
 
Machine learning - AI
Machine learning - AIMachine learning - AI
Machine learning - AI
 
Machine learning Algorithms
Machine learning AlgorithmsMachine learning Algorithms
Machine learning Algorithms
 
Statistical learning intro
Statistical learning introStatistical learning intro
Statistical learning intro
 
Supervised Machine Learning
Supervised Machine LearningSupervised Machine Learning
Supervised Machine Learning
 
Supervised learning
  Supervised learning  Supervised learning
Supervised learning
 
Supervised Machine Learning With Types And Techniques
Supervised Machine Learning With Types And TechniquesSupervised Machine Learning With Types And Techniques
Supervised Machine Learning With Types And Techniques
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
 
Machine Learning presentation.
Machine Learning presentation.Machine Learning presentation.
Machine Learning presentation.
 
Presentation on supervised learning
Presentation on supervised learningPresentation on supervised learning
Presentation on supervised learning
 
ML Basics
ML BasicsML Basics
ML Basics
 
Machine Learning - Deep Learning
Machine Learning - Deep LearningMachine Learning - Deep Learning
Machine Learning - Deep Learning
 
Applications in Machine Learning
Applications in Machine LearningApplications in Machine Learning
Applications in Machine Learning
 
Supervised Machine Learning Techniques common algorithms and its application
Supervised Machine Learning Techniques common algorithms and its applicationSupervised Machine Learning Techniques common algorithms and its application
Supervised Machine Learning Techniques common algorithms and its application
 
Machine learning overview
Machine learning overviewMachine learning overview
Machine learning overview
 

Similar to Machine Learning Interview Questions and Answers

Machine Learning.pptx
Machine Learning.pptxMachine Learning.pptx
Machine Learning.pptx
NitinSharma134320
 
machinecanthink-160226155704.pdf
machinecanthink-160226155704.pdfmachinecanthink-160226155704.pdf
machinecanthink-160226155704.pdf
PranavPatil822557
 
Supervised learning techniques and applications
Supervised learning techniques and applicationsSupervised learning techniques and applications
Supervised learning techniques and applications
Benjaminlapid1
 
Machine Can Think
Machine Can ThinkMachine Can Think
Machine Can Think
Rahul Jaiman
 
Machine Learning_Unit 2_Full.ppt.pdf
Machine Learning_Unit 2_Full.ppt.pdfMachine Learning_Unit 2_Full.ppt.pdf
Machine Learning_Unit 2_Full.ppt.pdf
Dr.DHANALAKSHMI SENTHILKUMAR
 
introduction to machine learning
introduction to machine learningintroduction to machine learning
introduction to machine learning
Johnson Ubah
 
Introduction to machine learning
Introduction to machine learningIntroduction to machine learning
Introduction to machine learning
Adetimehin Oluwasegun Matthew
 
Machine Learning Contents.pptx
Machine Learning Contents.pptxMachine Learning Contents.pptx
Machine Learning Contents.pptx
Naveenkushwaha18
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
Sujith Jayaprakash
 
An Introduction to Machine Learning
An Introduction to Machine LearningAn Introduction to Machine Learning
An Introduction to Machine Learning
Vedaj Padman
 
Mis End Term Exam Theory Concepts
Mis End Term Exam Theory ConceptsMis End Term Exam Theory Concepts
Mis End Term Exam Theory Concepts
Vidya sagar Sharma
 
Machine Learning with Python- Methods for Machine Learning.pptx
Machine Learning with Python- Methods for Machine Learning.pptxMachine Learning with Python- Methods for Machine Learning.pptx
Machine Learning with Python- Methods for Machine Learning.pptx
iaeronlineexm
 
Getting started with Machine Learning
Getting started with Machine LearningGetting started with Machine Learning
Getting started with Machine Learning
Gaurav Bhalotia
 
INTERNSHIP ON MAcHINE LEARNING.pptx
INTERNSHIP ON MAcHINE LEARNING.pptxINTERNSHIP ON MAcHINE LEARNING.pptx
INTERNSHIP ON MAcHINE LEARNING.pptx
srikanthkallem1
 
Chapter 05 Machine Learning.pptx
Chapter 05 Machine Learning.pptxChapter 05 Machine Learning.pptx
Chapter 05 Machine Learning.pptx
ssuser957b41
 
detailed Presentation on supervised learning
 detailed Presentation on supervised learning detailed Presentation on supervised learning
detailed Presentation on supervised learning
ZAMANCHBWN
 
A Survey on Machine Learning Algorithms
A Survey on Machine Learning AlgorithmsA Survey on Machine Learning Algorithms
A Survey on Machine Learning Algorithms
AM Publications
 
Intro to supervised learning.pptx
Intro to supervised learning.pptxIntro to supervised learning.pptx
Intro to supervised learning.pptx
SaranCreations
 
5. Machine Learning.pptx
5.  Machine Learning.pptx5.  Machine Learning.pptx
5. Machine Learning.pptx
ssuser6654de1
 
Machine Learning Interview Questions
Machine Learning Interview QuestionsMachine Learning Interview Questions
Machine Learning Interview Questions
Rock Interview
 

Similar to Machine Learning Interview Questions and Answers (20)

Machine Learning.pptx
Machine Learning.pptxMachine Learning.pptx
Machine Learning.pptx
 
machinecanthink-160226155704.pdf
machinecanthink-160226155704.pdfmachinecanthink-160226155704.pdf
machinecanthink-160226155704.pdf
 
Supervised learning techniques and applications
Supervised learning techniques and applicationsSupervised learning techniques and applications
Supervised learning techniques and applications
 
Machine Can Think
Machine Can ThinkMachine Can Think
Machine Can Think
 
Machine Learning_Unit 2_Full.ppt.pdf
Machine Learning_Unit 2_Full.ppt.pdfMachine Learning_Unit 2_Full.ppt.pdf
Machine Learning_Unit 2_Full.ppt.pdf
 
introduction to machine learning
introduction to machine learningintroduction to machine learning
introduction to machine learning
 
Introduction to machine learning
Introduction to machine learningIntroduction to machine learning
Introduction to machine learning
 
Machine Learning Contents.pptx
Machine Learning Contents.pptxMachine Learning Contents.pptx
Machine Learning Contents.pptx
 
Introduction to Machine Learning
Introduction to Machine LearningIntroduction to Machine Learning
Introduction to Machine Learning
 
An Introduction to Machine Learning
An Introduction to Machine LearningAn Introduction to Machine Learning
An Introduction to Machine Learning
 
Mis End Term Exam Theory Concepts
Mis End Term Exam Theory ConceptsMis End Term Exam Theory Concepts
Mis End Term Exam Theory Concepts
 
Machine Learning with Python- Methods for Machine Learning.pptx
Machine Learning with Python- Methods for Machine Learning.pptxMachine Learning with Python- Methods for Machine Learning.pptx
Machine Learning with Python- Methods for Machine Learning.pptx
 
Getting started with Machine Learning
Getting started with Machine LearningGetting started with Machine Learning
Getting started with Machine Learning
 
INTERNSHIP ON MAcHINE LEARNING.pptx
INTERNSHIP ON MAcHINE LEARNING.pptxINTERNSHIP ON MAcHINE LEARNING.pptx
INTERNSHIP ON MAcHINE LEARNING.pptx
 
Chapter 05 Machine Learning.pptx
Chapter 05 Machine Learning.pptxChapter 05 Machine Learning.pptx
Chapter 05 Machine Learning.pptx
 
detailed Presentation on supervised learning
 detailed Presentation on supervised learning detailed Presentation on supervised learning
detailed Presentation on supervised learning
 
A Survey on Machine Learning Algorithms
A Survey on Machine Learning AlgorithmsA Survey on Machine Learning Algorithms
A Survey on Machine Learning Algorithms
 
Intro to supervised learning.pptx
Intro to supervised learning.pptxIntro to supervised learning.pptx
Intro to supervised learning.pptx
 
5. Machine Learning.pptx
5.  Machine Learning.pptx5.  Machine Learning.pptx
5. Machine Learning.pptx
 
Machine Learning Interview Questions
Machine Learning Interview QuestionsMachine Learning Interview Questions
Machine Learning Interview Questions
 

More from Satyam Jaiswal

Data Analyst Interview Questions & Answers
Data Analyst Interview Questions & AnswersData Analyst Interview Questions & Answers
Data Analyst Interview Questions & Answers
Satyam Jaiswal
 
Data Structure Interview Questions & Answers
Data Structure Interview Questions & AnswersData Structure Interview Questions & Answers
Data Structure Interview Questions & Answers
Satyam Jaiswal
 
Data warehousing interview questions
Data warehousing interview questionsData warehousing interview questions
Data warehousing interview questions
Satyam Jaiswal
 
Behavioral Interview Questions and Answers
Behavioral Interview Questions and AnswersBehavioral Interview Questions and Answers
Behavioral Interview Questions and Answers
Satyam Jaiswal
 
Docker Interview Questions
Docker Interview QuestionsDocker Interview Questions
Docker Interview Questions
Satyam Jaiswal
 
Compiler Design Quiz
Compiler Design QuizCompiler Design Quiz
Compiler Design Quiz
Satyam Jaiswal
 

More from Satyam Jaiswal (6)

Data Analyst Interview Questions & Answers
Data Analyst Interview Questions & AnswersData Analyst Interview Questions & Answers
Data Analyst Interview Questions & Answers
 
Data Structure Interview Questions & Answers
Data Structure Interview Questions & AnswersData Structure Interview Questions & Answers
Data Structure Interview Questions & Answers
 
Data warehousing interview questions
Data warehousing interview questionsData warehousing interview questions
Data warehousing interview questions
 
Behavioral Interview Questions and Answers
Behavioral Interview Questions and AnswersBehavioral Interview Questions and Answers
Behavioral Interview Questions and Answers
 
Docker Interview Questions
Docker Interview QuestionsDocker Interview Questions
Docker Interview Questions
 
Compiler Design Quiz
Compiler Design QuizCompiler Design Quiz
Compiler Design Quiz
 

Recently uploaded

Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
MdTanvirMahtab2
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
Kamal Acharya
 
Courier management system project report.pdf
Courier management system project report.pdfCourier management system project report.pdf
Courier management system project report.pdf
Kamal Acharya
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
AafreenAbuthahir2
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation & Control
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
Pipe Restoration Solutions
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
AJAYKUMARPUND1
 
Event Management System Vb Net Project Report.pdf
Event Management System Vb Net  Project Report.pdfEvent Management System Vb Net  Project Report.pdf
Event Management System Vb Net Project Report.pdf
Kamal Acharya
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
Kamal Acharya
 
LIGA(E)11111111111111111111111111111111111111111.ppt
LIGA(E)11111111111111111111111111111111111111111.pptLIGA(E)11111111111111111111111111111111111111111.ppt
LIGA(E)11111111111111111111111111111111111111111.ppt
ssuser9bd3ba
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
seandesed
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Dr.Costas Sachpazis
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
Amil Baba Dawood bangali
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
fxintegritypublishin
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
gdsczhcet
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
Kamal Acharya
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
Jayaprasanna4
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
karthi keyan
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
Osamah Alsalih
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
Massimo Talia
 

Recently uploaded (20)

Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
Industrial Training at Shahjalal Fertilizer Company Limited (SFCL)
 
Student information management system project report ii.pdf
Student information management system project report ii.pdfStudent information management system project report ii.pdf
Student information management system project report ii.pdf
 
Courier management system project report.pdf
Courier management system project report.pdfCourier management system project report.pdf
Courier management system project report.pdf
 
WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234WATER CRISIS and its solutions-pptx 1234
WATER CRISIS and its solutions-pptx 1234
 
Water Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdfWater Industry Process Automation and Control Monthly - May 2024.pdf
Water Industry Process Automation and Control Monthly - May 2024.pdf
 
The Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdfThe Benefits and Techniques of Trenchless Pipe Repair.pdf
The Benefits and Techniques of Trenchless Pipe Repair.pdf
 
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
Pile Foundation by Venkatesh Taduvai (Sub Geotechnical Engineering II)-conver...
 
Event Management System Vb Net Project Report.pdf
Event Management System Vb Net  Project Report.pdfEvent Management System Vb Net  Project Report.pdf
Event Management System Vb Net Project Report.pdf
 
Automobile Management System Project Report.pdf
Automobile Management System Project Report.pdfAutomobile Management System Project Report.pdf
Automobile Management System Project Report.pdf
 
LIGA(E)11111111111111111111111111111111111111111.ppt
LIGA(E)11111111111111111111111111111111111111111.pptLIGA(E)11111111111111111111111111111111111111111.ppt
LIGA(E)11111111111111111111111111111111111111111.ppt
 
Architectural Portfolio Sean Lockwood
Architectural Portfolio Sean LockwoodArchitectural Portfolio Sean Lockwood
Architectural Portfolio Sean Lockwood
 
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
Sachpazis:Terzaghi Bearing Capacity Estimation in simple terms with Calculati...
 
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
NO1 Uk best vashikaran specialist in delhi vashikaran baba near me online vas...
 
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdfHybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
Hybrid optimization of pumped hydro system and solar- Engr. Abdul-Azeez.pdf
 
Gen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdfGen AI Study Jams _ For the GDSC Leads in India.pdf
Gen AI Study Jams _ For the GDSC Leads in India.pdf
 
Cosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdfCosmetic shop management system project report.pdf
Cosmetic shop management system project report.pdf
 
ethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.pptethical hacking-mobile hacking methods.ppt
ethical hacking-mobile hacking methods.ppt
 
CME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional ElectiveCME397 Surface Engineering- Professional Elective
CME397 Surface Engineering- Professional Elective
 
MCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdfMCQ Soil mechanics questions (Soil shear strength).pdf
MCQ Soil mechanics questions (Soil shear strength).pdf
 
Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024Nuclear Power Economics and Structuring 2024
Nuclear Power Economics and Structuring 2024
 

Machine Learning Interview Questions and Answers

  • 1. By OnlineInterviewQuestions.com Machine Learning Interview Questions Q1. What is machine learning? Machine learning is the use of algorithms and data to perform specific tasks. ML is the process of giving the system the ability to learn from data using certain sophisticated algorithms. With the algorithms, you build a certain mathematical model on the data to explore patterns or predict. ML today is used in a wide variety of applications like Spotify, Netflix, Amazon, Google Search, etc. Q2. What supervised and unsupervised machine learning? Supervised and unsupervised are the two types of Machine learning algorithms available. In the supervised type, the algorithms are applied to the known labeled data to formulate a model. Labeled data means the data is tagged. With this data, the algorithm creates a model that is then applied to unknown data to predict its outcome or tag it. Linear regression is a good example of supervised learning. In the unsupervised type, the algorithm is applied to the unlabeled data. The data neither is classified nor labeled, but the unsupervised algorithm is used to find the hidden structure with the unlabeled data. K-means clustering algorithm is a good example of this type. Q3. What is ROC curve? ROC curve is a graphical plot to illustrate the ability of a classifier system. Basically, this curve tells you how much a binary classifier system is capable of distinguishing between classes. This curve is plotted with TPR (True Positive Rate) on the y-axis and FPR (False Positive Rate) on the x-axis. TPR is also known as sensitivity recall or probability of detection and FPR is also known as the probability of false alarm. Q4. What is the difference between classification and regression?
  • 2. Regression is the process of estimating the mapping function (f) given the input value (x) to the continuous output value (y). It is used to predict a value given the data. Here, labeled data is used to create a model or function and this function is used to predict the value of unlabeled data. Linear or Logistic regression is a good example of this type. Classification is the process of categorizing the data. The classification model is created from using the algorithm on the data so it is categorized mainly based on the similarity. Naive Bayes classifier is a good example of this type. Q5. What is Ensemble learning? Ensemble learning is the process of applying multiple learning algorithms on a dataset to get better predictive performance. By applying multiple algorithms the performance is improved while the likelihood of choosing a wrong algorithm is reduced. The ensemble is a supervised type of learning algorithm as it can be trained and used to make predictions. Q6. Explain Navie Bayes? Naive Bayes is a type of classification algorithm used to classify data based on the probabilistic classifiers. It is a collection of classification algorithms that uses Baye’s theorem. This theorem finds the probability of an event occurring given the probability of an already occurred other event. //Baye’s Theorem mathematical equation P(A/B) = P(B/A) * P(A) / P(B) Q7. What is Reinforcement Learning? Reinforced learning is a type of machine learning that employs a trial and error method to find a solution to the problem. It is used in many software and machines to find the best possible path to get to the solution The agent (i.e) the learning model takes the action to maximize the reward in a particular situation. There is no need for labeled data in this type as the reinforcement agent decides what to do with the data given the task. Q8. What Is training Set and test Set in a Machine Learning Model? The training data is used by the algorithm to create a model. It used this data to learn and fit the model. In a dataset, about 60 to 80 percent of data is allocated as training data. The testing data is used to test the accuracy of the model trained with the training data. The model from the training data predicts the testing data to see how well it works. Separating the dataset into training and testing data is important as you can minimize the effect of data discrepancies and better understand the characteristics of the model.
  • 3. Q9. What is Confusion Matrix? Confusion Matrix, also known as the error matrix, is a table to describe the performance of the classification model on the set of test data. The rows in this table represent the predicted class while the column presents the actual class. In this table, the number of correct and incorrect predictions are described with the count values so we can get insights into the errors and the type of errors made. Q10. What are stages of building a model in Machine Learning? The seven steps in building a machine learning model are, Data Collection - In this step, we collect the data related to the problem. Data Preparation - Here, we clean and organize the collected data based on the problem. We remove duplicate data, error data, fill missing data, etc in this process Choosing an algorithm - As the name suggests, in this stage, you choose the appropriate algorithm for the problem. Train the algorithm - We use the dataset to train the algorithm to create a model. Evaluate the model - We use the test data from the dataset to find the accuracy of the model created. Parameter Tuning - In this step, we tune the model parameters to improve its performance. Make predictions - In this step, we apply the created model on a real dataset. Q11. What Is Deep Learning? Deep learning is a subfield of machine learning which uses an artificial neural network to learn from the dataset. It is now the most popular ML technique which is used in many areas such as driverless cars, voice control, hand’s free speakers, and more. This technique uses data directly from the image, sound, or video to learn from it. The artificial neural network has multiple layers of nodes interconnected with each other. It is loosely inspired by biological neural networks. Deep Learning achieves good accuracy when compared to other models sometimes even exceeding human-level performance. Q12. Explain KNN Algorithm?
  • 4. KNN is a supervised algorithm used for both classification and regression. It uses labeled data to model a function to produce an output from the unlabeled data. It uses the Euclidean distance formula to calculate the distance between the data points for classification or prediction. It works on the principle that similar data points must be close to each other so it uses the distance to calculate the similar points that are close to each other. Q13. What Is a Random Forest? Random forest is a supervised algorithm that is mainly used for classification problems. It creates a decision tree from the data samples. Based on the decision tree, it predicts the result. Then, the voting process takes place in which voting is performed for every predicted result. Finally, the most voted prediction result is taken as the final prediction result. This technique is also used as regression as well. Q14. What Is Decision Tree Classification? The decision tree algorithm is a supervised learning algorithm that is used for classification as well as regression problems. In this type, we infer the simple decision rules from the training data and create a decision tree. We start from the root attribute of the decision tree with the record attribute and follow the branch of the root that corresponds to the match. In this way, we jump to the next branch until the final classification is reached. Q15. What are collinearity and multicollinearity? Collinearity is the association between two explanatory variables while the multicollinearity is the linear related association between two or more explanatory variables. Collinearity occurs when two predictor variables have a non-zero correlation in multiple regression. Non-collinearity occurs when two or more predictor variables are inter-correlated. Please Visit OnlineInterviewquestions.com to download more pdfs