adplus-dvertising

Welcome to the File Handling in C MCQs Page

Dive deep into the fascinating world of File Handling in C with our comprehensive set of Multiple-Choice Questions (MCQs). This page is dedicated to exploring the fundamental concepts and intricacies of File Handling in C, a crucial aspect of C Programming. In this section, you will encounter a diverse range of MCQs that cover various aspects of File Handling in C, from the basic principles to advanced topics. Each question is thoughtfully crafted to challenge your knowledge and deepen your understanding of this critical subcategory within C Programming.

frame-decoration

Check out the MCQs below to embark on an enriching journey through File Handling in C. Test your knowledge, expand your horizons, and solidify your grasp on this vital area of C Programming.

Note: Each MCQ comes with multiple answer choices. Select the most appropriate option and test your understanding of File Handling in C. You can click on an option to test your knowledge before viewing the solution for a MCQ. Happy learning!

File Handling in C MCQs | Page 3 of 6

Q21.
Which of the following is data type of file pointer?
Discuss
Answer: (d).File
Q22.
In fopen(), the open mode "wx" is sometimes preferred "w" because

1) Use of wx is more efficient.
2) If w is used, old contents of file are erased and a new empty file is created. When wx is used, fopen() returns NULL if file already exists.
Discuss
Answer: (b).Only 2
Q23.
A file written in text mode can be read back in binary mode.
Discuss
Answer: (b).No
Q24.
A text stream is an ordered sequence of characters composed into lines, each line consisting of zero or more characters plus a terminating new-line character.
Discuss
Answer: (a).True
Q25.
While calling the fprintf() function in the format string conversion specifier %s can be used to write a character string in capital letters.
Discuss
Answer: (b).False
Q26.
Select text file in which number will take.
Discuss
Answer: (b).4 bytes
Discuss
Answer: (c).Both a & b
Q28.
What is the meant by 'a' in the following operation?
fp = fopen("compsciedu.txt", "a");
Discuss
Answer: (b).Append
Discuss
Answer: (a).It writes "Copying!" into the file pointed by fp
Q30.
_____removes the named file, so that a subsequent attempt to open it will fail.
Discuss
Answer: (a).remove(const *filename)
Page 3 of 6

Suggested Topics

Are you eager to expand your knowledge beyond C Programming? We've curated a selection of related categories that you might find intriguing.

Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!