cambridge computer science as semester 1 finals

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

1/695

flashcard set

Earn XP

Description and Tags

cambridge computer science as, mrs. preston

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

696 Terms

1
New cards

What does ASCII stand for?

American Standard Code for Information Interchange

2
New cards

The number of character that can be represented in ASCII-7 are

128

3
New cards

The number of character that can be represented in ASCII-8 are

256

4
New cards

What is the aim of Unicode?

Representing all characters with 1 system

5
New cards

Why does the correction factor of 0110 work in Binary Coded Decimals?

The correction factor 6 is used because a nibble can represent up to 15, yet a BCD can only express up to 9. The 6 carries it to the next nibble.

6
New cards

What are integers?

non-decimal numbers

7
New cards

What are signed integers?

integers with signs (e.g. -1)

8
New cards

What are unsigned integers?

integers without signs (e.g. 1)

9
New cards

Given the following decimal prefix, state its abbreviation and value: kilo

k, 10³

10
New cards

Given the following decimal prefix, state its abbreviation and value: mega

M, 10^6

11
New cards

Given the following decimal prefix, state its abbreviation and value: giga

G, 10^9

12
New cards

Given the following decimal prefix, state its abbreviation and value: tera

T, 10^12

13
New cards

Given the following binary prefix, state its abbreviation and value: kibi

Ki, 2^10

14
New cards

Given the following binary prefix, state its abbreviation and value: mebi

Mi, 2^20

15
New cards

Given the following binary prefix, state its abbreviation and value: gibi

Gi, 2^30

16
New cards

Given the following binary prefix, state its abbreviation and value: tebi

Ti, 2^40

17
New cards

What is One’s Complement?

a binary obtained by subtracting each binary digit from 1

18
New cards

What is Two’s Complement?

a binary obtained by adding 1 to One’s Complement

19
New cards

What is overflow?

a condition when the result is larger than capacity

20
New cards

What is BCD?

Binary Coded Decimal

21
New cards

What is a vector graphic?

a graphic consisting of drawing objects defined in a drawing list

22
New cards

What are examples of attributes for objects’ properties?

center and radius (of a circle), thickness, line style, line color, color that fills shape

23
New cards

What is a drawing object?

a component defined by geometric formulae and associated properties

24
New cards

What is a drawing list?

contains 1 set of values for each drawing object

25
New cards

What is a property?

defines 1 aspect of appearance of drawing object

26
New cards

What is an important property?

dimensions of objects are not defined explicitly, but are defined relative to images canvas

27
New cards

What are bitmaps?

2D array of pixels

28
New cards

What is a pixel?

smallest identifiable component of bitmap, has position in matrix and color

29
New cards

What is color depth?

number bits per pixel

30
New cards

What is bit depth?

number of bits used to store red, green, and blue in RGB scheme

31
New cards

What is resolution?

product of number of pixels per row and column

32
New cards

What is image resolution?

defined in bitmap file

33
New cards

What is screen resolution?

ability of device showing image

34
New cards

What is a file header?

contains information on how graphic was constructed

35
New cards

Vector graphic versus Bitmap:

a. _____ is chosen if a diagram is needed to be constructed for part of an architectural, engineering, manufacturing design.

Vector graphic

36
New cards

Vector graphic versus Bitmap:

b. Printing the image on laser or inkjet printer a _____ should be used.

bitmap

37
New cards

Vector graphic versus Bitmap:

c. Digital camera produce _____ images.

bitmap

38
New cards

Vector graphic versus Bitmap:

d. _____ is first choice for insertion of an image into document, publication, or web page.

Bitmap

39
New cards

Vector graphic versus Bitmap:

e. Generally images are stored as _____.

bitmaps

40
New cards

Vector graphic versus Bitmap:

f. _____ is scalable.

Vector graphic

41
New cards

Vector graphic versus Bitmap:

g. A _____ files contains a drawing list with commands for each object included in the image.

vector graphic

42
New cards

Sound consists of a large number of _____, each with a defined _____.

waves, frequency

43
New cards

Storing sound requires converting the _____ sound signal to _____.

analog, digital

44
New cards

Two factors that determine the quality of the sound recording are _____ and _____.

sampling rate, sampling resolution

45
New cards

Define sampling resolution

number of bits used to store each value

46
New cards

Define sampling rate

number of samples taken per second

47
New cards

Define analog data

data obtained physically with values within continuous range

48
New cards

Define digital data

data stored as binary values from discrete range

49
New cards

Define sampling

taking measurements at regular intervals and storing them

50
New cards

List two types of compression

lossy and lossless

51
New cards

Since all data is binary, which type of compression can be used for all files?

lossless

52
New cards

Which compression has specialized applications developed for particular file types?

lossy

53
New cards

Text files require which type of compression?

lossless

54
New cards

Give one example where lossy compression will be useful.

