Python Programming

Python Programming

University

5 Qs

quiz-placeholder

Similar activities

Methods

Methods

University

10 Qs

Python

Python

University

10 Qs

Python Control Statements

Python Control Statements

University

10 Qs

Python Basics

Python Basics

University

10 Qs

Python Unit 3

Python Unit 3

University

10 Qs

Week 4: Recap Java Programming

Week 4: Recap Java Programming

University

10 Qs

IP Demo Quiz

IP Demo Quiz

University

10 Qs

Python_R

Python_R

2nd Grade - Professional Development

8 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