Basic Programming of Concept Flashcards

1
Q

A set of
instructions, that helps the developer to
perform certain tasks that return the desired
output for the valid inputs.

A

Computer Programming

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

It uses binary digits 0 and 1.
It is the natural language of a computer thus, they
are machine dependent.

A

Machine Language

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

It uses mnemonics or
symbols to represent instructions and data. They
used assemblers to convert the source code to
machine language then loaded run by a loader.

A

Assembly Language

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

They use English-like
statements and it uses compilers or interpreters
to translate the source code to machine language.

A

High-level Language

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

The process of eliminating

mistakes in your program.

A

Debugging

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

A grammatical mistakes in your

program.

A

Syntax Error

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

Detected when the program is

run.

A

Run-time Error

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

The output of your program is

wrong.

A

Logic Error

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

It is a set of steps or instruction
statements to be followed to accomplish
specific tasks. A developer can design his
algorithm to achieve the desired output.

A

Algorithm

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

Is the actual text that is used to

construct the program using the language of choice.

A

Source code

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

Is a software program
that helps in converting the source code into
binary code or byte code, also called machine
language, that is easy for a computer to
understand, and can be further executed
using an interpreter to run the program.

A

Compiler

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

Data used in the applications can
be of a different type, it can be a whole number
(integer), floating-point (decimal point
numbers), characters or objects.

A

Data Type

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

Is a space holder for the
value stored in the memory and this value can
be used in the application.

A

Variable

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

Knowledge of how to use a
certain condition, such that a set of code should
execute only if a certain condition is true. In case
of a false condition, the program should exit and
should not continue the code further.

A

Conditionals

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

Is the variable that stores
elements of a similar data type. Knowledge of
using an array in coding/programming will be
a great benefit.

A

Array

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

Is used to execute the series of

code until the condition is true.

A

Loop