A1.2 Computer Science Vocab

0.0(0)
studied byStudied by 0 people
0.0(0)
full-widthCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/55

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

56 Terms

1
New cards

Binary Numbers

Language of modern computers, represents values using 0 and 1.

2
New cards

Transistors

Operate in binary, can turn electricity on and off.

3
New cards

Hexadecimal

base-16 number system that uses 16 distinct symbols to represent values. Decimal: base 10, 0-9

Binary: base 2, 0,1

Hex: base 16, 0-9, A-F, 0-f

4
New cards

ASCII encoding (American Standard Code for Information)

used to store characters and strings that are used as the standardized binary schemes enabling consistent storage.

Created to have a universal standard for interchange of text data. basic English letters, digits, control codes

5
New cards

Unicode

Created to solve the problem of various countries having multiple systems for languages.

Holds all the languages in the world

Includes languages, characters, emojis and mathematical and other technical symbols.

6
New cards

UTF-8

encodes 1-4 bytes per character, most commonly used encoding with ASCII.

7
New cards

UTF-16

2-4 bytes per character, 2 16-bit code units are used.

8
New cards

UTF-32

4 bytes per character, less common due to higher storage requirements.

9
New cards

Bitmap

reproduce images by using a grid of pixels, each pixel assigned a specific color and intensity.

10
New cards

Image resolution

Amount of detail an image holds, measured in pixels.

11
New cards

Calculation of an image

image size = width (pixels) height(pixels) color depth(bits per pixel)

12
New cards

Metadata

Information that is given about the file or data itself. "Data about data"

13
New cards

Analogue

information represented in a continuous form such as sound waves and not in discrete form like in digital.

14
New cards

Pixel

short for picture element, smallest unit of digital image, represents a single point in the image with a specific color and intensity.

15
New cards

Resolution

Increasing the number of pixels, higher resolution allows for greater detail and clarity and image with lower resolutions can lead to a loss of detail and a pixelated appearance.

16
New cards

Color depth

Increasing the number of colors, the number of bits used to represent the color of each pixel in a digital image. When color depth increased, a wide range of colors can be depicted.

17
New cards

Audio

Type of analogue form, continuous signal that represents sound waves through variations of air pressure.

18
New cards

Analogue to digital conversion (ADC)

converting an analogue signal into discrete signals.

19
New cards

Amplitude

magnitude of change in a sound wave, representing loudness or intensity of the sound.

20
New cards

Sampling

measuring analog signals at regular intervals to turn into digital form.

21
New cards

kHz (Kilohertz)

equal to 1000 cycles per second, commonly used to measure the sampling rate of audio signals.

22
New cards

Ways to store audio

WAV, AIFF, MP3, FLAC

23
New cards

Uncompressed formats

digital file types that store data, such as audio, video, or images, with no reduction in the original information.

24
New cards

Compressed formats

use algorithms to reduce the file size for storage or transmission.

25
New cards

Audio compression

reduce the file size by removing parts of the audio signal that are less noticeable to human senses.

26
New cards

WAV, AIFF, MP3, FLAC Compressed or uncompressed?

WAV~ Uncompressed

AIFF~ Uncompressed

MP3~Compressed

FLAC~ Compressed

27
New cards

Video

Made up of components that are all contained within an encapsulated container format such as MP4, MMKV, OR AVI. Stored as a sequence of still images, known as "frames".

28
New cards

Frames

Can be represented using a color model such as RGB. Stored same as images, each pixel having a value that can be represented using a color model.

29
New cards

Spatial compression

reduces file size by eliminating redundant information within each frame.

30
New cards

Temporal compression

Used for video that has consistent motion across frames, reduces file size by eliminating redundant information between consecutive frames, only capturing the changes or movements from one frame to the next.

31
New cards

Unsigned Binary

only represents positive integers using straightforward binary digits.

32
New cards

Signed binary

representing both positive and negative integers.

33
New cards

Two complements

Main way computers represent negative numbers in binary.

34
New cards

One's complement

Used to reperesent negative numbers in binary

35
New cards

Sign magnitude

Significant bit serves as the sign indicator with 0 representing positive numbers and 1 representing negative numbers.

36
New cards

Binary-coded decimal

exact decimal representation is crucial.

37
New cards

Gray code

only one bit changes between any two consecutive numbers

38
New cards

Excess-N

where a fixed bias (N) is added to the actual value to form an encoded value, you subtract this bias to decode it.

39
New cards

Fixed point representation

method used to store real numbers in binary by fixing the position of the binary point.

40
New cards

Floating point representation

describes how close a floating-point number can get to the exact real number it's trying to represent.

41
New cards

Basic gates

building various types of circuits within computers and other digital devices. Include AND, OR AND NOT gates.

42
New cards

Logic gates

made up of transistors, act as electronic switches, allowing or blocking the flow of electrical current.

43
New cards

AND gate

has two inputs and one output

44
New cards

OR gate

takes two inputs instead of one BUT will equal 1 more times.

Input = 0 and 1, output = 1

Input = 1, 0 , output=1

Input = 0,0 = output = 0

45
New cards

NOT gate

takes a single input and inverts it so the output is the opposite of whatever the input is.

46
New cards

Derived gates

Combinations of basic gates and provide more complex logic functions.

47
New cards

NAND gate (Not And)

constructed with an AND gate and followed by a NOT gate. Gives the opposite output to an AND gate.

48
New cards

NOR gate (NOT OR)

gives the opposite output to an OR gate as it is constructed using an OR gate followed by a NOT gate.

49
New cards

XOR gate

Outputs a 1 when exactly an input is a 1.

If input of A is one or input of b is 1, the output is 1.

If both inputs have the same value both 0s or 1s, then the output is 0.

50
New cards

XNOR Gate

Constructed using an XOR gate followed by a NOT gate. Outputs 1 instead of zero like XOR gate.

51
New cards

Karnaugh maps (K-maps)

tool that helps simplify Boolean expressions makes it easier to create simpler and more efficient digital circuits.

52
New cards

Two inputs

used for expressions with two variables.

53
New cards

Boolean Algebra

Math with true/false values using logical operations

54
New cards

Bits:

the smallest piece of data a computer can use, represented by a single 0 or 1

55
New cards

Bytes

group of 8 bits, represents one character (letter or number)

56
New cards

Stereo

method of sound reproduction that uses two or more audio channels to create the perception of sound coming from different directions.