Quiz 6

Quiz 6

Professional Development

25 Qs

quiz-placeholder

Similar activities

AZ900_SampleQuestions

AZ900_SampleQuestions

Professional Development

20 Qs

3D Objects - Terms & Transfomations

3D Objects - Terms & Transfomations

6th Grade - Professional Development

20 Qs

PC Tech Quiz 1

PC Tech Quiz 1

Professional Development

20 Qs

LPC 16 - AIO

LPC 16 - AIO

Professional Development

20 Qs

U.T. 7: Configuración de Routers y Encaminamiento

U.T. 7: Configuración de Routers y Encaminamiento

Professional Development

20 Qs

MS OFFICE QUIZ 01

MS OFFICE QUIZ 01

Professional Development

20 Qs

Ports

Ports

Professional Development

20 Qs

NM-BIG DATA Course

NM-BIG DATA Course

Professional Development

20 Qs

Quiz 6

Quiz 6

Assessment

Quiz

Computers

Professional Development

Hard

Created by

Moirangthem Sonia

Used 1+ times

FREE Resource

25 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

5 mins • 10 pts

Which of the following best describes a text file?

Stores human-readable characters using encodings like ASCII or UTF-8

Stores only images and videos

 Contains only binary machine instructions

Cannot be edited with text editors

2.

MULTIPLE CHOICE QUESTION

5 mins • 10 pts

 Which Python module is primarily used for file and directory operations?

sys

os

random

shutil

3.

MULTIPLE CHOICE QUESTION

5 mins • 10 pts

 What exception is raised when a file to be opened does not exist?

IOError

KeyError

FileNotFoundError

ValueError

4.

MULTIPLE CHOICE QUESTION

5 mins • 10 pts

What is the main advantage of using the "with" keyword when opening files?

Makes the program faster

Automatically closes the file after operations

Allows writing binary data only

Prevents the need for try-except blocks

5.

MULTIPLE CHOICE QUESTION

5 mins • 10 pts

Which mode should be used to append data to a file without deleting its existing content?

"r"

 "w"

 "a"

"rb"

6.

MULTIPLE CHOICE QUESTION

5 mins • 10 pts

Which method reads the entire content of a file as a single string?

readline()

read()

readlines()

seek()

Answer explanation

read() Reads the whole file content as one single string.

readline() Reads one line at a time (up to a newline \n).

readlines() Reads all lines into a list, where each line is a separate string.

7.

MULTIPLE CHOICE QUESTION

5 mins • 10 pts

he method os.getcwd() in Python is used to:

Delete a directory

Change file ownership

Return the current working directory

Rename a file

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?