Seminar 3 - EDA25

Seminar 3 - EDA25

University

10 Qs

quiz-placeholder

Similar activities

File Handling in Python, Serialization in Python

File Handling in Python, Serialization in Python

University

15 Qs

Python - Chapter 6: Review Questions

Python - Chapter 6: Review Questions

8th Grade - University

15 Qs

PYTHON QUIZ2

PYTHON QUIZ2

University - Professional Development

10 Qs

Повторення пайтон3 панда

Повторення пайтон3 панда

University

9 Qs

php file handling

php file handling

University

10 Qs

28thOS

28thOS

University

10 Qs

JRDL - Intro to DOM

JRDL - Intro to DOM

6th Grade - Professional Development

12 Qs

Linux Commands Review Week 6

Linux Commands Review Week 6

University

12 Qs

Seminar 3 - EDA25

Seminar 3 - EDA25

Assessment

Quiz

Computers

University

Medium

Created by

ARNAU BLANCO

Used 4+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What's the best practice when loading a file in C?

Simply open it.

Open it, check that it can be accessed and close it.

Open it and close it.

2.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What's the difference between the following lines?

(I) FILE *f = fopen("example.txt", "r");

(II) FILE *f = fopen("example.txt", "w");

(III) FILE *f = fopen("example.txt", "a");

(I) reads the file in reading mode; (II) reads it in writing mode; (III) reads it in append mode

(I) reads the file in reading mode; (II) reads it in writing mode; (III) is not correct

They are equivalent

3.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What's the difference between the reading mode ("r") and the writing mode ("w")?

The reading mode allows multiple programs to access the same file, whereas the writing mode just one program.

Both modes allow multiple programs to access the same file.

Both modes allow only one program to access the same file.

4.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

What's the difference between the writing mode ("w") and the append mode ("a")?

They are equivalent, but the append mode allow multiple programs to access the same file.

The append mode does not exist.

The writing mode erases the contents of the file before making any changes, whereas the append mode adds the new changes at the end.

5.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

How does fscanf(...) handle whitespace (e.g., spaces, tabs, or newlines) when reading input?

It parses them normally.

It skips them.

6.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Consider that p is an integer and f a file pointer. What does fscanf(f, "%d", &p) do?

It parses the formatted input, i.e., "%d", from file f, stores it in p and moves to the next character.

It parses the formatted input, i.e., "%d", from file f, and stores it in p.

It waits for the user's input in the file f and stores it in p.

7.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

Consider that p and q are integers and f a file pointer. What does fscanf(f, "%d %d", &p, &q) return?

True if it has been successfully parsed; false, otherwise.

The number of matches in the formatted input, i.e., 2.

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?