OCR Computer Science A Level - Data Types

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/18

flashcard set

Earn XP

Description and Tags

A collection of vocabulary flashcards covering key terms and concepts related to data types in Computer Science.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

19 Terms

1
New cards

Primitive data types

Basic types of data that include Integer, Real, Character, String, and Boolean.

2
New cards

Integer

A whole number that can be positive, negative, or zero, without a fractional part.

3
New cards

Real

Numbers that can have a fractional part, which can be positive or negative.

4
New cards

Character

A single symbol used by a computer, including letters, digits, and symbols.

5
New cards

String

A collection of characters used to represent text.

6
New cards

Boolean

A data type that can only hold two values: True and False.

7
New cards

Binary

A base-2 number system used by computers that uses only 0s and 1s.

8
New cards

Hexadecimal

A base-16 number system that uses digits 0-9 and letters A-F to represent values.

9
New cards

Two’s complement

A method for representing negative numbers in binary systems.

10
New cards

Normalisation

The process of adjusting the representation of floating point numbers to maximize precision.

11
New cards

ASCII

A character encoding standard using 7 bits, representing 128 characters.

12
New cards

Unicode

A character encoding standard that supports over 1 million characters using a varying number of bits.

13
New cards

Floating point

A way to represent real numbers in binary that includes a mantissa and an exponent.

14
New cards

Bitwise manipulation

Operations performed on binary numbers at the level of individual bits, including AND, OR, and XOR.

15
New cards

Sign magnitude

A method of representing negative numbers in binary by using a leading bit to indicate the sign.

16
New cards

Shifts

Operations that move all bits in a binary number to the right or left, effectively multiplying or dividing by powers of two.

17
New cards

Character set

A collection of codes that correspond to characters, used for text representation in computing.

18
New cards

Mantissa

The part of a floating point number that contains its significant digits.

19
New cards

Exponent

The part of a floating point number that represents the scale of the number.