Python Quiz

Python Quiz

Professional Development

6 Qs

quiz-placeholder

Similar activities

Javascript

Javascript

Professional Development

11 Qs

Python set1

Python set1

Professional Development

10 Qs

Co wiesz o Pythonie

Co wiesz o Pythonie

Professional Development

8 Qs

Introduction

Introduction

Professional Development

10 Qs

Python Data Structures Quiz Intro

Python Data Structures Quiz Intro

Professional Development

5 Qs

Node.js

Node.js

KG - Professional Development

8 Qs

Variable name

Variable name

Professional Development

6 Qs

Python Session 5

Python Session 5

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")