Exam Knowledge Flashcards

(55 cards)

1
Q

More modern computers have motherboard-mounted mouse and keyboard functionality, but in the past they required what?

A

ISA Cards

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Expansion cards are what?

A

Circuit boards that are inserted into expansion slots. the cards communicate with the system via expansion buses.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What purpose does POST serve?

A

Test the system at startup.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Expansion cards are also called what?

A

Adapter cards.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Virtual Memory + RAM =

A

Swap File

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Transistors open and close circuits in a computer. True/False

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What are specific instructions stored on a ROM chip called?

A

Firmware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

DRAM has a smaller physical size than SRAM. True/False

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

DRAM requires what to maintain contents?

A

Refreshing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

SDRAM is triggered by a clock pulse. True/False

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

A PROM chip can only be programmed once. True/False

A

True

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

When was the first integrated circuit introduced?

A

1950s

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Buses or integrated circuits are etched onto computer chips?

A

Integrated circuits.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

SRAM stores each bit of data in a separate transistor and resistor. True/False

A

False

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

What is the DOS command to make a directory?

A

md or MKDIR

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

What is the Unix command to make a directory?

A

mkdir

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
17
Q

Which DOS command is used to display the contents of a file?

A

type

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
18
Q

What is the Unix command to change your password?

A

passwd

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What is the Unix command to display the contents of a file?

A

cat

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
20
Q

chmod 751 results in what permissions?

A

rwx r_x __x

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
21
Q

Where is the bootstrap loader stored?

A

BIOS.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
22
Q

BIOS stands for what?

A

Basic Input/Output System

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
23
Q

A journalling file system prevents what?

A

Inconsistency

24
Q

Character devices transfer data how?

A

One byte at a time. E.g. Printer

25
Block devices transfer data how?
A fixed length string of bytes. E.g. Disk
26
With Unix file systems it is possible to delete executing programs while they're running without crashing. True/False
True
27
Does NTFS or FAT32 have a larger maximum partition size?
NTFS.
28
Modern operating systems are interrupt what?
Driven.
29
An interrupt causes a block of code to run called a what?
Interrupt handler.
30
RAID is what?
Redundant Array of Independent Disks
31
Hardware interrupts are generated by what?
I/O devices.
32
What is a file that contains only ASCII characters?
A text file.
33
A file that contains data in machine format is a what?
Binary data file.
34
A program that contains runnable program code is a what?
Executable.
35
Files are organised in a heirachical groupings called what?
Directories.
36
What differentiates between files of the same name?
The full path.
37
What is thrashing?
An excessive amount of page swapping between main memory and secondary storage. Requires more RAM to increase performance.
38
How do you find out what your shell is?
echo $SHELL
39
How do you stop a process with PID 567?
kill 567
40
How do you do number comparisons in shell scripting?
-eq for equals, -gt, -lt, -ne is not equals, -ge greater or equals, -le,
41
What are the boolean operators in shell scripting?
! tests for not, -a tests for and, -o tests for or
42
How do you remove a directory in Unix and DOS?
rmdir/RMDIR
43
How do you copy a file in Unix and DOS?
cp
44
How do you copy recursively in DOS?
XCOPY
45
How do you copy recursively in Unix?
cp - r
46
How do you search for a word in a file in DOS?
FIND "word" *
47
How do you search for a word in Unix, in a directory, recursively?
grep -r "word" *
48
How do you rename a file in DOS?
RENAME
49
How do you rename a file in Unix?
mv
50
How do you change directory in DOS or Unix?
CD/cd
51
How do you get help in DOS or Unix?
HELP / man
52
How do you change file permissions in Unix?
chmod
53
How do you show running processes in Unix?
ps
54
How do you compress files in DOS and Unix?
ZIP / zip or gzip
55
How do you format a disk in DOS and Unix?
FORMAT / mke2fs