Python Programming

Python Programming

University

5 Qs

quiz-placeholder

Similar activities

Python_R

Python_R

2nd Grade - Professional Development

8 Qs

A4 IIIB - Funciones PSeInt & Python

A4 IIIB - Funciones PSeInt & Python

10th Grade - University

10 Qs

Revisão de Python

Revisão de Python

10th Grade - University

10 Qs

Methods

Methods

University

10 Qs

IP Demo Quiz

IP Demo Quiz

University

10 Qs

CSI U5L2 - Sequence & Selection

CSI U5L2 - Sequence & Selection

10th Grade - University

10 Qs

Python

Python

University

10 Qs

Basic C Knowledge Exercise

Basic C Knowledge Exercise

University

10 Qs

Python Programming

Python Programming

Assessment

Quiz

Computers

University

Medium

Created by

Jamunadevi T

Used 1+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Who developed Python?

Guido van Rossum

Charles Babbage

Dennis Ritchie

Bjarne Stroustrup

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the extension of python?

.py

.pyi

Both a and b

None of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The name "Python" was inspired by the .............

Monty Python’s Flying Circus

Python snake

Both

None

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output?

num1 = 15

num2 = 12

sum = num2 + num3

print("Sum is", sum)

15

12

Name num3 is not defined

27

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output?

num1 = 15

num2 = 12

diff = num1 - num2

print("Difference is", diff)

15

12

3

27