A collection of data arranged for ease of speed of search and retrieval.
Database
A letter created before you write your resume. Typically sent to HR of the company in question.
Cover letter
data structure best used to represent a 2D matrix?
Array
(C) int num = 5
No Semicolon
block of code which only runs when it is called
Function
Code that is developed to manipulate data in a database.
When your GPA is less than 3.0
Do not include it
LIFO data structure
Stack
(C++)
void setup()
{
pinMode(GREEN, OUTPUT);
pinMode(YELLOW, OUTPUT);
pinMode(RED, OUTPUT);
}
void loop()
{
green_light();
}
GREEN, YELLOW, and RED here not initialized.
a process or set of rules to be followed in calculations or other problem-solving operations, especially by a computer
Algorithm
is a column in the database who is the unique, not null identifier for a record.
Primary Key
A section of your resume where you show off your personal software or hardware projects and abilities realted to these projects.
Skills and Abilities
In this data structure an element with high priority is served before an element with low priority
Queue
The error produced when print(1/0) is executed in Python
ZeroDivisionError
a classification that dictates what variable or object can hold in computer programming.
Data type
a step-by-step process of organizing data to establish relationships between tables to eliminate redundancy and inconsistent dependency.
Normalization
A free, common website that allows you to learn new programming langauges and concepts.
Codecadamy
Which data structure is more efficient: an Array or linked list?
Neither, both have their advantages and disadvantages
int GREEN = 13;
int YELLOW = 12;
int RED = 11;
void setup()
{
pinMode(GREEN, OUTPUT);
pinMode(YELLOW, OUTPUT);
pinMode(RED, OUTPUT);
}
void loop()
{
digitalWrite(GREEN, LOW);
digitalWrite(YELLOW, MEDIUM);
digitalWrite(RED, LOW);
}
No Medium
defines a new data type with more than one member.
Structure or Class
Will this give errors, if so where? FULL POINTS FOR LOCATION, -500 OTHERWISE
INSERT INTO FACULTY ('123', 'Dr.Pyzdrowski, pyzdrowski@calu.edu, 357, 'EBERLY')
(Perhaps this is a trick question... unlikely, but possible)
The '123' is a string, it should be a number.
A system that companies use to scan through resumes to check for key words.
ATS resume scanner
A type of binary tree where the value of each node is greater than or equal to the value of its parent node
MinHeap
(C)
struct user()
{
int age;
int gpa;
}
Missing semi colon after }
smallest sequence of programmed instructors that can be manages independently by a schedule, which is typically a part of the operating system.
Threading