Module 6 Flashcards
What is an identifier?
A name given to a variable, constant, object, function, etc.
What is the difference between Identifiers and Variables?
Identifiers is the name of the variable and variables are the actual memory locations used to store data.
What is PHP?
Short for Hypertext Preprocessor.
Scripting language designed for web development.
What is a sorting algorithm?
An algorithm that arranges a list of item in a certain order.
How an Insertion Sort algorithm works?
In an insertion sort, the list of items is gone through, one item at a time, starting at the beginning.
As each item is reached, the correct location earlier in the list is found for it, based on the desired outcome.
How a Selection Sort works?
In a selection sort, the list of items is divided into two lists: a list of sorted items (initially empty), and a list of unsorted items (initially this has all the items in the list). The unsorted list is then gone through, one item at a time. Each item is placed in the sorted list at the correct point, according to the desired outcome. Once all items in the unsorted list have been handled, the sorted list is the final product.
How a Bubble Sort algorithm works?
In a bubble sort, the list of items is gone through, one item at a time, starting at the beginning.
As each item is reached, it is compared to the item previous to in the list. It is swapped if the desired outcome requires it
What is Linkedin?
A website owned by Microsoft utilized for professional networking.
What is IDLE?
An IDE for Python.