IT 403 - Quiz 1

IT 403 - Quiz 1

University

25 Qs

quiz-placeholder

Similar activities

Informatika Analisis Data Bab 6

Informatika Analisis Data Bab 6

10th Grade - University

20 Qs

Quiz on Python Arrays

Quiz on Python Arrays

University

20 Qs

 XI Kuis Analisis Data

XI Kuis Analisis Data

10th Grade - University

20 Qs

Week 7-8

Week 7-8

University

30 Qs

Funcion print() y tipos de datos

Funcion print() y tipos de datos

University

30 Qs

PPL (QUIZ 4) Programming Control Structures

PPL (QUIZ 4) Programming Control Structures

University

30 Qs

ARTIFICIAL INTELLIGENCE

ARTIFICIAL INTELLIGENCE

University

20 Qs

Computer Science

Computer Science

University

30 Qs

IT 403 - Quiz 1

IT 403 - Quiz 1

Assessment

Quiz

Information Technology (IT)

University

Hard

Created by

Mark Jesus

Used 2+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

In Python, the expression 0.1 + 0.2 == 0.3 evaluates to False due to floating-point precision issues, and this can be solved by using a small tolerance value for comparison.

True

False

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

When using the input() function in Python, if a user enters the number 42, the function returns an integer value that can be directly used in mathematical operations.

True

False

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

In Python, the statement x = y = z = 10 creates three separate objects in memory, each containing the value 10.

True

False

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

The continue statement in a nested loop will exit both the inner and outer loops and continue with the code after the outer loop.

True

False

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

List slicing in Python never raises an IndexError, even when indices are out of bounds, but direct indexing (like list[10] on a 5-element list) will raise an error.

True

False

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

A developer needs to store a file path on Windows. Which approach is most appropriate?

A. path = "C:\Users\Documents\file.txt"

B. path = "C:\\Users\\Documents\\file.txt"

  • C. path = "C:/Users/Documents/file.txt"

Both B and C are equally appropriate

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What is the primary reason Python uses indentation instead of braces for code blocks?

To reduce file size

To enforce readable code structure

To make the interpreter faster

To prevent syntax errors

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?