Computer Science Glossary (70 words) Flashcards
1
Q
AI
A
- Artificial Intelligence
2
Q
ASCII full form
A
- American Standard Code for Information Interchange
3
Q
What is ASCII?
A
- It is a character encoding standard for electronic communication.
- It is a 7 bit code for characters, thus can be stored in a single byte.
4
Q
Algorithm
A
- A set of detailed instructions for accomplishing a task that after execution will terminate.
5
Q
Analog
A
- The audio signal from a microphone is analog.
- It is measured in continuous values.
6
Q
Application
A
- A runnable program that provides some service.
7
Q
Argument
A
- One of the pieces of data provided as input to a procedure of function through the call to the procedure or function.
8
Q
Assignment
A
- The process of setting and storing a value to a specific variable name.
9
Q
Bandwith
A
- The volume of information that can be transmitted or processed.
- Usually measured in bits or bytes per time unit (e.g. bits per second).
10
Q
Binary
A
- The base 2 number system, that denotes a power of 2.
- Integers can be encoded in binary in a string of 1s and 0s.
11
Q
Bit
A
- A singular binary digit.
- It is the smallest unit of information that can be represented by one of the two possible states (0 or 1).
- Often denoted as a ‘b’.
12
Q
Block
A
- A collection of statement that can be grouped together to be treated as one statement.
- Generally the only “entry” into a block of code is at the top of the code.
13
Q
Boolean
A
- A data type that can either hold ‘True’ or ‘False’ value.
- It can also refer to a type of expression, for example the expression x > 6 is Boolean.
14
Q
Byte
A
- 8 bits.
- Often denoted as a ‘B’.
15
Q
Call
A
- A statement in a programming language that starts or invokes a procedure or function.
16
Q
CPU
A
- Central Procession Unit.
- Where computer instructions are executed.
- Handles a range of processing tasks.
17
Q
CPU intensive
A
- A program that spends most of its time running on the CPU with a disproportionately small amount of time waiting for data from memory.
18
Q
Cache
A
- Memory used to speed memory access.
- It stores data that is anticipated to be used next or was just used (to be used again).
19
Q
Card
A
- A circuit board which can be plugged into your computer motherboard, that adds a certain function to the computer.
20
Q
Character
A
- A single letter or symbol that is represented by a small set of bytes in a computer.
21
Q
Chip
A
- An integrated electronic circuit generally thousands up to billions of components such a transistors and capacitors that perform complex functions such as addressable memory, CPU, I/O functions.
22
Q
Clock
A
- The internal ‘drummer’ of heartbeat that keeps CPU activities across the chip and across the motherboard in sync.
- Often measured in MHz, or GHz.
23
Q
Comment
A
- Comments are important in programs as they are nonexecuting lines of code that are used to explain lines of code in plain text.
24
Q
Compiler
A
- A program for translating a program written in one language into code that can be understood and executed by a computer.