Week11 Low Level IO

Week11 Low Level IO

University

9 Qs

quiz-placeholder

Similar activities

Exam3 Review

Exam3 Review

University

11 Qs

Ktmt

Ktmt

University

10 Qs

Bài kiểm trả 15'

Bài kiểm trả 15'

University

9 Qs

Week11 Low Level IO

Week11 Low Level IO

Assessment

Quiz

Architecture

University

Hard

Created by

Emma Nagy

Used 1+ times

FREE Resource

AI

Enhance your content in a minute

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

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

20 sec • 1 pt

You are given the following text file: 'BlindingLightsLyrics.txt' and asked to count how many times the word 'lights' appears. How would you open the file?

Media Image
Media Image
Media Image
Media Image

2.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What data type is the file handle (fh) of a file?

char

double

logical

cell

3.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What is the proper way to individually close files?

close(fh)

fclose('filename')

fclose(all)

fclose(fh)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

Given a filename ending in '.txt' how would you create an updated filename that is the original filename with '_updated.txt' at the end?

(example in image)

Media Image
Media Image
Media Image
Media Image

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Given a filename ending in ANY extension how would you create an updated filename that is the original filename with '_updated' added before the extension?

Media Image
Media Image
Media Image
Media Image

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

To loop through every line in a file, what would I need to make the terminating condition of the while loop?

Media Image
Media Image
Media Image
Media Image

7.

FILL IN THE BLANK QUESTION

1 min • 1 pt

Media Image

This code is supposed to go through every word on every line of the file. Which two EMPTY lines would you need to use 'strtok' on to make this code work? (answer using numbers separated by only commas!)

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

For this code to loop through every word on every line, what should the input of the second strtok be?

word

line

count

rest

9.

MULTIPLE CHOICE QUESTION

10 sec • 1 pt

What do you get when you use fgetl or fgets when there is nothing left to read in the file?

-1 (double)

1 (double)

1 (logical)

-1 (char)