Computer 10
Unlock all answers in this set
Unlock answersquestion
Database
answer
a collection of data organized in a manner that allows access, retrieval, and use of that data.
question
Data
answer
a collection of unprocessed items
question
Information
answer
is processed data; that is, it is organized, meaningful, and useful.
question
Database software
answer
also known as database management system (DBMS), users create a computerized databases; add, modify, and delete data in the databases; sort and retrieve data from the database; and create forms and reports from the data in the database.
question
Data integrity
answer
identifies the quality of the data.
question
Garbage in, Garbage out
answer
(GIGO) is a computing phrase that points out the accuracy of a computer's ouput depends on the accuracy of the input.
question
Variable information
answer
information must be accurate, verifiable, timely, organized, accessible, useful, and cost-effective.
question
Character
answer
represented by 1 byte which can be a number, letter, space, punctuation mark, or other symbol.
question
Field
answer
a combination of one or more related characters or bytes and is the smallest unit of data a user accesses.
question
Field name
answer
uniquely identifies each field.
question
Field size
answer
defines the maximum number of characters a field can contain.
question
Data type
answer
specifies the kind of data a field can contain and how the field is used. ex: numerical, yes/no...
question
Record
answer
a group of related fields
question
Primary key
answer
a field that uniquely identifies each record in a file.
question
Data file
answer
a collection of related records stored on a storage medium such as a hard disk or optical disc.
question
File maintenance
answer
refers to the procedures that keep data current. procedures include adding records to modifying records in, and deleting records from a file.
question
Validation
answer
is the process of comparing data with a set of rules or values to find out if the data is correct.
question
Validity check
answer
analyzes data either as you enter it or after you enter it, to help ensure that it is correct.
question
Alphabetic/numeric check
answer
check that only letters or numbers are entered.
question
Range check
answer
determines whether a numbers within a specified range.
question
Consistency check
answer
tests the data in two or more associated fields to ensure that the relationship s logical and their data is in the correct format.
question
Completeness check
answer
verifies that a required field contains data.
question
Check digit
answer
is a number(s) or character(s) that is appended to or inserted in a primary key value.
question
DBMs hyperlink check
answer
can check hyperlink and attachment data for validity.
question
File processing system
answer
each department or area within an organization has its own set of files. Cons: data redundancy, isolated data
question
Database approach
answer
many programs and users share the data in the database. front end: a program that generally has a more user-friendly interface than the DBMs back end: an application that supports a font-end program pros: reduced data redundancy, improved data integrity, shared data, easier access, reduced development time. cons: more complex, require more memory, storage, and processing power.
question
Data dictionary
answer
sometimes called a repository or metadata, contains data about each file in the database and each field in those files. contains data about programs and user. default value: a value that the DBMS initially displays in a field.
question
query
answer
a request for specific data from the database. Four most commonly used: query languages, query by example, forms, and report generators.
question
Query language
answer
consists of simple, English-like statements that allow users to specify the data to display, print, or store.
question
Query by example
answer
(QBE) a feature that has a graphical user interface to assist users with retrieving data.
question
Form
answer
sometimes called a data entry form, is a window on the screen that provides areas for entering or modifying data in a database.
question
Electronic form
answer
a form that sends entered data across a network or the internet.
question
Report generator
answer
also called a report writer, allows users to design a report on the screen, retrieve data into the report design, and then display or print the report. Unlike a form, you use a report generator only to retrieve data.
question
Access privilege
answer
for data involve establishing who can enter new data, modify existing data, delete unwanted data, and view data.
question
Principle of least privilege policy
answer
where users access privileges are limited to the lowest level necessary to perform required tasks.
question
Backup
answer
a copy of the database that should be made on a regular basis.
question
Log
answer
a listing of activities that modify the contents of the database. 1) a copy of the student record prior to the change, called the before image 2) the actual change of address data 3) a copy of the student record after the change, called the after image.
question
Recovery utility
answer
uses the log an/or backups to restore a database when it becomes damaged or destroyed.
question
Rollforward
answer
forward recovery, the DBMS uses the log to reenter changes made to the database since the last save or backup.
question
Rollback
answer
backward recovery, the DBMS uses the log to undo any changes made to the database during a certain period.
question
Continuous backup
answer
a backup plan in which all data is backed up whenever a change is made.
question
Data model
answer
consists of rules and standers that define how the database organizes data. A data model defines how users view the organization of data.
question
Object-relational database
answer
combine features of the relational and object-oriented data models.
question
Relational database
answer
is a database that stores data in tables that consist of rows and columns. Developer refers to a file as a relation, a record as a tuple, and afield as an attribute. Users refer to a file as a table, a record as a row, and a field as a column. Can set up a relationship between tables at any time if they have a common column. Best suited for two-dimensional table. normalization is a process designed to ensure the data within the relations (tables) contains the least amount of duplication.
question
Structured query language
answer
(SQL) is a popular query language that allows users to manage, update, and retrieve data.
question
Object oriented database
answer
(OODB) stores data in objects. Object is an item that contains data, as well as the actions that read or process the data. They can store more types of data, access this data faster, and allow programmers to reuse objects. Ex: multimedia database, groupware database, computer-aided design (CAD) database, hypertext database.
question
Object query language
answer
object-oriented and object-relational databases often use the query.
question
multidimensional database
answer
stores data in dimensions. Also known as hypercube, allows users to access and analyze any view of the database data. The content of other dimensions varies depending on the subject. The key advantage of the multidimensional database is that I can consolidate data much faster than a relational database.
question
Data warehouse
answer
is a huge database that stores and manages the data required to analyze historical and current transactions. Distributed database: exists in many separate locations throughout a network or the internet. Data mining Data mart: smaller version of a data warehouse.
question
Collaborative databases
answer
makes up some web database. users store and share photos, videos, recordings, and other personal media with other registered users. The web page is the front end to the database. Database server: is a computer that stores and provides access to a database. Common Gateway Interface (CGI): one type of program that manages the sending and receiving of data between the front end and the database server.
question
Database analyst
answer
(DA) or date modeler, focuses on the meaning and usage of data, decided on the proper placement of fields, defines the relationships among data, and identifies users' access privileges.
question
Database administrator
answer
(DBA) creates and maintains the data dictionary, manages security of the database, monitors the performance of the database, and checks backup and recovery procedures.