Data Structures, Software, and Databases Flashcards
What is a field?
A logical grouping of byes
identify a characteristic or attribute of a entity (invoice, customer, etc)
What is a record?
A group of related fields (or attributes)
specific invoice, particular customer, etc
A group of records is..?
a File (Table)
Collection of records
A group of files is..?
A data base
Exam hint…:
BIT (3 characters)
BYTE (4 Characters)
FIELD (5 characters)
RECORD (6 characters)
FILE (4 characters) * exception
DATABASE (8 characters)
What are types of softwares?
1) System software- run the computer and support system management
2) Programing languages- Used to create applications
3) Application software- End-user programs
What is the operating system?
Godfather- tells everything what to do
Interface between user and hardware
Defines what commands can be issued and how (Microsoft Windows, Mac OS)
Controls all input and output activities
What is application software?
Do what end-users want
- General (Word, Excel, Databases)
- Specific (marketing information system, clothing designer)
What is a Database Management System?
“Middleware”- go between the application software and the operating system
-Manages the database
What is the DBMS and database languages…?
1) . Data definition languages
- User can define tables and fields and relations among tables
- User meta-data to define the database elements
- Example commands (CREATE, DROP, ALTER)
2) Data manipulation language
- User can add delete or update records
- Example commands: UPDATE, INSERT, DELETE
3) Data query language
- User can EXTRACT INFORMATION
- Most relational databases use structured query manage
- “Drag and Drop” fields to create query (graphic approach)
What are database controls?
- No collisions- don’t want two people to be editing and we don’t know which version is the correct version
- No hackers or creepers- Access controls
- Data definition standards, data element standards
- Backup and recovery procedures
- Update privileges
- Data elements and relationship controls