In the files, if order of operation on two or more files are similar, then operation will be
Answer Details
If the order of operation on two or more files is similar, then the operation will be sequential.
Sequential operation means that the files will be processed one after the other in the same order as specified. For example, if we have two files A and B, and we want to perform the operations 'read', 'process', and 'write' on them in the order A->B, then the program will first read file A, process it, write the result, then move on to file B, read it, process it, and write the result.
On the other hand, if the order of operation is not similar, the operation may be more complex or combinational. In that case, the files may be processed in a different order or simultaneously, which may require more complex programming logic.
Therefore, having a similar order of operation on multiple files simplifies the programming and makes it more straightforward.