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
B
Correct answer
Explanation
The ff command is not a standard Linux/Unix command for finding files anywhere on the system. The correct and widely-used command for searching files system-wide is the find command. While ff could be a custom alias in some environments, it is not the standard or universally available tool.
C
Correct answer
Explanation
COBOL file status code 06 indicates an attempt to write to a file that was opened with INPUT mode (OPEN INPUT). Files opened for input are read-only, so write operations cause this specific error condition.
-
expand it to fit the desktop
-
fill it to capacity
-
put only like files inside
-
drag it to the trash
A
Correct answer
Explanation
Maximizing a window expands it to cover the entire desktop area, making it as large as possible while remaining visible. This is a standard GUI operation found in Windows, macOS, and other windowing systems. 'Filling to capacity' would refer to storage space, not window size.
A
Correct answer
Explanation
Among the listed formats, PNG typically has the highest compression efficiency in Flash, especially for images with large areas of solid color or vector-like graphics. Flash's PNG compression is very effective for web graphics. JPEG uses lossy compression, BMP is uncompressed, and GIF is limited to 256 colors, making PNG superior for many Flash applications.
-
Swf will run perfectly
-
Swf will not run
-
Swf will run but with an error
-
Flash will generate a new .as file
A
Correct answer
Explanation
When you publish a Flash movie, the ActionScript code (.as files) is compiled into the SWF file. The SWF is a standalone file that contains all necessary bytecode and assets, so it runs perfectly without the original .as files. The source files are only needed during development and for recompilation if you want to make changes.
-
_level0 will be same for both
-
_root will be same for both
-
_level0 will be different for both
-
None of them
A
Correct answer
Explanation
In Flash ActionScript, _level0 always refers to the main movie timeline at level 0 of the Flash Player, regardless of which SWF you're in. The _root property, however, is relative to each SWF's own main timeline. When 1.swf is loaded into 2.swf, _root in 1.swf refers to 1.swf's timeline, while _level0 remains the same global reference for both.
-
Movie Clip is dynamically attached
-
Movie Clip is physically laying on the root
-
Movie Clip is on _level0 only
-
Movie Clip is empty
A
Correct answer
Explanation
In ActionScript, the removeMovieClip() function only works on movie clip instances that were created dynamically at runtime (e.g., using attachMovie or duplicateMovieClip). Author-time timeline instances cannot be directly removed this way.
C
Correct answer
Explanation
The correct SAS syntax is 'ODS HTML FILE='file';' which specifies that HTML output should be written to a file. Option A shows this correct syntax. Option B reverses the order, Option C is incomplete, and Option D doesn't specify the file destination.