Definitions Flashcards

1
Q

What is a program?

A

It is a step by step procedure that directs a computer on what to do

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

What is programming

A

It is the process by f creating a program using a particular language

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

What is assembly language?

A

It is a language that uses mnemonics and symbols and is human readable

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

What is machine language

A

It is a language that uses binary that the computer understands

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

Variable

A

Name given to memory allocation

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

Interger?

A

It is a variable that stores whole numbers
They require 4 bytes of memory

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

Floating and double floating points

A

Floating-stores values both whole and decimal (4bytes)
Double floating points-used to store double floating points (8bytes)

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

Character?

A

It is a variable used to store characters that are alphanumeric
(1 byte)

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

String?

A

Variable used to store text

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

Boolean?

A

Variables used to store logical values eg YES/NO

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

Primitive data type

A

Type of data type that stores single data value eg int age=14
Examples-bool,char,float,int,byte

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

Non primitive data type

A

It is a more comple primitive data type as it stores multiple data values
Examples-Arrays,string,double floating point,wide char,void

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

Array?

A

It is a collection of similar data items stores in a contiguous memory locations

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

Stack data structures

A

Elements stored in the LIFO principle

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

Queue data structure

A

Type of data structure that elements are stored in the FIFO principle

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

Linked lists

A

Type of data structure that are connected through a series of nodes;point of connection