Fundamentals Of Programming Flashcards

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

What is Memory?

A

The location where instructions and data are stored on the computer

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

What is an algorithm

A

A sequence of steps that can be followed to complete a specific task

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

What is syntax

A

The rules of how words are used within a given programming language

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

What is a memory Address

A

A specific location in memory where instructions or data are stored

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

What is a constant

A

An item of data whose value does not change throughout the execution of a program

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

What is a variable

A

A named item of data whose value could change while the program is being run

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

What is declaration

A

The process of defining variables and constants in terms of their name and data types

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

What is a data type

A

Determines what sort of data is being stored and how it will be handled by the program

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

What is an integer

A

Any whole number

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

What is boolean

A

Known as yes or no or True or False

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

What is a real/float

A

A decimal

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

What is a pointer

A

A data item that identifies a particular element or data structure normally the front or rear

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

What is an array

A

A set of related data items stored under a single identifier

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

What is an element

A

A single value within a set or list

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

What is a record

A

One line of a text file

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

What is debugging

A

The process of finding and correcting errors in programs

17
Q

What is iteration

A

Repeating the same process several times in order to achieve a result.

18
Q

What is assignment

A

The process of giving a value to a variable or constant

19
Q

What is selection

A

The principle of choosing what action to take based on certain criteria

20
Q

What is definite iteration

A

A process which is repeated a set number of times

21
Q

What is indefinite iteration

A

A process that repeats until a certain condition is met

22
Q

What is a subroutine

A

A named block of code designed to carry out a specific task

23
Q

What is a local variable

A

A variable that is only in specified subroutines

24
Q

What is a global variable

A

A variable that is available anywhere in the program

25
Q

What is a function

A

A subroutine that returns a value

26
Q

What is a library

A

A collection of pre written and pre tested functions and procedures for you to use.

27
Q

What is a parameter

A

Data being passed into a subroutines

28
Q

What is an arguement

A

The value of variables being passed into a subroutine