Search Header Logo
Ch13 : Data representation

Ch13 : Data representation

Assessment

Presentation

Computers

10th Grade

Practice Problem

Easy

Created by

Ala Jaber

Used 7+ times

FREE Resource

38 Slides • 49 Questions

1

media

2

media

3

Multiple Choice

What is the defined list of characters recognised by a computer’s hardware and software called?

1

ASCII code

2

Character set

3

Interchangeable

4

Data stream

4

Multiple Choice

Why is it important for computers to use a standard code like ASCII for representing text?

1

To ensure data can be exchanged between different computers and manufacturers

2

To make computers faster

3

To reduce the size of the keyboard

4

To improve the graphics quality

5

Multiple Choice

ASCII stands for:

1

a) American Standard Code for Information Interchange

2

b) Advanced Symbol Chart for Integrated Input

3

 c) Automatic System Coding Interface

4

d) Analogue Signal Code Interpretation

6

media

7

media

8

Multiple Choice

ASCII is mainly used to:
     

1

a) Store images

2

b) Represent characters in binary form

3

c) Measure sound

4

d) Convert signals

9

Multiple Choice

How many bits were originally used in the ASCII code, and how many characters could be represented?

1

7 bits, 128 characters

2

8 bits, 256 characters

3

6 bits, 64 characters

4

5 bits, 32 characters

10

Multiple Choice

Question image

ASCII is a character-encoding scheme that uses a numeric value to represent each character. For example, the uppercase letter “G” is represented by the decimal (base 10) value 71. A partial list of characters and their corresponding ASCII values are shown in the table above.


ASCII characters can also be represented by binary numbers. According to ASCII character encoding, which of the following letters is represented by the binary (base 2) number 1010100?

1

N

2

P

3

T

4

W

11

Fill in the Blanks

12

Multiple Choice

Which of the following ASCII code ranges represent upper-case alphabetic characters, lower-case alphabetic characters, and numeric characters 0 to 9?

1

65-90 for upper-case, 97-122 for lower-case, 48-57 for numeric

2

48-57 for upper-case, 65-90 for lower-case, 97-122 for numeric

3

97-122 for upper-case, 65-90 for lower-case, 48-57 for numeric

4

65-90 for upper-case, 48-57 for lower-case, 97-122 for numeric

13

media

14

media

15

media

16

media

17

Match

Match each term to its correct definition:

The encrypted version of a message created using a key

Changing encoded information back into readable form

Changing information into a code so it cannot be read by everyone

Changing information into a different form so it can be read by a computer

The person for whom the message is intended

Cipher

Decrypt

Encrypt

Encode

Intended recipient

18

Multiple Choice

Question image

What is the answer?

1

01001110

2

01111000

3

10011100

4

01000111

19

Multiple Choice

Question image

What is the answer?

1

A

2

B

3

C

4

D

20

media

21

Multiple Choice

What would ord('c') return?

1

a) ‘c’

2

 b) 100

3

c) 99

4

 d) ‘d’

22

Multiple Choice

What would chr(100) return?

1

a) 100

2

b) ‘d’

3

c) 99

4

d) ‘c’

23

Multiple Choice

What does the ord() function do?

1

a) Returns a random number

2

 b) Converts binary to hexadecimal

3

 c) Returns the denary (ASCII) code of a character

4

d) Encrypts a message

24

Multiple Choice

Which Python functions are used to convert a character to its ASCII code and vice versa?

1

ord() and chr()

2

ascii() and code()

3

char() and num()

4

asc() and dec()

25

Fill in the Blanks

26

media

27

Multiple Choice

What is the purpose of the ord() function in the pseudocode shown?

1

To convert a character to its denary code

2

To convert a number to a character

3

To display a string on the screen

4

To receive input from the keyboard

28

media

29

Multiple Choice

How does the chr() function help in building up a string from user input according to the algorithm shown?

1

It converts denary codes to characters and appends them to a string

2

It converts characters to denary codes

3

It sorts the string alphabetically

4

It removes spaces from the string

30

Drag and Drop

To turn information into a code so that it cannot be read by everyone​
To change encoded information back to its original form​
To change information into a different form so a computer can read it​
The person that the message is written for​
Drag these tiles and drop them in the correct blank above
Encrypt
Decrypt
Encode
Intended recipient

31

media

32

Multiple Choice

What is the purpose of the ord() function in pseudocode?

1

a) It returns the next character in the alphabet.

2

b) It converts a number into a character.

3

c) It takes a character as a parameter and returns its denary (ASCII) code.

4

d) It prints text to the screen.

33

media

34

Fill in the Blanks

35

media

36

media

37

Multiple Select

Which of the following are reasons for the development of the extended ASCII code (Choose three answers)?

1

Need for more characters to support foreign languages

2

Need for more mathematical symbols

3

To reduce the number of printable characters

4

To accommodate special symbols for drawing pictures

38

media

39

Multiple Choice

Unicode can represent more characters than ASCII.

1

True

2

False

40

Multiple Choice

What problem did the Unicode Consortium aim to solve, and how does Unicode address this problem?

1

It aimed to solve the problem of limited color depth in images by introducing more colors.

2

It aimed to solve the problem of multiple versions of ASCII by developing a universal standard for text representation.

3

It aimed to solve the problem of image resolution by increasing the number of pixels per inch.

4

It aimed to solve the problem of file size by compressing text files.

41

Multiple Choice

