Basic Data Types in Python

Basic Data Types in Python

University

6 Qs

quiz-placeholder

Similar activities

Python Test1 (If Statement)

Python Test1 (If Statement)

University

10 Qs

FGWHN Python OOP W1

FGWHN Python OOP W1

University

10 Qs

Динамические библиотеки

Динамические библиотеки

University

10 Qs

Bài tập trắc nghiệm về ngôn ngữ lập trình Python

Bài tập trắc nghiệm về ngôn ngữ lập trình Python

University

10 Qs

Python Programming Concepts Challenge

Python Programming Concepts Challenge

10th Grade - University

10 Qs

Python Basics

Python Basics

University

10 Qs

اولي اعدادي الترم الثاني درس 6

اولي اعدادي الترم الثاني درس 6

7th Grade - University

10 Qs

Python Lists and Tuples

Python Lists and Tuples

University

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