General Flashcards

1
Q

What does I/OPS measure?

A

Storage device performance. Input/Output Operations Per Second. A measure of maximum device performance.

HDD up to 200 IOPS
SSD up to 1 Million IOPS

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

What is the OSI model?

A

Open Systems Interconnect (OSI) Model - A way of visualising and splitting network communication via 7 layers:

  1. Physical Layer - hardware
  2. Data Link - sends data packets from network to the hardware
  3. Network
  4. Transport
  5. Session
  6. Presentation
  7. Application - manages communications between applications, supports protocols like HTTP, SMTP (Email), FTP, data is human readable at this level.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What does logically mean?

A

As opposed to “physically”, done virtually. E.g. drives can be separated logically from each other using software as opposed to physically segregated by wires.

Using software to perform the jobs of hardware virtually - like SDN (Software Driven Networking - an example of managing networks logically as opposed to physically)

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

What is a SAN network?

A

Storage Area Network - centralised storage facility that generally uses its own private high speed network to handle the high data transfer rates required.

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

Which OS version does x86 refer to?

A

x86 refers to 32-bit OSs. As such 32-bit apps are installed in \Program Files (x86)

x64 refers to 64-bit OSs. Installed in \Program Files

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

Can a 32 bit OS run a 64 bit app/programme?

A

No. A 64 bit OS can run 32-bit apps but not vice versa (too many bits to handle).

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

What is ARM? And some features of ARM architecture.

A

A set of CPU architecture designs created by Arm Ltd. and licensed to other companies/manufacturers that build them.

Traditionally small form factor but very efficient. ARM CPU’s are generally used in IoT/Mobile devices.

Low TDP (Thermal Design Power) - don’t produce much heat.

Advanced RISC Machine (ARM).

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

In a dual core processor how many memory caches are there typically?

A

2x L1 caches - smallest memory size but fastest speeds
2x L2 caches - bigger memory than L1 but slower speeds
1x SHARED L3 cache - biggest memory, slowest speed

So there are 5 caches in a standard dual core processor/CPU.

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

What is multithreading (called Hyper-Threading Technology (HTT) by Intel)?

A

One CPU acting like two (but nowhere near as fast as using two would be). Increases the throughput of the processes going through the CPU (multiple threads instead of single thread).

A thread is a sequence of instructions given to the CPU.

Requires an OS that supports it as well as the app to support it.

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

What are threads in relation to the CPU?

A

Threads are sequences of instructions fed to the CPU. Like using multiple lanes on a motorway - if one is congested then a different thread/lane can be used as to not cause a massive traffic jam/time delay.

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

What is an Ampere/amp/A?

A

The rate of electrons moving past a point per second.

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

What is a Watt/W?

A

A measure of power consumption.

Volts (V) * Amps (A) = Watts (W)

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

How do you calculate wattage?

A

Volts (V) * Amps (A) = Watts (W)

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

How do you size a PSU wattage for a PC?

A

Sum the wattage of all components and double that number, this allows for PC expansion/upgrades.

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

What are the 3 voltages (Voltage Rails) of DC that a PSU converts the 240V AC into for the PC components?

A

3.3v, 5v, 12v Direct Current

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

What is sandboxing?

A

Using an isolated secure testing environment such as a VM (Virtual Machine) to build and test software in.

Bug-fixing, pen testing etc.

Can take a snapshot restore point to easily go back to where you were.

16
Q

What is the role of a Hypervisor?

A

Software used to run and manage the running of multiple OSs on a single computer (Virtualization).

Facilitates and manages Virtualization. Also called Virtual Machine Manager (VMM)

VM escaping - if malware can access hypervisor it can then spread to all OSs running.

17
Q

What is a bridged network address?

A

A bridged network/s address logically (via software) uses the same physical IP address of a single device via NAT - map multiple private IP addresses to one Public IP Addeess.

If the host IP is infiltrated all bridged networks are also exposed.

18
Q

What does attenuation refer to?

A

Reduction in signal strength.

19
Q

What is the purpose of HDCP - High-bandwidth Digital Content Protection?

A

To prevent the illegal copying of digital media as it travels through cables.

20
Q

What operates on 13.56MHz frequency short band?

A

NFC.

21
Q

What component converts touch pressure on a screen to digital signal?

A

Digitizer.

22
Q

What is MBR used for?

A

Master Boot Record (MBR) is legacy drive component/boot sector type that manages hard disk/drive partitions.

It initialises with a bootloader that scans the partition table for which drive to boot from.

Limit of 4 partitions per drive and maximum of 2TB size per partition.

It has been replaced by GPT.

23
Q

What is GPT?

A

GPT - Globally Unique ID Partition Table - is an upgraded version of MBR and manages drive partitions. It has two drive managers for redundancy and has a maximum of 128 partitions per drive and each logical partition has a maximum size of 19 million TB.

GPT is more secure that MBR and you can convert MBR to GPT via Disk Management in Windows.

24
Q

What does FAT stand for?

A

File Allocation Table (FAT) is a drive address book for what LBA (smallest memory drive block) contains what file/data.

25
Q

What is CDFS?

A

Compact Disk File System - is a disk based filing system used in DVD, Blu-Ray, CD, etc. Maximum storage of around 4GB.

26
Q

What OS uses Ext3 and Ext4 and why is 4 better?

A

Linux uses ext3 and ext4. ext4 supports bigger drives and file sizes.

27
Q

What OS uses the HFS+ file system on it’s drives?

A

macOS uses HFS+ file system to organise and access its files.

28
Q

What is a file system?

A

A way of organising and accessing data files.

29
Q

What is Degaussing?

A

Sending a MAGNETIC PULSE through a hard drive to corrupt/destroy all data on it.

30
Q

What is PnP?

A

Plug n’ Play technology - no configuration needed.