37
Created by Sumithra Ratheesh

Data Science, AI & Machine Learning

Quiz - Data Science, AI & Machine Learning

Test your foundational knowledge of the rapidly evolving fields of Data Science, Artificial Intelligence (AI), and Machine Learning (ML) with this interactive quiz. Whether you're a student, aspiring data professional, or a tech enthusiast, this quiz is designed to evaluate your understanding of key concepts, terminology, and real-world applications in these exciting domains.

Participant Details – Quiz on Data Science, AI & ML

1 / 15

Category: Introduction Session

1. Which type of analytics answers: "What happened?"

2 / 15

Category: Introduction Session

2.  What is the difference between AI and ML?

3 / 15

Category: Introduction Session

3. Machine Learning is a subset of:

4 / 15

Category: Introduction Session

4. Which of the following best describes Artificial Intelligence?

5 / 15

Category: Introduction Session

5. What is the main goal of Data Science?

6 / 15

Category: Introduction Session

6. Which technology forms the 'brain' of AI, allowing it to learn from data?

7 / 15

Category: Introduction Session

7. What is the fundamental difference between Supervised and Unsupervised Machine Learning?

8 / 15

Category: Introduction Session

8. A machine learning model is trained to identify emails as 'Spam' or 'Not Spam'. What type of task is this?

9 / 15

Category: Introduction Session

9. Who is credited with coining the term 'Artificial Intelligence' in 1956?

10 / 15

Category: Introduction Session

10. Which type of data analytics answers the question, 'What will happen next?'

11 / 15

Category: Introduction Session

11. what is the primary goal of Unsupervised Learning?

12 / 15

Category: Introduction Session

12. Which of the following learns by interacting with an environment through a process of trial-and-error?

13 / 15

Category: Introduction Session

13. .What is defined as the ability of machines to mimic human intelligence and make decisions?

14 / 15

Category: Introduction Session

14. What is the primary purpose of Data Science as described in the presentation?

15 / 15

Category: Introduction Session

15. Predicting the future temperature based on historical data is an example of which supervised learning task?

Your score is

The average score is 89%

0%

47
Created by Sumithra Ratheesh

Data Science, AI & Machine Learning

Quiz - Python Programming

This quiz is designed for those who have already learned the fundamentals and want to revisit key concepts. From variables and loops to functions and logic—test your knowledge, reinforce your learning, and get one step closer to Python mastery!

Participant Details – Quiz on Data Science, AI & ML

1 / 14

Category: Python Programming

1. 1.What is the output of this code?
python
my_list = ['p', 'y', 't', 'h', 'o', 'n']
print(my_list[4])

 

2 / 14

Category: Python Programming

2. 2.What is the data type of the variable result in the following code?
python
result = 10 / 2

3 / 14

Category: Python Programming

3. Which line of code will cause an error?

4 / 14

Category: Python Programming

4. Which of the following is an immutable data type in Python?

5 / 14

Category: Python Programming

5. What best describes a Python list?

6 / 14

Category: Python Programming

6. Which statement about Python strings is true?

7 / 14

Category: Python Programming

7. Which of the following is the correct way to assign the value 10 to a variable named my_variable in Python?

8 / 14

Category: Python Programming

8. What is the primary purpose of the print() function in Python?

9 / 14

Category: Python Programming

9. 5.What is the final value of x?
python
x = 10
if x > 10:
x = x + 5
elif x == 10:
x = x - 5
else:
x = 0

 

10 / 14

Category: Python Programming

10. What happens if you try to import a module that does not exist in Python?

11 / 14

Category: Python Programming

11. Which keyword is used to define a function in Python?

12 / 14

Category: Python Programming

12. What will be the value of y after the following code executes?
python
x = 5
y = 10
y += x

13 / 14

Category: Python Programming

13. How do you correctly write a for loop that iterates 5 times in Python?

14 / 14

Category: Python Programming

14. Which is the correct way to write an if statement condition in Python?

Your score is

The average score is 88%

0%

https://drive.google.com/file/d/1nwqBjF0IGIwxhK-ZME-v1BqR6af_aDKy/view?usp=sharing

https://colab.research.google.com/drive/1Xrhy4olvi3AWY1mWTqXTJCoiqoIYrOXI?usp=sharing

https://docs.google.com/document/d/1fZTNo8OUyzObNcv6BtRtb1zVKce5FcXm/edit?usp=sharing&ouid=100244417384671642348&rtpof=true&sd=true

https://colab.research.google.com/drive/1Xrhy4olvi3AWY1mWTqXTJCoiqoIYrOXI?usp=sharing

 

Participant Details – Quiz

1 / 15

1. 5. Which function is used to generate evenly spaced numbers?

2 / 15

2. 4. What does ndim return in NumPy?

3 / 15

3. 3. What does np.zeros((2,3)) create?

4 / 15

4. 2. Which of the following creates a NumPy array?

5 / 15

5. What is the main purpose of NumPy in Python?

6 / 15

6. 10. How do you create a DataFrame from a dictionary?

 

7 / 15

7. 9. What is a Series in Pandas?

8 / 15

8. 8. What will np.mean(np.array([1, 2, 3, 4])) return?

9 / 15

9. 7. How do you reshape a NumPy array?

10 / 15

10. 6. What will np.array([1, 2, 3]) + np.array([4, 5, 6]) return?

11 / 15

11. 15. What does df.dropna() do?

12 / 15

12. 14. How do you check for missing values in a DataFrame?

 

13 / 15

13. 13. Which method gives you summary statistics of numeric columns?

14 / 15

14. 12. What does df['column_name'] return?

15 / 15

15. 11. Which method displays the first 5 rows of a DataFrame?

 

Your score is

The average score is 85%

0%

Basic statistics & preprocessing

Basic statistics & preprocessing

Participant Details – Quiz

1 / 15

1. What is the common range for Min-Max Normalization?

2 / 15

2. What is normalization?

3 / 15

3. Which is a common technique for handling missing values?

4 / 15

4. What is Label Encoding used for?

5 / 15

5. Which method replaces missing values with the average?

6 / 15

6. What is the range of the correlation coefficient?

7 / 15

7. If the correlation between two variables is 1, it means:

8 / 15

8. What does correlation measure?

9 / 15

9. Standard deviation is the square root of:

10 / 15

10. Which measure is least affected by outliers?

11 / 15

11. If the standard deviation is 0, what does it mean?

12 / 15

12. What does variance measure?

13 / 15

13. What is the mode of [2, 2, 3, 4, 4, 4, 5]?

14 / 15

14. What is the median of [1, 3, 5, 7, 9]?

15 / 15

15. What is the mean of the values [2, 4, 6, 8, 10]?

Your score is

The average score is 0%

0%

5.0
Based on 1 reviews
powered by Google
Sujithra P.M
08:48 05 Mar 25

Scroll to Top