Computer Knowledge

Computer File Systems

1,516 Questions

Computer file systems dictate how data is stored, organized, and retrieved on storage devices. Important concepts include file allocation tables, access mechanisms, and various formats like sequential and video files. Candidates preparing for banking and government exams should practice these fundamentals thoroughly.

File access mechanismsVideo and password filesFile extensionsFile allocation tableSystem metadata

Computer File Systems Questions

Multiple choice
  1. file_put_string

  2. file_put_contents

  3. file_put_char

  4. none of these

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

file_put_contents() is the correct PHP function for writing a string to a file. It can write data to a file in a single call, optionally with flags like FILE_APPEND (to add to existing content) or LOCK_EX (to get an exclusive lock). This is simpler than the traditional fopen/fwrite/fclose sequence.