Python Basics Day 1

Python Basics Day 1

University

6 Qs

quiz-placeholder

Similar activities

Python Basics

Python Basics

University

10 Qs

Python Basics

Python Basics

6th Grade - University

10 Qs

Quiz 1

Quiz 1

University

10 Qs

Programming Basics Basics

Programming Basics Basics

8th Grade - University

10 Qs

Q8 - FundComp - Python Básico (En)

Q8 - FundComp - Python Básico (En)

University

10 Qs

HTML Quiz

HTML Quiz

University

10 Qs

Python_R

Python_R

2nd Grade - Professional Development

8 Qs

Python

Python

University

10 Qs

Python Basics Day 1

Python Basics Day 1

Assessment

Quiz

Computers

University

Hard

Created by

Ninitha C

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

A location in memory used to store data that can be changed.
Variable
Iteration
Constant
Value

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Pick the correct way of using variables
first name = ‘David’
1stname = ‘David’
firstname = David
first_name = ‘David’

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will the output be from the following code? print("Hello world!")
SyntaxError
Hello world!
"Hello world!"
print(Hello world!)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

print("12"*3) What would this print?
36
24
121212
12*3

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which is the most appropriate data type for: "13th December"
Float
Boolean
String
Date

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which function takes a users input
input()
int()
def
print()