Python Programming Quiz

Python Programming Quiz

University

15 Qs

quiz-placeholder

Similar activities

Quiz sobre estructuras de datos

Quiz sobre estructuras de datos

University

10 Qs

AVINYA 2K25

AVINYA 2K25

University

19 Qs

Chapter 1 Exploring Number Systems and Codes

Chapter 1 Exploring Number Systems and Codes

University

10 Qs

Understanding Data Representation and Logic

Understanding Data Representation and Logic

University

15 Qs

Python

Python

University

10 Qs

DLD Unit 1 _ 1

DLD Unit 1 _ 1

University

15 Qs

ANN Part 4 - Part 6 Quiz

ANN Part 4 - Part 6 Quiz

University

20 Qs

Verilog HDL -module 1 Quiz

Verilog HDL -module 1 Quiz

University

18 Qs

Python Programming Quiz

Python Programming Quiz

Assessment

Quiz

Engineering

University

Medium

Created by

Sankarsan Sahoo

Used 3+ times

FREE Resource

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the primary purpose of the decimal module in Python?

To perform faster arithmetic operations than standard floats.

To handle financial calculations and ensure exact decimal representations.

To convert numbers between different bases (binary, octal, hexadecimal).

To provide advanced mathematical functions like trigonometry and logarithms.

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will be the output of the following Python code? from decimal import Decimal print(Decimal('0.3') + Decimal('0.2') == Decimal('0.6'))

True

False

Error

Machine dependent

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To represent the fraction 3/4 accurately in Python, which of the following is the most appropriate?

0.75

3 / 4

fractions.Fraction(3, 4)

decimal.Decimal('0.75')

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of fractions.Fraction(1, 3) + fractions.Fraction(1, 6)?

fractions.Fraction(1, 2)

fractions.Fraction(2, 9)

0.5

fractions.Fraction(3, 18)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is an incorrect way to create a Decimal object from a floating-point number in a way that might introduce precision issues?

Decimal(0.1)

Decimal('0.1')

Decimal(str(0.1))

None of these

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the result of Decimal('1.200').normalize()?

Decimal('1.200')

Decimal('1.2')

Decimal('1.20')

Decimal('1.2e+0')

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a valid way to create a Money object?

my_money = Money(10, "USD")

my_money = Money("10", "USD")

my_money = Money(10 USD)

my_money = Money(amount=10, currency="USD")

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?