Lossy compression is useful to use less storage for a file

55
New cards

Give one example where lossless compression will be useful.

Lossless compression is needed for text files because no information can be lost.

56
New cards

What is a WAN?

Wide Area Network, a system of networks across a large area.

57
New cards

List three benefits of having a WAN

  1. A “job” could be run on a remote computer that had the required application software.

  2. A data archive that was stored on a remote computer could be accessed.

  3. A message could be transmitted electronically to a user on a remote computer.

58
New cards

List five characteristics of a WAN

  1. It will be used by organization or company to connect sites or branches.

  2. It will not be owned by the organization or company.

  3. It will be leased from a PSTN.

  4. A dedicated link will be provided by the PTSN.

  5. Transmission within the WAN will be switch to switch.

59
New cards

Define end systems

either a user workstation or server

60
New cards

Define server

a system providing a service to end systems

61
New cards

What is a LAN?

Local Area Network, a system of networks in a small area

62
New cards

List five benefits of having a LAN

  1. save expenses of installing application software by attaching to LAN

  2. file server attach to LAN to store larger files and allow file sharing

  3. 1 or more printers attached to print server connected to LAN

  4. use electronic mail to communicate

  5. “paper-less office”

63
New cards

List five characteristics of a LAN

  1. used by organization or site within site or branch

  2. owned by organization or computer

  3. one of many LANs

  4. transmission medium is twisted pair cable or WiFi

  5. contain device allowing connection to other networks

64
New cards

Describe the two options for client-server model are

  1. thin-client: client only provides input

  2. thick-client: client involved in some processing

65
New cards

Describe three approaches when it is appropriate to use client-server architecture

  1. server stores databases

  2. server stores web applications for information

  3. server stores web applications for e-commerce and financial transaction

66
New cards

Describe peer-to-peer network file sharing

peers act as clients to seek files

67
New cards

Describe peer-to-peer file network file sharing advantages over client-server downloading

  1. avoids network congestion

  2. parts of file downloaded separately

  3. parts available from multiple hosts

68
New cards

Describe client-server file network file sharing advantages

  1. organizations control download and usage of files

  2. better protected from malware

69
New cards

Five requirements for a data communication systems

a. sender

b. receiver

c. transmission medium

d. message

e. protocol

70
New cards

Define simplex mode

one-way data flow

71
New cards

Define half duplex mode

data flow in either direction, but not simultaneous

72
New cards

Define full duplex

data flow in both ways

73
New cards

Define broadcast message

one-to-all communication

74
New cards

Define multicast message

one-to-many communication

75
New cards

Define unicast message

one-to-one communication

76
New cards

A bus topology has _____ link but it is shared by a number of _____.

1, end systems

77
New cards

Therefore, a bus topology is described as a _____-point connection.

multi

78
New cards

In a bus topology, _____ messages are _____ even if intended for one end-system.

all, broadcast

79
New cards

A bus topology is _____ because a fault in one end-system or in the link to it _____ effect the use of the network.

resilient, does not

80
New cards

A mesh topology each _____ has a point-to-point connection to each of the other end systems.

end system

81
New cards

In a mesh topology, transmission is _____.

duplex

82
New cards

In a mesh topology, messages can be sent in 3 ways: _____, _____, and _____.

unicast, multicast, broadcast

83
New cards

A mesh topology may be unrealistic due to?

amount of cabling needed

84
New cards

A mesh topology can be used when individual _____ switches are _____in a network.

LAN, connected

85
New cards

A mesh topology is essential for the _____ of _____ within the infrastructure of the internet.

connect, routers

86
New cards

What is a router?

device that acts as a node

87
New cards

In a star topology each end system has a _____-to-_____ connection to a _____ device.

point, point, central

88
New cards

In a star topology, transmission is _____.

duplex

89
New cards

In a star topology, messages can be sent in 3 ways: _____, _____, and _____.

unicast, multicast, broadcast

90
New cards

In a star topology, failure of an end system or its link leaves other end systems _____.

unaffected

91
New cards

In a star topology, the _____ device must not fail.

central

92
New cards

In a bus topology most end systems might be user _____ and other are _____.

workstations, servers

93
New cards

In a star topology, the end systems might be workstations or servers, but the central device is _____.

different

94
New cards

In a star topology, the central device is a specialized device with the purpose of _____ other devices in the network.

connecting

95
New cards

Currently, a star topology is the _____ way to configure a network.

usual

96
New cards

Main reason for star topology is the central device can be used to connect to other _____ such as the _____.

networks, Internet

97
New cards

Define hybrid networks.

a collection of connected LANs where some have different topologies and technologies

98
New cards

Define cable

transmission using copper wire or fiber optic

99
New cards

Define bandwidth

measure of amount of data transmitted per system

100
New cards
<p>Which topology does the image represent?</p>

Which topology does the image represent?

star topology