100% tevredenheidsgarantie Direct beschikbaar na je betaling Lees online óf als PDF Geen vaste maandelijkse kosten 4.2 TrustPilot
logo-home
Tentamen (uitwerkingen)

CS6400 Exam 3 Questions Answered Correctly Latest Update (Graded A+)

Beoordeling
-
Verkocht
-
Pagina's
5
Cijfer
A+
Geüpload op
15-12-2024
Geschreven in
2024/2025

CS6400 Exam 3 Questions Answered Correctly Latest Update (Graded A+) Natural Join - Answers The result of this is the set of all combinations of tuples in R and S that are equal on their common attribute names. A special case of an equijoin. Left Outer Join - Answers A construct operator which results in the set of all combinations of tuples in R and S that are equal on their common attribute names, in addition (loosely speaking) to tuples in R that have no matching tuples in S. Insert - Answers A basic SQL operation in which new records are added to a table. Delete - Answers A basic SQL operation in which existing records are removed from a table. Update - Answers A basic SQL operation in which existing records are changed in a table. Select * - Answers A basic SQL operation in which existing records are chosen from a table. Select Distinct - Answers A basic SQL operation in which only unique existing records are chosen from a table. Intersect - Answers Set operator which includes all tuples that are in both R and S. Union - Answers Set operator which includes all tuples that are either in R or in S or in both R and S. Duplicates are removed. Union All - Answers set operator which includes all tuples that are either in R or in S or in both R and S. Duplicates are not removed. Count(*) - Answers SQL function which returns the number of rows that matches the specified criteria. Group By - Answers SQL operator which rolls up the result set by one or more columns. Equijoin - Answers A theta join using the equality operator Difference / Minus - Answers Set operator which includes all tuples that are in R but not in S Theta Join - Answers A construct operator which allows for arbitrary comparison relationships (such as >=) Inner Join - Answers Requires each row in the two joined tables to have matching column values. Cartesian Product - Answers A construct operator which results in the set of all combinations of tuples in R and S Reflexive Inference Rule - Answers If Y is a subset of X, then X -> Y. i.e. EG -> G Augmentation Inference Rule - Answers If X -> Y, then XZ -> YZ for any Z i.e. E->A, therefore EG->AG Transitive Inference Rule - Answers If X -> Y and Y -> Z, then X -> Z, i.e. B->E, E->A, therefore B->A Decomposition Inference Rule - Answers If X -> YZ then X -> Y and X -> Z Composition Inference Rule - Answers If X -> Y and A -> B then XA->YB Union Inference Rule - Answers If X -> Y and X-> Z then X -> YZ Pseudo Transitivity Inference Rule - Answers If X -> Y and YZ -> W then XZ -> W 1NF - Answers If and only if the domain of each attribute contains only atomic (indivisible) values, and the value of each attribute contains only a single value from that domain. May have redundancy. 2NF - Answers The table is in 1NF and all the columns depend on the tables' primary key (transitively or not) 3NF - Answers The table is in 2NF and all of its columns not transitively dependent on the primary key Lossless Join Decomposition - Answers A concept in which the following are true: Union of Attributes of R1 and R2 must be equal to attribute of R, the Intersection of Attributes of R1 and R2 must not be NULL, and the Common attribute must be a key for at least one relation Relational Tuple Calculus (with some Algebra operators) - Answers What SQL is mathematically based upon NFNF (NF^2) - Answers A data structure that is not a relation at all First Rule of Normalization - Answers No redundancy of facts Second Rule of Normalization - Answers No cluttering of facts Third Rule of Normalization - Answers Must preserve information Fourth Rule of Normalization - Answers Must preserve functional dependencies Information Loss - Answers When, after decomposition, we get more (or less) information than was initially present in the base dataset. Dependency Loss - Answers When we cannot enforce the functional dependencies Functional Dependence - Answers A relationship that exists when one attribute uniquely determines another attribute. BCNF - Answers A normal form in which every determinant is a candidate key Determinant - Answers A set of attributes on which some other attribute is fully functionally dependent Full functional dependence - Answers A state of database normalization that equates to the normalization standard of Second Normal Form (2NF) Normalization Mnemonic - Answers All attributes must depend on the key, the whole key, and nothing but the key, so help me Codd Closure - Answers Given a set F of functional dependencies, the set of all functional dependencies logically implied by F Hard Disk - Answers A non-volatile storage device where the bulk of the data and applications are stored. Characterized by low cost, relatively slow access speed (latency between 2-10 ms) and large size (typically in the TB) Main Memory - Answers A volatile storage device which stores frequently used program instructions to increase the general speed of a system. Characterized by high cost, relatively small amount of storage but fast access speed (latency between 15-90 ns) and small size (typically in the GB) Cache - Answers A volatile storage device which typically sits on the CPU. Characterized by very small amount of storage but very fast access speed (latency typically 4-5 CPU cycles) and very small size (typically 32 KB for L1, 256 KB for L2) Bus - Answers Transports data from the disk to main memory (and then back) Platter - Answers The circular disk on which magnetic data is stored in a hard disk drive Sector - Answers The smallest physical unit that could be transported from the disk to main memory Track - Answers The thin concentric circular strips of sectors Cylinder - Answers A division of data in a disk drive, concept is concentric, hollow, cylindrical slices through the platters, collecting the respective circular tracks aligned through the stack of platters. Head - Answers A device that reads and writes data in a hard drive by manipulating the magnetic medium that composes the surface of an associated disk platter. Block - Answers The standard physical part of the disk that is transferred - a sector or group of sectors Unspanned representation - Answers To make sure a record fits on a block; if this means there

Meer zien Lees minder
Instelling
CS6400
Vak
CS6400









