Unit 3 Flashcards

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

What is an algorithm?

A

A precise sequence of instructions for processes that can be executed by a computer and are implemented using programming languages

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

What is Low Level Programming Language?

A

A programming language that captures only the primitive operations available to a machine. Anything a computer can do can be represented with combinations of low level commands

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

What is High Level Programming Language?

A

Programming languages with many commands and features designed to make common tasks easier to program. Any high level functionality is encapsulated as combinations of low level commands

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

What is abstraction?

A

Pulling out specific differences to make one solution work for multiple problems

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

What is API?

A

Application Programming Interface, a collection of commands made available to a programmer

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

What is a library?

A

Collection of commands/functions typically with a shared purpose

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

What is documentation?

A

Description of the behavior of a command, function, or library

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

What is Iteration?

A

The repetition of part of an algorithm until a condition is met or for a specified number of times

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

What is sequencing?

A

The application of each step of an algorithm in the order in which the statements are given

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

What is selection?

A

Uses a Boolean condition (True/False) to determine which of two parts of an algorithm is used

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

What is a function/method?

A

A piece of code you can easily call over and over again

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

What is a parameter?

A

An extra piece of information that you pass to the function to customize for a specific need

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

What is a loop?

A

A programming construct that repeats a group of commands

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

What is a For Loop?

A

A looping construct that defines a counting variable that is checked and incremented on each iteration in order to loop a specific number of times

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

What is ambiguity?

A

The quality of being open to more than one interception; inexactness

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

What is Top Down Design?

A

Breaking down a system to smaller sub problems which is then broken down into smaller sub problems continuing until each sup problem can be solved in a few steps

17
Q

Why do we use computer language?

A

English could be intercepted in different ways, while a computer language is direct and will not have any confusion