answersLogoWhite

0


Best Answer

Two file modes are "text" and "binary". Text is used for human readable data, such as a C source file, or a notepad text file. Binary is used for computer readable data, such as an executable object file.

Two other file modes are "sequential" and "random". Sequential is used when the file is accessed serially, from the beginning to the end, and can be used for both text and binary files. Random is used when the file is accessed non-serially, often jumping around from place to place. An example of random is a database file.

User Avatar

Wiki User

13y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is an explanation of the file modes briefly?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the modes of accessing a file?

"text" and "binary"


How do you briefly explain the Doppler effect?

By keeping the explanation short.


What is an explanation of the hash file organization?

hash file organisation is containing the record of the file.


What are the detail explanation of addressing modes of Intel core I'3?

adressin mode for dual core


What message does excel briefly indicate on status bar while saving your file?

the amount of the file saved


What two modes of data transfer does File Transfer Protocol support?

FTP (File Transfer Protocal) supports both ASCII & Binary.


How do you upload pictures on superclubs?

Go to library and then click upload. You have to select a file and a folder for the file to go into. You also need to briefly describe it. Hope this helped (:


What is an explanation of operations of GSM?

Check related link of a file for "HOW GSM WORKS".


What do bus bicycle train and car have in common?

they need better explanation


What are various modes of opening a file?

Depends on the followings:The file storage locationThe operating system of the program/software tries to open the fileWhat the computer language was written in of that software to open the fileSome languages may supply different ways to open a file in their library code, some may not supply any.For those do, usually, the modes are:Read only (implies the file must exist, sequential or random access)Write (file may not exist, may be sequentially or random access)Append (file may not exist, write to the end of file)


What are file modes in c plus plus?

I guess you mean either input/output/inout/append or binary/text.


How do you copy a file in unix?

Using the `cp' command. It works in two modes, `cp source dest' for when you want to change the name of the file and `cp source... destdir/' for when you want to move the file to a different directory while keeping it's name.