This quiz works best with JavaScript enabled. Home > Class 11 > Class 11 Computer Science Chapter 6 File Handling – Quiz 68 🏠 Homepage 📘 Download PDF Books 📕 Premium PDF Books Class 11 Computer Science Chapter 6 File Handling Quiz 68 (4 MCQs) Quiz Instructions Select an option to see the correct answer instantly. 1. A Variable defined inside a function referred to as A) A Static Variable. B) A Global Variable. C) A Local variable. D) A automatic Variable. Show Answer Correct Answer: C) A Local variable. 2. To store a dictionary in a file in binary format, we use: A) Csv. B) Json. C) Pickle. D) Dictfile. Show Answer Correct Answer: C) Pickle. 3. What is the code to open a file named as Sample and remove all the previous content stored in the file? A) Open(ios::trunc, "Sample.dat"). B) Open("Sample.dat", "ios::trunc"). C) Open("ios::trunc", "Sample.dat"). D) Open("Sample.dat", ios::trunc). Show Answer Correct Answer: D) Open("Sample.dat", ios::trunc). 4. Explain how to write data to a binary file. A) Open a file in binary read mode, read the data, and close the file. B) Prepare binary data, open a file in read mode, and write it using the append method. C) Open a file in text mode, write text data, and close the file. D) Open a file in binary write mode, prepare binary data, write it using the write method, and close the file. Show Answer Correct Answer: D) Open a file in binary write mode, prepare binary data, write it using the write method, and close the file. ← PreviousRelated QuizzesClass 11 Computer Science Chapter 6 File Handling Quiz 1Class 11 Computer Science Chapter 6 File Handling Quiz 2Class 11 Computer Science Chapter 6 File Handling Quiz 3Class 11 Computer Science Chapter 6 File Handling Quiz 4Class 11 Computer Science Chapter 6 File Handling Quiz 5Class 11 Computer Science Chapter 6 File Handling Quiz 6Class 11 Computer Science Chapter 6 File Handling Quiz 7Class 11 Computer Science Chapter 6 File Handling Quiz 8Class 11 Computer Science Chapter 6 File Handling Quiz 9Class 11 Computer Science Chapter 6 File Handling Quiz 10 🏠 Back to Homepage 📘 Download PDF Books 📕 Premium PDF Books