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 technology operating systems
  1. True

  2. False

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology
  1. expand it to fit the desktop

  2. fill it to capacity

  3. put only like files inside

  4. drag it to the trash

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology web technology
  1. Png

  2. Jpeg

  3. Bmp

  4. Gif

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology web technology
  1. Swf will run perfectly

  2. Swf will not run

  3. Swf will run but with an error

  4. Flash will generate a new .as file

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology web technology
  1. _level0 will be same for both

  2. _root will be same for both

  3. _level0 will be different for both

  4. None of them

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology web technology
  1. Movie Clip is dynamically attached

  2. Movie Clip is physically laying on the root

  3. Movie Clip is on _level0 only

  4. Movie Clip is empty

Reveal answer Fill a bubble to check yourself
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.

Multiple choice technology programming languages
  1. c

  2. b

  3. a

  4. d

Reveal answer Fill a bubble to check yourself
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.