Computer Science - Paper 1 Flashcards

1
Q

What are the symbols for NOT, AND, and OR gates?

A

NOT = -
AND = Л
OR = V

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

What is the function of a NOT gate?

A

The NOT gate inverts the input value.

Can be written as Z = NOT A or Z = -A

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

What is the truth table for a NOT gate?

A

Input A | Output Z
0 | 1
1 | 0

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

What is the function of an AND gate?

A

Both inputs must be ON for the output to be ON.

Can be written as Z = A AND B or Z = A Л B

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

What is the truth table for an AND gate?

A

Input A | Input B | Output Z
0 | 0 | 0
0 | 1 | 0
1 | 0 | 0
1 | 1 | 1

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

What is the function of an OR gate?

A

At least one input must be ON for the output to be ON.

Can be written as Z = A OR B or Z = A V B

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

What is the truth table for an OR gate?

A

Input A | Input B | Output Z
0 | 0 | 0
0 | 1 | 1
1 | 0 | 1
1 | 1 | 1

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

What does MOD represent in computing?

A

MOD represents remainder division.

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

What does DIV represent in computing?

A

DIV represents integer division.

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

What are the results of the following operations with a = 5 and b = 2?
a + b, a - b, a / b, a * b, a ^ b, a MOD b, a DIV b

A

a + b = 7

a - b = 3

a / b = 2.5

a * b = 10

a ^ b = 25

a MOD b = 1

a DIV b = 2

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

What is the logic expression represented by the diagram Z = (A AND B) OR (NOT C)?

A

Z = (A AND B) OR (NOT C)

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

Why do computers represent all data in binary form?

A

Computers are made up of many electrical switches, each can be ON or OFF (2 states), represented as 1s and 0s.

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

How many total rows/combinations are needed for a truth table with n inputs?

A

2^n = total rows/combinations needed.

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

What are the possible binary inputs for a truth table with 3 inputs?

A

The inputs are binary numbers from 0 to 7.

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