Python basics

Python basics

University

10 Qs

quiz-placeholder

Similar activities

OSCILLATOR

OSCILLATOR

University

10 Qs

Java Quiz

Java Quiz

University

10 Qs

Intro to Python Programming Quiz 9D

Intro to Python Programming Quiz 9D

1st Grade - University

14 Qs

Basics of Python

Basics of Python

University

8 Qs

Match Exercises

Match Exercises

1st Grade - University

11 Qs

Robotics and Artificial Intelligence

Robotics and Artificial Intelligence

6th Grade - Professional Development

15 Qs

Python

Python

University

15 Qs

python set 1

python set 1

University

10 Qs

Python basics

Python basics

Assessment

Quiz

Other

University

Hard

Created by

Nishkala R

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

10 sec • 10 pts

What is the correct way to define a function in Python?

function myFunc():

def myFunc:

def myFunc():

define myFunc():

2.

MULTIPLE CHOICE QUESTION

10 sec • 10 pts

Which of the following is a correct way to create a list in Python?

a) list = "apple", "banana", "cherry"

b) list = ["apple", "banana", "cherry"]

c) list = ("apple", "banana", "cherry")

d) list = {"apple", "banana", "cherry"}

3.

MULTIPLE CHOICE QUESTION

10 sec • 10 pts

What is the output of the following code?

i = 1

while i < 4:

print(i)

i += 1

a) 1 2 3 4

b) 0 1 2 3

c) 1 2 3

d) Infinite loop

4.

MULTIPLE CHOICE QUESTION

10 sec • 10 pts

Which Python loop is best suited for iterating over a sequence like a list?

a) While loop

b) For loop

c) Switch loop

d) Sequence loop

5.

MULTIPLE CHOICE QUESTION

10 sec • 10 pts

In Python, what is the output of len([1, 2, 3, 4])?

a) 3

b) 4

c) Error

c) 2

6.

MULTIPLE CHOICE QUESTION

10 sec • 10 pts

In Machine Learning, which of the following is an example of supervised learning?

a) Clustering customers by behavior

b) Classifying emails as spam or not spam

c) Playing games using rewards

d) Grouping images without labels

7.

MULTIPLE CHOICE QUESTION

10 sec • 10 pts

Which type of learning focuses on finding hidden patterns in data without labels?

a) Supervised learning

b) Unsupervised learning

c) Reinforcement learning

d) Guided learning

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?