Computer Science - Algorithms π©βπ» Flashcards
What is an algorithm?
An algorithm is a sequence of steps for solving a problem.
In computer terms, what is an algorithm?
In computer terms, an algorithm describes the set of steps needed to carry out a software task.
What are the main stages of solving a problem?
- Understanding the problem
- Defining the scope of a solution β the extent of
the facilities that the solution will provide - Creating the solution
- Documenting the solution
- Testing the solution.
- Creating the solution (go back to 3 until you get it right)
In what 3 ways can an algorithm be expressed?
Through natural languages, pseudocode, and flowcharts.
What is a variable?
A variable is a uniquely named location in memory (RAM), in which a single data item can be held while a program is running.
When can a variable change?
The program can change the value held in a variable during the time of the program execution. (When the program is open)
What is a memory location?
When a variable is declared, an area of the RAM is given to it.
What counts as a meaningful variable name?
A full, not shortened name that describes the variable.
What is a reserve name?
A keyword that cannot be used as a variable name. Some examples of reserve names are βIFβ, βINPUTβ, and βOUTPUTβ.
Can special characters be used in variable names?
The only special character that can be used in a variable name is underscore (β_β)
Can spaces be used in variable names?
No, instead, use camel case or underscores.
What is camelCase?
WhenWordsAreSeperatedByEachWordHavingCapitalLettersJustLikeThis.
What is an integer?
Integers are whole numbers, that can be positive or negative.
What are integers commonly used for in algorithms?
For counting, and whole number addition/subtraction.
What is a real data type?
Real data type is numerical data which contain decimal numbers
What are real data types commonly used for in algorithms?
Mainly used for money, weight, height, and temperature
What is a char data type?
Char data type can hold only a single character.
What is a char data type commonly used for in algorithms?
Mainly used for codes like T or F, or for single character things such as grades (S, A, B, C, D, E, F)
What is a string data type?
String data type consists of 1 or more characters (symbols)
What are string data types commonly used for in algorithms?
Mainly used for names, and address
What is a boolean data type?
Boolean data type represents a logical value. It can only represent 2 values.
What are boolean data types commonly used for in algorithms?
True or false, Yes or no, 0 or 1, etcβ¦
What is a constant?
Constants are data values which can be introduced at beginning of the program and cannot be altered by the program during execution.
What is pseudocode?
Pseudocode is one of the methods that could be used to represent an algorithm. It is not written in a specific syntax that is used by a programming language and therefore cannot be executed in a computer.
What does this symbol βπ β mean in pseudocode.?
It is the assignment symbol, which assigns a value to a variable.
How do you represent βless than or equal toβ in pseudocode?
<=
How do you represent βmore than or equal toβ in pseudocode?
> =
How do you represent βnot equal toβ in pseudocode?
<>
What is the INPUT command in pseudocode?
It simply accepts an input into the program, assigning it to a variable.
What is the format of writing an INPUT command in pseudocode?
[INPUT] β[INPUT prompt]β, [Variable name]
What is an INPUT prompt?
A string that contains helpful text prompting the user to enter something.
What is the OUTPUT command in pseudocode?
Itβs the act of returning (sending out) some information / data to the user of the program. This can be numerical, written, visual, or audio based.
What is the format of writing an OUTPUT command in pseudocode?
[OUTPUT] β[OUTPUT prompt]β, [Variable name]
What is an OUTPUT prompt?
A string prompting the user to identify the result that is produced by the program.
What is the DECLARE command in pseudocode?
Any variable/s to be used in the pseudocode can be declared (create) using the keyword DECLARE.
What is the format of writing a DECLARE command in pseudocode?
[DECLARE] [Variable name]: [Data type]
What is a program flowchart?
A pictorial representation of an algorithm.
What are symbols/boxes in flowcharts?
Standard shapes that represent different types of operations.
What are the messages in symbols in flowcharts?
Things that state briefly what operations are being handled.
What is the shape of a terminator (start/end) symbol?
A square with rounded corners.
What is a terminator symbol?
Terminator symbols are used at the beginning and end of each flowchart.
What is the shape of a process symbol?
A rectangle.
What is a process symbol?
Process symbols are used to show when values are assigned to an item/variable like an assignment in pseudocode.
What is the shape of an input/output symbol?
A parallelogram.
What is an input/output symbol?
Input/Output symbols are used show input of data and output of information.
What is the shape of a decision symbol?
A DIAMOND THINGY!!!!! LIKE THIS:: /\ / \ \ / \/ BUT LIKE FLIP IT AROUND 90 DEGREES AND THAT'S THE SHAPE OF IT- ALSO THEY HAVE 2 LINES COMING OUT OF THEM!!!
What is a decision symbol?
Decision symbols are used to decide which action is to be taken next.
These can be used for selection and repetition/iteration.
How are flowchart symbols connected?
With arrows called flow lines.
What is a control structure?
Depending on what a program is required to do, different control structures are used to control the flow of a programβs operations.
What are the 3 basic control structures?
Sequences, Selections, and Repetitions.
What is a Sequence control structure?
A set of instructions executed in order.
What is a Selection control structure?
A decision made based on some strict condition.
What is a Repetition control structure?
A set of actions repeated a number of times.
What is a logic circuit?
A logic circuit is an electronic circuit that combines a number of logic gates. The gates in the logic circuit will control the flow of electricity through the circuit.
What is a logic gate?
A model of an operation that has one or more binary inputs.
What is a truth table?
A table that is used to check the output from a logic gate/logic circuit.
What is the shape of a NOT gate?
A NOT gate is shaped as a triangle with one line leading into it and one leading out of it. (β―β·β¬β―)
What is a NOT gate?
A logic gate that inverts the Boolean value that is input.
What is the Boolean expression for the NOT gate?
X = Δ
What is the logic notation of a NOT gate?
X = NOT A
What is the shape of an AND gate?
An AND gate is shaped like a stretched letter D with two lines leading to it and one leading out. (=Dβ―)
What is an AND gate?
A logic gate that only outputs a β1β if both Boolean values leading to it are a β1β.
What is the Boolean expression for the AND gate?
X = A β B
What is the logic notation of an AND gate?
X = A AND B
What is the shape of an OR gate?
An OR gate is shaped like.. a AND gate with itβs rounded part at the right of it becoming a point, while keeping the curvature, as well as the left of it becoming rounded inwards, there are two lines leading into it and one leading out. (==)=>β―)
What is an OR gate?
A logic gate that only outputs a β1β if at least one of the two Boolean values is a β1β.
What is the Boolean expression for the OR gate?
X = A + B
What is the logic notation of an OR gate?
X = A OR B
What is different about the shape of a NAND/NOR gate, compared to their counterparts?
They have the same basic shape, but with a ββ¬β at the end of them.
What is a NAND/NOR gate?
They have the opposite outputs of their AND/OR counterparts.
What is the difference of the Boolean expressions of NAND/NOR gates compared to their counterparts?
They have a line over the expression.
What is the logic notation for a NAND gate?
X = A NAND B
What is the logic notation for a NOR gate?
X = A NOR B
What is small basic?
Small basic is a programming language by Microsoft that is a simplified version of BASIC, designed to help students transition from visual-based programming languages such as scratch and app inventor to text-based programming languages
Where do you write your small basic programs?
In the editor.
What is the toolbar on small basic?
An area that allows you to run various commands.
What is the help window in small basic?
An area that as you write code, gets updated with helpful information about commands.
What is the InteliSense list in small basic?
A smart scrollable area that helps you write your programs faster, that can be scrolled using the DOWN or UP keys, and the ENTER key can be used to insert the highlighted command.
What is the small basic command to output a line of text on the screen?
TextWindow.Write() or TextWindow.Writeline()
What is the difference between TextWindow.Write() and TextWindow.Writeline()?
TextWindow.Write() does not create a new line, unlike TextWindow.Writeline().
What is the small basic command to read data to a variable and store it for use in a command?
= TextWindow.Read()
What is a statement?
An instruction to the computer; a program can be created with only statements.
What are the 2 kinds of statements?
Properties and operations.
What is a property?
A statement to change the window looks. (textwindow.title..)
What is an operation?
A statement to carry out an action (textwindow.write..)
How are values assigned in small basic?
With an = sign instead of an arrow.
How do you write a comment that does not show in the executing program in small basic?
With a single apostrophe at the start of a line.
How do operations work in small basic?
* - multiplying / - dividing \+ - addition - - subtraction < - less than > - more than
What is the command for changing the background colour of the text window in small basic?
TextWindow.BackgroundColor = ββ
What is the command for changing the text colour of the text window in small basic?
TextWindow.ForegroundColor = ββ
What is the command for changing the title of the text window in small basic?
TextWindow.Title = ββ
What are the commands to change the position of the text window on screen in small basic?
TextWindow.Top =
TextWindow.Left =
Donβt make the value too much or it will be off screen!
What are the commands to change the position of the cursor on the text window in small basic?
TextWindow.CursorTop =
TextWindow.CursorLeft =
How are different kinds of values joined together in small basic? (Constant String, Constant Integer, Variables)
With a simple β+β!
What is used to show that something is of the string data type in small basic?
It is put in quotations.