answersLogoWhite

0

Sequential access basically means accessing things one after the other in order. For example reading all the numbers from 1 to 10 by starting at 1, then 2, then 3 etc.

User Avatar

Wiki User

15y ago

Still curious? Ask our experts.

Chat with our AI personalities

MaxineMaxine
I respect you enough to keep it real.
Chat with Maxine
BeauBeau
You're doing better than you think!
Chat with Beau
ProfessorProfessor
I will give you the most educated answer.
Chat with Professor

Add your answer:

Earn +20 pts
Q: Meaning of sequential access method and example of it?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

Complexity of sequential search?

The simplest and slowest searching method; the only possible method when the data is unsorted and/or only sequential access is possible (eq. processing a tape file). I think he's looking for time complexity which I believe is just n


Difference between direct sequential file and index sequential file?

Explain the difference between sequential and direct file access.A. Sequential access to data is used when the data has to be read from the start, in sequence. It is the normal method of access for magnetic tape. Direct access is used when it is possible to jump directly to a file or data item without reading through all the items stored before it. This is the normal method used for hard disks.


What is Disk On Chip?

Disk on Chip is a non-volatile memory which has overcome the disadvantage of nand flash memory The difference is that NAND FLASH Access Method : Sequential Ease of use : Complex Easy Here memory management is highly complex not reliable DOC Access Method : Random For Code Sequential for data Ease of use : With help of TrueFFS Its pretty good and Highly reliable For more info go to M-systems Site:


What is meant by private visibilty of a method?

It means that the method is visible from only within the current method. Also, any class that wants to use or invoke the private method has to create an object of the class in which the method is created in order to access/invoke it. The private access modifier is the most restrictive of the four java access modifiers. The total opposite of private is public which gives access to everyone.


It is perfectly legal to any instance variable inside of a static method?

No. You will get compilation errors. The complier will complain that you are trying to access non static variables from inside a static method. A static method can access only static variables.