In Windows, what is the maximum file size limit supported natively by the older FAT32 file system? MCQ with Answer and Explanation

In Windows, what is the maximum file size limit supported natively by the older FAT32 file system?
A. 16 GB
B. 2 GB
C. 4 GB
D. unlimited
Answer: Option C
Solution (By JKSSB Mock Tests)
The FAT32 file system carries a strict architectural limitation where single individual files cannot exceed 4 GB in size.

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Operating Systems Questions

Question #1
What is the purpose of a 'Swap Partition' or 'Swap File' in operating systems like Linux and Windows?
A. To back up personal files in case of accidental file deletion.
B. To speed up network data packet transfers.
C. To hold graphical system themes.
D. To act as dedicated overflow storage on a hard disk when physical RAM memory capacity becomes completely full.

Correct Answer: Option D


Explanation:
Swap space provides extended virtual memory capacity on secondary storage to prevent system crashes when physical RAM is exhausted.

This question belongs to: Computer Operating Systems
Question #2
What is the main benefit of using threads over processes for multitasking?
A. Threads are easier to implement
B. Threads share memory space, reducing context-switching overhead and communication costs
C. Threads can run on multiple cores simultaneously
D. Threads are more secure

Correct Answer: Option B


Explanation:
Threads within the same process share memory and resources, making context switching and inter-thread communication faster and less resource-intensive.

This question belongs to: Computer Operating Systems
Question #3
Which of the following is a process scheduling algorithm that allocates CPU to the process with the shortest remaining time?
A. Round Robin
B. Shortest Job First (SJF)
C. Priority Scheduling
D. Multilevel Queue

Correct Answer: Option B


Explanation:
SJF selects the process with the shortest total execution time; the preemptive version is Shortest Remaining Time First (SRTF).

This question belongs to: Computer Operating Systems