Topic 4 - Programming

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/27

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

28 Terms

1
New cards
Sub-procedures / Sub-Programs
When a problem is decomposed, you create smaller problems to solve. In programming, instead of having one function solve a whole problem, you can create smaller helper functions (sub-programs) to solve each of the smaller problems.
2
New cards
Identifier
Name of a variable, parameter, constant, user
3
New cards
Importance of sub-procedures
It helps create a modular approach to solving problems that are easier to debug and reason about.
4
New cards
Iteration
the process of repeating a series of instructions. (loop)
5
New cards
Conditional Statement
a statement that can be written in ifthen form and uses a boolean expression
6
New cards
Software Library
prewritten code, classes, procedures, etc that a programmer can use to add more functionality to his/her programs without having to rewrite the equivalent code.
7
New cards
Pre-Conditions
Assumptions that can be made and what must be true before the sub-procedure/function is called.
8
New cards
Post-Conditions
the effect a method has on its inputs (any unaffected/unlisted input should remain untouched), any generated exceptions, information about the return value, and effects on object state
9
New cards
Exceptions
an act or event that disrupts the anticipated flow of the program's execution
10
New cards
Concurrency
when two or more things happen at the same time. This is a term that is usually used with networking and/or multi-core processors. Different threads might make concurrent calls to websites or different processors.
11
New cards
Abstraction
Abstraction is the process of taking away or removing characteristics from something in order to reduce it to a set of essential characteristics.

Through the process of abstraction, a programmer hides all but the relevant data about an object in order to reduce complexity and increase efficiency.

The object or sub-program can then be called by name while preserving its functionality but hiding specific data/implementation.
12
New cards
Object-Oriented Programming
Programming that uses abstraction to represent real-world objects
13
New cards
Collection
A data structure that holds data and has methods used to iterate over that data
14
New cards
Object
an abstraction in code for a real-world object
15
New cards
Variable
a reference to a location in memory where data is stored
16
New cards
Constant
a variable that doesn't change
17
New cards
Operator
a character or characters that determine the action that is to be performed or considered

Arithmetic operators: +, -, \*, /, etc. \n Relational operators:
18
New cards
Array
In java, it is a static data structure with predetermined capacity.
19
New cards
Sequential Search
Searching through objects in a collection one by one, in order
20
New cards
Binary Search
Looking for an item in an already sorted list by eliminating large portions of the data on each comparison
21
New cards
Efficiency
the amount of computer resources used by a program uses
22
New cards
Correctness
whether a program can perform specified success criteria without errors
23
New cards
Reliability
whether an algorithm can consistently maintain efficiency and correctness
24
New cards
Flexibility
the amount of effort required to modify an algorithm for other purposes
25
New cards
Fundamental Computer Operations
add, compare, retrieve and store
26
New cards
Compound Computer Operations
the combination of fundamental operations into a more complex solution
27
New cards
Features of Programming Languages
Semantics: the process a language follows when executing a program's syntax

\
Syntax: the keywords, operators and other valid constructs that make up a programming language.
28
New cards
Need for Programming Languages
Low level languages: used to perform operations on hardware, e.g. assembly language

\
High level languages: used to give users easy-to-understand abstractions, which are then compiled into assembly language. e.g. python, java, javascript, etc.