






Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
WGU C175 STUDY NOTECARDS 2026 QUESTIONS
Typology: Exams
1 / 11
This page cannot be seen from the preview
Don't miss anything!







Flat Files - Answers - a file having no internal hierarchy Hashed Files - Answers - A file that has been encrypted for security purposes. Heap File - Answers - An unsorted set of records. Information - Answers - The transformation of raw data into useful facts. Punch Card - Answers - A card that is perforated and can hold commands or data. Structured Data - Answers - Information with a high degree of organization. Unstructured Data - Answers - Information that does not have structure (such as text) Binary Relationship - Answers - A relationship between two entity types. Unary Relationship - Answers - An associate occurrence of an entity type with other occurrences of the same entity type. Cardinality - Answers - The maximum number of entities that can be involved in a particular relationship. E-R Model *E-R = Entity - Relationship - Answers - Diagram of entities together with their attributes and the relationship among them. Intersection Data - Answers - It is data that describes a many-to-many relationship. Modality - Answers - It is a minimum number of entity occurrences that can be involved in a relationship. One-to-one Binary Relationship - Answers - It means that a single occurrence of one entity type can be associated with a single occurrence of the other entity type and vice versa. Ternary Relationship - Answers - Involves three different entity types. Unique identifier - Answers - It is used to uniquely identify each record in a database table.
Attribute - Answers - A property, characteristic, or fact that we know about an entity. "A salesperson works in one office." What is the name of this relationship? - Answers - One-to-one binary relationship "A salesperson sells to many customers." What is the name of this relationship? - Answers - One-to-many binary relationship "A salesperson is authorized to sell many products, and a product can be sold by many salespersons." What is the name of this relationship? - Answers - Many-to-many binary relationship What is the positioning and meaning for Cardinality and Modality on an E-R model? - Answers - Cardinality is the outer symbol; represents the maximum. Modality is the inner symbol; represents the minimum. "A salesperson works in a minimum of one and a maximum of one office, and an office may be occupied by or assigned to a minimum of zero and a maximum of one salesperson." - Answers - "A salesperson may have no customers or many customers." - Answers - Describe the ER model for "Each salesperson is authorized to sell to at least one or many products, and each product can be sold by at least one or many salespeople." - Answers - "One salesperson backs-up another salesperson." What is the name of this model? - Answers - One-to-one unary relationship "A salesperson manages zero to many other salespersons, and a salesperson is managed by exactly one other salesperson." What is the name of this model? - Answers - One-to-many unary relationship "A product can either be part of no other products or be part of several other products, and a product can either be composed of no other products or be composed of several other products." What is the name of this model? - Answers - Many-to-many unary relationship
Tuple - Answers - Rows/records are referred to as tuples when talking about relations. They serve the exact same function, it just has a different name in the context of relations. What are the five basic principles of The Database Concept? - Answers - 1. The creation of a datacentric environment that is a significant company resource, which can be shared inside and outside the company.
LIKE operator - Answers - - It allows you to specify partial character strings in a "wildcard" sense. OR operator - Answers - - It displays a record it either the first condition OR the second condition is true. ORDER BY clause - Answers - - It simply takes the result of a SQL query and orders them by one or more specified attributes. SELECT command - Answers - - Data retrieval in SQL is accomplished with the SELECT command. Subquery - Answers - - When on SELECT statement is "nested" within another in a format, it is known as subquery. This is shown when there is a second SELECT phrase within a set of parenthesis. Common DDL commands: - Answers - - DROP
names within the same city alphabetized)": - Answers - SELECT CUSTNUM, CUSTNAME, HQCITY FROM CUSTOMER WHERE CUSTNUM> ORDER BY HQCITY, CUSTNAME; Write the SQL query to "Find the average quantity of units of the different products that Salesperson 137 has sold": - Answers - SELECT AVG(QUANTITY) FROM SALES WHERE SPNUM=137; Write the SQL query to "Find the total quantity of units of all products that Salesperson 137 has sold": - Answers - SELECT SUM(QUANTITY) FROM SALES WHERE SPNUM=137; Write the SQL query to "Find the name of the salesperson responsible for Customer Number 1525": - Answers - SELECT SPNAME FROM SALESPERSON, CUSTOMER WHERE SALESPERSON.SPNUM=CUSTOMER.SPNUM AND CUSTNUM=1525; Write the SQL query to "List the NAMES of the products of which salesperson Adams has sold more than 2000 units": - Answers - SELECT PRODNAME FROM SALESPERSON, PRODUCT, SALES WHERE SALESPERSON.SPNUM=SALES.SPNUM AND SALES.PRODNUM=PRODUCT.PRODNUM AND SPNAME='Adams' AND QUANTITY>2000; CREATE TABLE command - Answers - The command that creates base tables and tells the system what attributes will be in them. CREATE VIEW command - Answers - Specifies the base tables on which the view is to be based and the attributes and rows of the table that are to be included in the view. DELETE command - Answers - Specify which row(s) of a table are to be deleted based on data values within those rows. DROP TABLE command - Answers - Discards an entire table from a database. DROP VIEW command - Answers - Discards views. Normalization - Answers - The process of organizing the fields and tables of a relational database to minimize redundancy (duplication) and dependency.
Second Normal Form - Answers - All non-key attributes must be functionally dependent on the entire key of that table. Third Normal Form - Answers - Non-key attributes are not allowed to define other non- key attributes. What are three important points about Third Normal Form? - Answers - 1. It is completely free of redundancy
What is the key factor based on the need for linear scalability? - Answers - Performance What is used for populating summaries or any cube dimensions that can be performed at the staging area (ETL)? - Answers - Aggregation What data mining activity is a process of assigning some continuously valued numeric value to an object? - Answers - Estimation What includes exploiting the discovery of table and foreign keys for representing linkage between different tables? - Answers - Integration What data mining activity is the process of organizing data into predefined classes? - Answers - Classification Which activity groups data members that have similarities? - Answers - Clustering Data Warehouse - Answers - A data warehouse is the primary source of information that feeds the analytical processing within an organization. Data Mart - Answers - A data mart is a subject-oriented data repository, similar in structure to the enterprise data warehouse, but it's main purpose is to serve directed reporting and drill down into specific data. OLAP - Answers - OLAP (Online Analytical Processing) is both a process of viewing comparative metrics via a multidimensional analysis of data and the infrastructure to support that process. OTAP - Answers - OTAP (online transaction processing) provides a means for presenting data sourced from a data warehouse or a data mart in a way that allows the data consumer to view comparative metrics across multiple dimensions. Cartesian product - Answers - Usually the result of a missing join condition or a method of expanding the data of 1 table by the number of rows in the second table. Data volatility - Answers - Describes how often stored data is updated. DCL - Answers - Data control language is used to control access to data stored in a database. Definer - Answers - Definer is a MySQL term where AuthID is the same for another DBMS Domain of values - Answers - The shared values between a primary key and foreign key.
Extraction essentially boils down to two questions: - Answers - 1. What data should be extracted?