Python Quiz

Python Quiz

Professional Development

6 Qs

quiz-placeholder

Similar activities

Python Training Day-3 Quiz-3

Python Training Day-3 Quiz-3

Professional Development

10 Qs

Python Data Types

Python Data Types

Professional Development

10 Qs

Co wiesz o Pythonie

Co wiesz o Pythonie

Professional Development

8 Qs

Python set1

Python set1

Professional Development

10 Qs

Basic Python Data Types

Basic Python Data Types

Professional Development

8 Qs

02 - Python - Introduction & Installation

02 - Python - Introduction & Installation

University - Professional Development

10 Qs

Basic Python

Basic Python

Professional Development

10 Qs

Introduction

Introduction

Professional Development

10 Qs

Python Quiz

Python Quiz

Assessment

Quiz

Computers

Professional Development

Medium

Created by

Venkatesh R

Used 3+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a variable in Python?

  • A reserved word

  • A data type

  • A location in memory to store data

  • A function

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you declare a variable in Python?

  •  var x

  • x = variable

  • declare x

  •  x = 4

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid variable name in Python?

1variable

my_variable

global

variable-1

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following data types is immutable in Python?

List

Tuple

Dictionary

Boolean

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Who developed Python Programming Language?

Wick van Rossum

Rasmus Lerdorf

Guido van Rossum

Niene Stom

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is a correct syntax to output "Hello World" in Python?

echo "Hello World"

p(Hello World)

print("Hello World")

printf("Hello World")