Python Programming

Python Programming

University

5 Qs

quiz-placeholder

Similar activities

Python

Python

University - Professional Development

10 Qs

Revisão de Python

Revisão de Python

10th Grade - University

10 Qs

Functions in Python

Functions in Python

University

10 Qs

Python Basics

Python Basics

University

10 Qs

CIS1101-programming practice2

CIS1101-programming practice2

University

10 Qs

Python - Functions

Python - Functions

University

10 Qs

Python_programming_quiz

Python_programming_quiz

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