Python Basics

Python Basics

University

5 Qs

quiz-placeholder

Similar activities

CodeTigers Python 101

CodeTigers Python 101

KG - Professional Development

10 Qs

Introduction to Python

Introduction to Python

University

10 Qs

Python Training Day-1 Quiz-1

Python Training Day-1 Quiz-1

University

10 Qs

Programming languages

Programming languages

KG - Professional Development

10 Qs

MEET AND GREET

MEET AND GREET

University

8 Qs

Python Basics

Python Basics

KG - University

10 Qs

Programming Language Quiz

Programming Language Quiz

University

9 Qs

Quiz 1 - Intro to C#

Quiz 1 - Intro to C#

University

10 Qs

Python Basics

Python Basics

Assessment

Quiz

Computers

University

Easy

Created by

stewart kirubakaran

Used 2+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Who was responsible for developing the Python Programming Language?

Guido van Rossum

Larry Wall

Linus Torvalds

Dennis Ritchie

2.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Python Programming was developed in the year ___________

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the module in python used for developing a "Guessing a Number" game?

math

random

time

sys

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which data type is correct in Python?

Integer

Character

Array

Double

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Predict the output for the following code:
print(2**3 + (5 + 6)**(1 + 1))
NOTE: ** represents power symbol.

117
64
30
129