Modules

Modules

University

5 Qs

quiz-placeholder

Similar activities

Python Basics Assessment

Python Basics Assessment

University

10 Qs

Programming languages quiz

Programming languages quiz

6th Grade - Professional Development

8 Qs

ORGANIZACIONES DE ALTO DESEMPEÑO

ORGANIZACIONES DE ALTO DESEMPEÑO

University

10 Qs

Chromebook Tips, Tricks and Troubleshooting

Chromebook Tips, Tricks and Troubleshooting

KG - University

10 Qs

Workshop Ms. Excel untuk UMKM

Workshop Ms. Excel untuk UMKM

University

10 Qs

Python Quiz 6

Python Quiz 6

University

8 Qs

Scientific Python

Scientific Python

KG - Professional Development

10 Qs

Quiz for python django(Hero)

Quiz for python django(Hero)

University

6 Qs

Modules

Modules

Assessment

Quiz

Professional Development

University

Easy

Created by

jency joseph

Used 2+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A module is simply a Python file with a ________ extension that can be imported inside another Python program

.py

.p

.o

.pyt

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

keyword for creating function in python

def

method

string

py

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A _________ is a block of code which only runs when it is called.

function

datatype

conditional statement

looping statement

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

def add(a,b):

print(a+b)

add(5)

5

TypeError

0

50

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

def fix(a="5"):

print(a)

fix(6)

5

6

empty space

56