Showing posts with the label Data File Handling (Preeti Arora)

File Handling || Multiple Choice Questions || Class 12

File Handling || Multiple Choice Questions || Class 12 1. To open a file c:\t…

File Handling || True or False || Class 12

File Handling || True or False || Class 12 1. An absolute path always begins wi…

File Handling || Fill in the Blanks || Class 12

File Handling || Fill in the Blanks || Class 12 1. _____ in Python are interpre…

Create a CSV file Groceries to store information of different items existing in a shop.

Q. Create a CSV file "Groceries" to store information of different it…

Write a function in Python to update the file with a new value of stock. The stock and the product_code

Q. Following is the structure of each record in a data file named "PRODUCT…

Write a function in python to count the number of lines in a text file STORY.TXT

Q. Write a function in python to count the number of lines in a text file '…

A text file contains alphanumeric text. Write a program that reads this text file and prints only the numbers

Q. A text file contains alphanumeric text (say an.txt). Write a program that re…

Write a function in Python to count the number of lines in a text file STORY.TXT

Q. Write a function in Python to count the number of lines in a text file '…

Write a program to edit the phone number of Arvind infile phonebook.det. If there is no record for Arvind, report error.

Q. Write a program to edit the phone number of “Arvind” infile “phonebook.det”.…

Create a file phonebook.det that stores the details in following format:

Q. Create a file phonebook.det that stores the details in following format: Nam…

Write code to print just the last line of a text file data.txt.

Q. Write code to print just the last line of a text file 'data.txt'. …

Write a program that reads a text file and then create a new file where each character case is inverted.

Q. Write a program that reads a text file and then create a new file where each…

How many file objects would you need to manage the following situations

Q. How many file objects would you need to manage the following situations: (a)…

What type (Text/Binary) of file is Mydata?

Q. Observe the following code and answer the questions that follow: File = open…

Write a program using Dictionary and Text files to store roman numbers and find their equivalents.

Q. Write a program using Dictionary and Text files to store roman numbers and f…

Modify the program so that the lines are printed in reverse order.

Q. Consider the file “SarojiniPoem.txt” Autumn Song Like a joy on the heart of …

Write a method in Python to read lines from a text file DIARY.TXT and display those lines which start with the alphabet P.

Q. Write a method in Python to read lines from a text file DIARY.TXT and displa…

Write a method/function DISPLAYWORDS() in python to read lines from a text file STORY.TXT

Q. Write a method/function DISPLAYWORDS() in python to read lines from a text f…

Write a function countmy() in Python to read the text file DATA.TXT and count the number

Q. Write a function countmy() in Python to read the text file "DATA.TXT&qu…

Write a Python function to display details of those employees who are earning between 20000 and 40000.

Q. Consider a binary file Employee.dat containing details such as empno: ename:…

Load More That is All