Computational Thinking Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

Represent 4 in binary

A

1-0-0

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

Represent 100 in binary

A

1-1-0-0-1-0-0

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

Which electric component allows to compute?

A

Transistors

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

What is a transistor?

A

A semiconductor used to amplify or switch electronic signals and electric power

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

Where are transistors located?

A

On the CPU

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

What is the CPU?

A

The central processing unit: is the electronic circuitry within a computer that carries out the instructions of a computer program by performing the basic arithmetic, logic, controlling, and input/output (I/O) operations specified by the instructions

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

What is ASCII?

A

The American Standard Code for Information Interchange, is a character encoding standard for electronic communication

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

How many characters are defined in ASCII?

A

128

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

What is unicode?

A

A super-set of ASCII and a computing industry standard for the consistent encoding, representation, and handling of text expressed in most of the world’s writing systems

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

Which ASCII code for the letter “A”?

A

65

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

What is RGB and what does it stand for?

A

“Red, Green, Blue” The RGB color model is an additive color model in which red, green and blue light are added together in various ways to reproduce a broad array of colors

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

How many bits were used in ASCII and why?

A
  1. The 8th bit is used as a parity bit to avoid making errors, which was relevant few years ago
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

How many bits in a byte?

A

8

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

How many bite in a bit?

A

0.125

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

What is a bubble sort algorithm?

A

A simple sorting algorithm that repeatedly steps through the list, compares adjacent pairs and swaps them if they are in the wrong order

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

What is a selection sort algorithm?

A

A simple sorting algorithm that sorts an array by repeatedly finding the minimum element (considering ascending order) from unsorted part and putting it at the beginning