Computer Science, asked by Bips2004, 5 months ago

সিকোয়েন্সিয়াল ফাইল টীকা লেখ​

Answers

Answered by keyboardavro
1

Answer:

Explanation:

A sequential file contains records organized by the order in which they were entered. The order of the records is fixed. Records in sequential files can be read or written only sequentially. After you place a record into a sequential file, you cannot shorten, lengthen, or delete the record.

Steps to create (or write to) a sequential access file:

Create a handle to the file by passing the name of the file to a File object: ...

Establish the stream that PrintWriter will use: ...

Establish a try ... ...

Attach the stream to the file: ...

Write data to the file through the stream: ...

Close the file:

Similar questions