Python Quiz

Python Quiz

Professional Development

6 Qs

quiz-placeholder

Similar activities

PythonTest

PythonTest

6th Grade - Professional Development

11 Qs

CSE-C1-Quiz-8-25-11-2022

CSE-C1-Quiz-8-25-11-2022

Professional Development

8 Qs

python daily 10 questions 30 seconds

python daily 10 questions 30 seconds

12th Grade - Professional Development

10 Qs

Python Test 1

Python Test 1

Professional Development

10 Qs

Funciones y Variables

Funciones y Variables

Professional Development

10 Qs

Python_R

Python_R

2nd Grade - Professional Development

8 Qs

Python Quiz

Python Quiz

Professional Development

10 Qs

IT ENGLISH: Research Project Topics - Python Programming Languag

IT ENGLISH: Research Project Topics - Python Programming Languag

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