Basic Data Types in Python

Basic Data Types in Python

University

6 Qs

quiz-placeholder

Similar activities

CCLUB TANIŞMA

CCLUB TANIŞMA

University

10 Qs

Repaso 3

Repaso 3

University

5 Qs

Modulo 1 Python

Modulo 1 Python

University

10 Qs

Reshaping & vStack&hstack( )

Reshaping & vStack&hstack( )

9th Grade - University

10 Qs

Python Basics

Python Basics

University

10 Qs

PYTHON_CHAPTER 1

PYTHON_CHAPTER 1

University

10 Qs

Repaso 2

Repaso 2

University

5 Qs

Python Dictionaries

Python Dictionaries

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