Section 1: Fundamentals of programming Flashcards
Chapters 1- 4 as of 12/10/23 12:52pm
What is memory?
Where instructions & data are stored on a computer
What is an algorithm?
A series of instructions that can be followed to complete a task that always terminates
What is syntax?
The rules of how words are used within a given programming language
What is a memory address?
A specific location in memory where instructions or data are stored
What is assignment?
The process of giving a value to a variable or constant
What is a constant?
An item of data of which’s value does not change
What is a variable?
An item of data of which’s value may change while the program is being run
What is debugging?
The process of finding and correcting errors within a program
What does declaration mean?
The process of defining variables and constants in terms of their name and data type
What does data type mean?
The category of the data which determines how it will be handled by the program
What is a “float” data type?
A number that has a decimal or fractional part
What is a “string” data type?
Usually a group of characters, e.g. letters or numbers
What is a “boolean” data type?
Simplest data type, yes/no or true/false
What is a “character” data type?
A singular character, e.g. “9” or “A”
What is a “pointer/reference” data type?
A data type used to store a value that is a reference to a memory location on the computer
What is a pointer?
A value that identifies an element in a data structure, usually the front or rear
What is an array?
A set of related data items stored under a single identifier
What is an element?
A single value within a set or list
What is a record?
A basic data structure used to store related items of different data types
What is a built-in data type?
A data type that is predefined by the programming language you are using
What is a user-defined data type?
A data type that is defined/created by the user as they are programming
What is meant by “sequencing instructions”?
The process of making sure instructions are executed in the correct order
What is meant by “selection”?
The process of choosing which instructions to execute based on a defined criteria
What is meant by “nesting” ?
Putting one set of instructions within another set of instructions
What is meant by “iteration”?
The process of repeating a set of instructions
What is meant by “indefinite iteration”?
A process that repeats until a certain condition is met
What is meant by “definite iteration”?
A process that repeats a defined number of times
What is a loop?
A repeated process
What is a nested loop?
A loop written into a loop
What is meant by “truncating”?
The process of cutting off a number after a certain number of characters/decimal places
What is meant by “random number generation”?
A function that produces a completely random output
What is meant by “pseudo-random number generation”?
A function that produces an output that is not 100% random
What is meant by “relational operations”?
Expressions that compare two values, e.g. “greater than” or “less than”
What is meant by a “boolean operation”?
Expressions that result in a TRUE or FALSE value
What is meant by “string handling functions”
Actions that can be carried out on sequences of characters
What is a character code?
A binary representation of a character
What does the function “Chr()” output?
The character code value of a character
What does the function “Ord()” output?
The integer value of a character
What does the function “int()” output?
Converts a string value to an integer value
What does the function “str()” output?
Converts an integer value to a string value
What does the function “float()” output?
Converts a string value to a float value
What is a subroutine?
A named block of code designed to carry out a specific task
What is a procedure?
Another word for a subroutine
What is a subprogram?
Another word for a subroutine
What is a routine?
Another word for a subroutine
What is meant by a “local variable” ?
A variable only available in specified subroutines & functions
What is meant by a “global variable”?
A variable available throughout the entire program
What is meant by an “event”?
Something that happens when the program is being run
What is a module?
Multiple subroutines that form a part of a program
What is a function?
A subroutine that returns a value
What is meant by “functional programming”?
A programming model that uses functions to make up a program
What is a parameter?
Data being passed into a subroutine
What is meant by an “argument”?
An item of data being passed to a subroutine
What is meant by a “block interface”?
Code that describes the data type & characteristics of the data as it is being passed between subroutines
What is meant by “exception handling”?
The process of dealing with events that cause the current subroutine to stop
What is meant by a “procedural programming language”?
A language where the user specifies the steps that must be carried out in order to achieve a result
What is meant by an “imperative programming language”?
A language based on giving the computer commands or procedures to follow
What is a hierarchy chart?
A diagram that shows the design on a system from the top down
What is a structure chart?
A diagram that shows the design of a system from the top down and shows how data is passed around the system
What is meant by a “top-down approach”?
Designing a system by starting at the top of the process and working your way down into smaller and smaller sub-processes
What is meant by a “system flow chart”?
A diagram that shows the individual processes within a system
What is pseudo-code?
A method of writing code that does not require knowledge of a particular programming language
What is meant by a “dry run”?
The process of looking through each line of code to see what will happen before the program is run
What is a trace table?
A method of recording the result of each step that takes place when dry running code
What is meant by “modular design”?
A method of system design that breaks down a system into smaller units
What is encapsulation?
The concept of putting properties, methods & data in one object
What is a method?
The code or routines contained within a class
What are properties in programming?
The defining features of an object or class in terms of its data
What is a class?
A blueprint that defines a related group of things, it contains properties, which describe what the data are, methods which describe how the data can behave. However it does not store any data.
What is an object?
An instance of a class - is created using a class so will have the same properties & methods from the class it was instantiated
What is meant by “inheritance”?
The concept that properties & methods in one class can be shared with a subclass
What is a class diagram?
A diagram that represents the relationship between classes
What is instantiation?
The process of creating an object from a class
What is polymorphism?
The ability of different types of data to be manipulated using the same method
What is meant by “overriding”?
Where a method described in the subclass takes precedence over a method with the same name in the base class
What is meant by a “static method”?
A method that can be used without an object of the class being instantiated
What is meant by a “virtual method”?
A method defined in the base class but can be overridden by the method in the subclass where it will be used
What is meant by an “abstract class”?
The method is not supplied in the base class, which means it must be provided in the subclass
What is aggregation?
A method of creating new objects that contain existing objects based on which objects are related
What is meant by “composition aggregation”?
The concept of creating an object that contains other objects & will cease to exist if the containing object is destroyed
What is meant by “association aggregation”?
The concept of creating an object that contains other objects, which can continue to exist even if the containing object is destroyed