Seminar 3 - EDA25

Seminar 3 - EDA25

University

10 Qs

quiz-placeholder

Similar activities

Quiz on Basics of C

Quiz on Basics of C

University

10 Qs

CHAPTER 5 ONLINE QUIZ

CHAPTER 5 ONLINE QUIZ

University

9 Qs

Javascript

Javascript

University

12 Qs

The AI Shield

The AI Shield

University

15 Qs

Unit 28 - Quiz #1

Unit 28 - Quiz #1

University

15 Qs

Quiz CodeIgniter 4

Quiz CodeIgniter 4

University

10 Qs

PROBLEM SOLVING USING R  UNIT I  MCQS

PROBLEM SOLVING USING R UNIT I MCQS

University

15 Qs

Prak MC

Prak MC

University

15 Qs

Seminar 3 - EDA25

Seminar 3 - EDA25

Assessment

Quiz

Computers

University

Practice Problem

Medium

Created by

ARNAU BLANCO

Used 4+ times

FREE Resource

AI

Enhance your content in a minute

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

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

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

Already have an account?