Oeps! We kunnen je document nu niet laden. Probeer het nog eens of neem contact op met support.

Geschreven voor

Instelling
CS6400
Vak
CS6400

Documentinformatie

Geüpload op
15 december 2024
Aantal pagina's
5
Geschreven in
2024/2025
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

Voorbeeld van de inhoud

CS6400 Exam 3 Questions Answered Correctly Latest Update 2024-2025 (Graded A+)

Natural Join - Answers The result of this is the set of all combinations of tuples in R and S that are equal
on their common attribute names. A special case of an equijoin.

Left Outer Join - Answers A construct operator which results in the set of all combinations of tuples in R
and S that are equal on their common attribute names, in addition (loosely speaking) to tuples in R that
have no matching tuples in S.

Insert - Answers A basic SQL operation in which new records are added to a table.

Delete - Answers A basic SQL operation in which existing records are removed from a table.

Update - Answers A basic SQL operation in which existing records are changed in a table.

Select * - Answers A basic SQL operation in which existing records are chosen from a table.

Select Distinct - Answers A basic SQL operation in which only unique existing records are chosen from a
table.

Intersect - Answers Set operator which includes all tuples that are in both R and S.

Union - Answers Set operator which includes all tuples that are either in R or in S or in both R and S.
Duplicates are removed.

Union All - Answers set operator which includes all tuples that are either in R or in S or in both R and S.
Duplicates are not removed.

Count(*) - Answers SQL function which returns the number of rows that matches the specified criteria.

Group By - Answers SQL operator which rolls up the result set by one or more columns.

Equijoin - Answers A theta join using the equality operator

Difference / Minus - Answers Set operator which includes all tuples that are in R but not in S

Theta Join - Answers A construct operator which allows for arbitrary comparison relationships (such as
>=)

Inner Join - Answers Requires each row in the two joined tables to have matching column values.

Cartesian Product - Answers A construct operator which results in the set of all combinations of tuples in
R and S

Reflexive Inference Rule - Answers If Y is a subset of X, then X -> Y. i.e. EG -> G

Augmentation Inference Rule - Answers If X -> Y, then XZ -> YZ for any Z i.e. E->A, therefore EG->AG

Transitive Inference Rule - Answers If X -> Y and Y -> Z, then X -> Z, i.e. B->E, E->A, therefore B->A

, Decomposition Inference Rule - Answers If X -> YZ then X -> Y and X -> Z

Composition Inference Rule - Answers If X -> Y and A -> B then XA->YB

Union Inference Rule - Answers If X -> Y and X-> Z then X -> YZ

Pseudo Transitivity Inference Rule - Answers If X -> Y and YZ -> W then XZ -> W

1NF - Answers If and only if the domain of each attribute contains only atomic (indivisible) values, and
the value of each attribute contains only a single value from that domain. May have redundancy.

2NF - Answers The table is in 1NF and all the columns depend on the tables' primary key (transitively or
not)

3NF - Answers The table is in 2NF and all of its columns not transitively dependent on the primary key

Lossless Join Decomposition - Answers A concept in which the following are true: Union of Attributes of
R1 and R2 must be equal to attribute of R, the Intersection of Attributes of R1 and R2 must not be NULL,
and the Common attribute must be a key for at least one relation

Relational Tuple Calculus (with some Algebra operators) - Answers What SQL is mathematically based
upon

NFNF (NF^2) - Answers A data structure that is not a relation at all

First Rule of Normalization - Answers No redundancy of facts

Second Rule of Normalization - Answers No cluttering of facts

Third Rule of Normalization - Answers Must preserve information

Fourth Rule of Normalization - Answers Must preserve functional dependencies

Information Loss - Answers When, after decomposition, we get more (or less) information than was
initially present in the base dataset.

Dependency Loss - Answers When we cannot enforce the functional dependencies

Functional Dependence - Answers A relationship that exists when one attribute uniquely determines
another attribute.

BCNF - Answers A normal form in which every determinant is a candidate key

Determinant - Answers A set of attributes on which some other attribute is fully functionally dependent

Full functional dependence - Answers A state of database normalization that equates to the
normalization standard of Second Normal Form (2NF)

Maak kennis met de verkoper

Seller avatar
De reputatie van een verkoper is gebaseerd op het aantal documenten dat iemand tegen betaling verkocht heeft en de beoordelingen die voor die items ontvangen zijn. Er zijn drie niveau’s te onderscheiden: brons, zilver en goud. Hoe beter de reputatie, hoe meer de kwaliteit van zijn of haar werk te vertrouwen is.
TutorJosh Chamberlain College Of Nursing
Bekijk profiel
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
350
Lid sinds
1 jaar
Aantal volgers
16
Documenten
29205
Laatst verkocht
1 uur geleden
Tutor Joshua

Here You will find all Documents and Package Deals Offered By Tutor Joshua.

3.6

55 beoordelingen

5
19
4
14
3
12
2
0
1
10

Recent door jou bekeken

Waarom studenten kiezen voor Stuvia

Gemaakt door medestudenten, geverifieerd door reviews

Kwaliteit die je kunt vertrouwen: geschreven door studenten die slaagden en beoordeeld door anderen die dit document gebruikten.

Niet tevreden? Kies een ander document

Geen zorgen! Je kunt voor hetzelfde geld direct een ander document kiezen dat beter past bij wat je zoekt.

Betaal zoals je wilt, start meteen met leren

Geen abonnement, geen verplichtingen. Betaal zoals je gewend bent via iDeal of creditcard en download je PDF-document meteen.

Student with book image

“Gekocht, gedownload en geslaagd. Zo makkelijk kan het dus zijn.”

Alisha Student

Veelgestelde vragen