Python Quiz

Python Quiz

Professional Development

6 Qs

quiz-placeholder

Similar activities

Python

Python

8th Grade - Professional Development

10 Qs

Python Jetcode

Python Jetcode

Professional Development

10 Qs

Unity & C-Sharp Quiz

Unity & C-Sharp Quiz

Professional Development

10 Qs

Introducción al lenguaje Python

Introducción al lenguaje Python

Professional Development

10 Qs

CS - Introduction to React Native

CS - Introduction to React Native

Professional Development

10 Qs

Topic Quiz-1 : Python Basics

Topic Quiz-1 : Python Basics

Professional Development

10 Qs

pemrograman dasar

pemrograman dasar

Professional Development

10 Qs

Python Rocks

Python Rocks

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