For reading input, which of the following system call is used?

🎲 Try a Random Question  |  Total Questions in Quiz: 18  |  🧠 Study this quiz with Flashcards
This question is part of a full practice quiz:
Unix Basics Practice Test: System Calls Basics — practice the complete quiz, review flashcards, or try a random question.

Unix system calls System calls are the way that a process communicates with the operating system kernel. They provide a way for processes to request services from the kernel, such as reading and writing files, creating and managing processes, and accessing hardware devices. System calls are typically implemented as functions that are exported by the kernel. When a process makes a system call, it traps into the kernel, which then executes the requested operation. Once the operation is complete, the kernel returns control to the process. There are many different system calls available in... Show more

For reading input, which of the following system call is used?