Rounding Numbers in Python

Rounding Numbers in Python

University

9 Qs

quiz-placeholder

Similar activities

NETWORKING COMMUNICATION

NETWORKING COMMUNICATION

University

14 Qs

Algorithm analysis: divide & conquer theory

Algorithm analysis: divide & conquer theory

University

10 Qs

Computer Networking

Computer Networking

University

13 Qs

Quiz 1

Quiz 1

University

11 Qs

Excel Quiz

Excel Quiz

University

14 Qs

Excel - 1

Excel - 1

KG - University

10 Qs

Neural Networks Quiz

Neural Networks Quiz

University

10 Qs

UTB - FCNS 221PB

UTB - FCNS 221PB

University

10 Qs

Rounding Numbers in Python

Rounding Numbers in Python

Assessment

Quiz

Computers

University

Practice Problem

Hard

Created by

Sangameshwar Biradar

Used 16+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The value 1.73 rounded to one decimal place using the “rounding up” strategy is…

1.7

1.8

1.73

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The value -2.961 rounded to two decimal places using the “rounding down” strategy is…

-2.96

-2.97

-2.9

-2.961

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

When a value is truncated to 3 decimal places, which of the following is true?

Both positive and negative numbers are rounded down.

Positive numbers are rounded down and negative numbers are rounded up.

Positive numbers are rounded up and negative numbers are rounded down.

Both positive and negative numbers are rounded up.

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The value -0.045 rounded to 2 decimal places using the “round half away from zero” strategy is…

-0.05

-0.04

-0.045

-0.03

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which rounding strategy does Python’s built-in round() function use?

Round half away from zero

Round half to even

Round half down

Round half up

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The value 4.65 rounded to one decimal place using the “round half to even” strategy is…

4.6

4.7

4.65

4.5

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Which of the following rounding strategies mitigates rounding bias the best?

Round half away from zero

Round half up

Truncate

Round half to even

Round down

8.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Why does round(-1.225, 2) return -1.23 when it should return -1.22?

There is a bug in Python

Trick question. round(-1.225, 2) does return -1.22!

Floating point representation error

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Assume you have the following Python list:


data = [0.15, -1.45, 3.65, -7.05, 2.45]


If you round every number in data to one decimal place using the “round half up” strategy, which of the following rounding biases is introduced?

Round towards negative infinity bias

Round towards zero bias

No rounding bias is introduced

Round towards positive infinity bias