Python Programming Quiz

Python Programming Quiz

University

15 Qs

quiz-placeholder

Similar activities

Compiler

Compiler

University

10 Qs

Electric Traction Quiz

Electric Traction Quiz

University

10 Qs

24EE2081 - Quiz1

24EE2081 - Quiz1

University

15 Qs

C programming Basics

C programming Basics

University

20 Qs

UAS Pemrograman Komputer dan Sistem Otomatisasi

UAS Pemrograman Komputer dan Sistem Otomatisasi

University

10 Qs

FINAL TERM: QUIZ No.1 - PERMEABILITY

FINAL TERM: QUIZ No.1 - PERMEABILITY

University

11 Qs

เกมส์ทายของรางวัล

เกมส์ทายของรางวัล

University

10 Qs

PEISS

PEISS

University

15 Qs

Python Programming Quiz

Python Programming Quiz

Assessment

Quiz

Engineering

University

Medium

Created by

Sankarsan Sahoo

Used 3+ times

FREE Resource

AI

Enhance your content in a minute

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

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

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?