Rounding Numbers in Python

Rounding Numbers in Python

University

9 Qs

quiz-placeholder

Similar activities

Analitika data perpajakan

Analitika data perpajakan

University

10 Qs

Media quiz

Media quiz

1st Grade - Professional Development

10 Qs

Boolean algebra and number systems

Boolean algebra and number systems

University

12 Qs

Hari 3 - Kuis Coding & Perkenalan AI (WAHYU ANGGA RADITYA)

Hari 3 - Kuis Coding & Perkenalan AI (WAHYU ANGGA RADITYA)

1st Grade - Professional Development

10 Qs

Quiz 2: Bootstrap

Quiz 2: Bootstrap

University

10 Qs

[Term 2 Week 1&2] Understanding AI in Decision Making 2025

[Term 2 Week 1&2] Understanding AI in Decision Making 2025

8th Grade - University

10 Qs

Pertemuan 5_PTI

Pertemuan 5_PTI

University

10 Qs

DES Revision

DES Revision

University

7 Qs

Rounding Numbers in Python

Rounding Numbers in Python

Assessment

Quiz

Computers

University

Hard

Created by

Sangameshwar Biradar

Used 16+ times

FREE Resource

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