Why was Unicode developed?

1

To replace binary code

2

To provide a universal character set for all languages

3

To improve internet speed

4

To reduce file sizes

42

Multiple Select

Question image

Select three answers:

1

All of the major languages/symbols/characters can be represented by Unicode because it uses a minimum of 16 bits/more bits/32 bits/65536 characters

2

Unicode can represent all/more characters/any language whereas ASCII can only represent English/Latin/128 characters/doesn’t have enough characters

3

Unicode can represent all characters because it uses 16 bits/2 bytes /more bits instead of 8 bits/1 byte

4

Unicode uses fewer bits than ASCII, and Unicode is faster to type than ASCII.

43

media

44

Multiple Choice

Image resolution refers to:

1

The number of colours

2

The file format

3

The number of pixels (width × height)

4

The bit depth

45

media

46

Multiple Select

Which of the following statements about pixels and resolution is/are correct (choose three answers) ?

1

A pixel is the smallest single point of color in a graphic image.

2

Resolution refers to the number of pixels per inch when an image is displayed.

3

Higher resolution means fewer pixels per square inch.

4

Lower resolution images show less detail.

47

media

48

Fill in the Blanks

49

media

50

media

51

Multiple Choice

If 1 bit is used to represent each pixel, how many different colors can be displayed in the image?

1

1

2

2

3

8

4

256

52

media

53

media

54

Multiple Choice

Which formula is used to calculate the file size of a bitmap image?

1

Width × Height × Colour depth

2

Width + Height + Colour depth

3

Width × Height ÷ Colour depth

4

Width + Height × Colour depth

55

media

56

media

57

Multiple Choice

Which characteristics of a sound wave determine its loudness and pitch?

1

Amplitude and frequency

2

Wavelength and speed

3

Amplitude and wavelength

4

Frequency and speed

58

media

59

Multiple Choice

What does analogue recording represent?

1

a) Changes in binary code

2

 b) Continuous changes in air pressure caused by sound waves

3

c) Data stored as 1s and 0s

4

 d) Voltage changes represented in bits

60

Multiple Choice

The changes in voltage in analogue recording are directly:

1

Opposite to air pressure

2

Proportional to the changes in air pressure

3

Random to air pressure

4

Unrelated to air movement

61

Multiple Choice

What causes a speaker’s diaphragm to vibrate in analogue playback?

1

Voltage reduction

2

Amplified voltage changes

3

Sound compression

4

Quantised bits

62

media

63

media

64

Multiple Choice

What term means increasing the strength of a sound?

1

Sampling

2

Amplification

3

Quantisation

4

Resolution

65

Multiple Choice

Which medium is mentioned as an example of analogue sound storage?

1

Compact disc

2

Flash drive

3

Vinyl record

4

SD card

66

Fill in the Blanks

67

Multiple Select

Which of the following statements are true about digital recording?

1

Digital recordings use a series of sound 'snapshots' called samples.

2

Continuous change can be represented by a digital stream.

3

Sound data must be represented as streams of 1s and 0s.

4

Sampling is the process of taking measurements of a sound wave at regular intervals.

68

media

69

Multiple Choice

What does each vertical line in the sound wave diagram represent?

1

One waveform

2

One sample of the sound

3

One bit

4

One frequency

70

media

71

Multiple Choice

Digital sound recordings can be easily edited, copied, and shared on different digital media.

1

True

2

False

72

Multiple Choice

Which of the following is not an advantage of digital sound recording compared to analogue recording?

1

a) It is easily copied.

2

b) It can be edited using computer equipment.

3

c) It does not physically deteriorate with use.

4

d) It always has higher accuracy than analogue recording.

73

media

74

media

75

Multiple Choice

The number of bits used per sample is called:

1

Sampling rate

2

Resolution rate

3

Bit depth (or sample resolution)

4

File rate

76

Match

Match the following

Can be easily copied or transferred between digital devices

To get worse over time, though digital files do not physically do this

The degree of similarity between the original sound and the recorded sound

Converts digital sound data back into an analogue wave

Converts sound waves into a digital stream of 1s and 0s

Portable

Deteriorate

Fidelity

Digital-to-Analogue Converter (DAC)

Analogue-to-Digital Recorder (ADR)

77

media

78

Multiple Choice

File size of a sound file depends on:

1

Sampling rate, bit depth, and duration

2

Screen resolution

3

Character encoding

4

File extension

79

media

80

media

81

media
media

82

media

83

media

84

Multiple Choice

What is the purpose of using an industry standard like ASCII code in computers?

1

To ensure data can be exchanged between different computers and manufacturers

2

To increase the speed of data processing

3

To reduce the size of computer hardware

4

To improve the quality of images displayed

85

Match

Match the following

Assigning binary values to sampled signals

Number of samples per second

Number of bits used for each sound sample

Measuring the amplitude of an analogue signal at regular intervals

Quantisation

Sample rate

Sample resolution

Sampling

86

Drag and Drop

Number of bits used to represent each colour​
Smallest element of a bitmap image​
Image made up of a grid of pixels​
Image described using mathematical shapes​
Drag these tiles and drop them in the correct blank above
Colour Depth
Pixel
Bitmap image
Vector image

87

Dropdown

Data that varies continuously​ ​
Data represented by discrete binary values​
Character encoding for English letters and symbols​
Extended character encoding for global languages​
media

Show answer

Auto Play

Slide 1 / 87

SLIDE