Термины Flashcards

1
Q

Computational model

A

Is a mathematical model in computational science that requires extensive computational resources to study the behavior of a complex system by computer simulation

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

Examples of common computational models

A

Weather forecasting models; earth simulator models; flight simulator models; molecular protein folding models; neural network models

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

String

A

A sequence of zero or more characters

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

Reserved word

A

Word of the programming language, which cannot be redefined by the programmer

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

Char

A

Any letter, numeral or symbol in the given character set

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

Variable

A

Short term memory used to store temporary values in programming code

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

Real number

A

A number with a decimal point and a fractional part

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

Comment

A

Readable annotation in the source code

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

Identifier

A

The name given to a variable

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

Assigning

A

Giving a variable a value

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

Integer

A

A whole number

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

Constant

A

A value that does not change throughout the program

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

Boolean

A

Can be one of two possible values, true or false

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

Algorithm

A

Sequence of steps that can be followed to complete a task

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

Sequence

A

The most basic algorithm uses sequences to present a list of instructions to be followed one after the other, step by step

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

Iteration

A

The process of repeating sections of a program to achieve a particular target or goal

17
Q

Selection

A

Is used to make choices based on information

18
Q

Data structure

A

Particular ways of organizing data in our programs

19
Q

Record

A

A data structure that groups a number of variables

20
Q

Field

A

A variable that is part of a record

21
Q

Enumerated

A

An ordered set of values

22
Q

Set

A

A collection of values of the same ordinal type with no associated order

23
Q

Array

A

Unordered set of values of the same data type, grouped together and referred to by a single identifier

24
Q

Difference between functions and procedures

A

A procedure is set of instructions to be executed, a routine that may or may not return a value;
A function is a procedure with a return value