Basic Data Types in Python

Basic Data Types in Python

University

6 Qs

quiz-placeholder

Similar activities

Python Training Day-1 Quiz-1

Python Training Day-1 Quiz-1

University

10 Qs

Repaso 3

Repaso 3

University

5 Qs

Python Lists and Tuples

Python Lists and Tuples

University

11 Qs

Python Dictionaries

Python Dictionaries

University

10 Qs

Python quiz

Python quiz

10th Grade - Professional Development

10 Qs

Python

Python

University

10 Qs

Python

Python

University

9 Qs

Python Test1 (If Statement)

Python Test1 (If Statement)

University

10 Qs

Basic Data Types in Python

Basic Data Types in Python

Assessment

Quiz

Computers

University

Hard

Created by

Sangameshwar Biradar

Used 9+ times

FREE Resource

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

In Python 3, the maximum value for an integer is 263 - 1:

False

True

None

Error

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

How would you express the hexadecimal value a5 as a base-16 integer constant in Python?

0xa5

oxa5

a5

xa5

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How would you express the constant floating-point value 3.2 × 10-12 in Python:

3.2E-12

-3.2E12

3.2E12

None

4.

MULTIPLE SELECT QUESTION

20 sec • 1 pt

Which of the following are valid ways to specify the string literal foo'bar in Python:

'foo' 'bar'

"foo'bar"

'foo\'bar'

"""foo'bar"""

'foo'bar'

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Consider this statement:


>>> print(r'foo\\bar\nbaz')


Which of the following is the correct REPL output?

foo\\bar\nbaz

foo\\barnbaz

foo\bar

baz

foo\bar\nbaz

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following is not a Python built-in function:

diff()

refr()

round()

map()

isinstance()