• Verkeerd document? Gratis ruilen
  • Geschreven door studenten die geslaagd zijn
  • Direct beschikbaar na je betaling
  • Online lezen of als PDF
Verkopen
Kies je studieland
Kies je taal
Document preview thumbnail
Voorbeeld 4 van de 41 pagina's
Tentamen (uitwerkingen)

C175 exam questions with answers,

Document preview thumbnail
Voorbeeld 4 van de 41 pagina's

C175 exam questions with answers,

Voorbeeld van de inhoud

C175 exam questions with answers
|\ |\ |\ |\




__________ results in SQL specifications for tables, columns, and
|\ |\ |\ |\ |\ |\ |\ |\ |\


keys in a specific database system. - CORRECT ANSWERS
|\ |\ |\ |\ |\ |\ |\ |\ |\


✔✔Logical design |\




__________ is a broad term for the process that generates
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\


database specifications in SQL. The term covers three phases -
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\


analysis, logical design, and physical design. - CORRECT
|\ |\ |\ |\ |\ |\ |\ |\


ANSWERS ✔✔Database design |\ |\




_______ is the process of gathering and documenting database
|\ |\ |\ |\ |\ |\ |\ |\ |\


requirements. The requirements are not dependent on any |\ |\ |\ |\ |\ |\ |\ |\


specific database system. Analysis goes by other names, such as
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\


conceptual design. - CORRECT ANSWERS ✔✔Analysis |\ |\ |\ |\ |\




________ results in SQL specifications for index and table
|\ |\ |\ |\ |\ |\ |\ |\ |\


structures. In a relational database, index and table structures
|\ |\ |\ |\ |\ |\ |\ |\ |\


affect query performance but not query results. This principle is
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\


called data independence. - CORRECT ANSWERS ✔✔Physical
|\ |\ |\ |\ |\ |\ |\


design


Inventor: IBM |\




Initial release: 1960s
|\ |\




Objectives: Speed and storage |\ |\ |\




Ex Databases:IMS - CORRECT ANSWERS ✔✔Hierarchical
|\ |\ |\ |\ |\

,Inventor: Charles Bachman |\ |\




Initial release: 1960s
|\ |\




Objectives: Speed and storage |\ |\ |\




Ex Databases: IDMS - CORRECT ANSWERS ✔✔Network
|\ |\ |\ |\ |\ |\




Inventor: E. F. Codd |\ |\ |\




Initial release: 1980s
|\ |\




Objectives: Productivity and simplicity; Transactional applications
|\ |\ |\ |\ |\




Ex Databases: MySQL, Oracle, SQL Server, DB2 - CORRECT
|\ |\ |\ |\ |\ |\ |\ |\ |\


ANSWERS ✔✔Relational |\




Inventor: Google, Amazon, and others|\ |\ |\ |\




Initial release: 2000s
|\ |\




Objectives: Big data, Analytic applications |\ |\ |\ |\




Ex Databases: MongoDB, Redis, Cassandra, Neo4j - CORRECT
|\ |\ |\ |\ |\ |\ |\ |\


ANSWERS ✔✔NoSQL models |\ |\




The relational model is a database model based on mathematical
|\ |\ |\ |\ |\ |\ |\ |\ |\


principles, with three parts: - CORRECT ANSWERS ✔✔1. A data
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


structure that prescribes how data is organized.
|\ |\ |\ |\ |\ |\




2. Operations that manipulate data structures.
|\ |\ |\ |\ |\




3. Rules that govern valid relational data.
|\ |\ |\ |\ |\ |\




The relational data structure and operations are based on ____
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\


theory. - CORRECT ANSWERS ✔✔A set is a collection of values, or
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


elements, with no inherent order. Sets are denoted with braces.
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\

,Ex: {apple, banana, lemon} is the set containing three kinds of
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


fruit. Since sets have no order, {apple, banana, lemon} is the
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


same set as {lemon, banana, apple}.
|\ |\ |\ |\ |\




A_______ is a named set of possible database values, such as
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


integers, dictionary words, or logical values TRUE and FALSE. -
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\


CORRECT ANSWERS ✔✔domain |\ |\




A______ is a finite sequence of values, each drawn from a fixed
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


domain. Ex: (3, apple, TRUE) is a tuple drawn from domains
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


(Integers, DictionaryWords, LogicalValues). - CORRECT ANSWERS
|\ |\ |\ |\ |\ |\


✔✔tuple


A_______ is a named set of tuples, all drawn from the same
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


sequence of domains. - CORRECT ANSWERS ✔✔relation
|\ |\ |\ |\ |\ |\




The most commonly used terms in relational database are ? -
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


CORRECT ANSWERS ✔✔row, column, and table. Occasionally
|\ |\ |\ |\ |\ |\ |\


tuple, relation, attribute and record, file, field are also used.
|\ |\ |\ |\ |\ |\ |\ |\ |\




In the relational data structure, which components are named? -
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\


CORRECT ANSWERS ✔✔Domain, relation, and attribute are all
|\ |\ |\ |\ |\ |\ |\ |\


named. Tuples are not named. |\ |\ |\ |\




All ____________result in a table. The result table is not stored in
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


the database but has the same structure as stored tables. -
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


CORRECT ANSWERS ✔✔relational operations |\ |\ |\

, ___________, also known as integrity rules, are logical constraints
|\ |\ |\ |\ |\ |\ |\ |\ |\


that ensure data is valid and conforms to business policy. -
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


CORRECT ANSWERS ✔✔Relational rules |\ |\ |\




__________ are relational rules that govern data in every relational
|\ |\ |\ |\ |\ |\ |\ |\ |\


database. The relational model stipulates a number of structural
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\


rules, such as: - CORRECT ANSWERS ✔✔Structural rules
|\ |\ |\ |\ |\ |\ |\




Unique primary key — all tables should have a column with no
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


repeated values, called the primary key and used to identify
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\


individual rows. |\




Unique column names — different columns of the same table
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\


must have different names.
|\ |\ |\




No duplicate rows — no two rows of the same table may have
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


identical values in all columns. |\ |\ |\ |\




_____________ are relational rules specific to a particular database
|\ |\ |\ |\ |\ |\ |\ |\ |\


and application. Example business rules include: - CORRECT
|\ |\ |\ |\ |\ |\ |\ |\


ANSWERS ✔✔Business rules |\ |\




Unique column values — in a particular column, values may not
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


be repeated.
|\




No missing values — in a particular column, all rows must have
|\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\ |\


known values. |\

Documentinformatie

Geüpload op
19 oktober 2025
Aantal pagina's
41
Geschreven in
2025/2026
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden
$24.49

Verkeerd document? Gratis ruilen Binnen 14 dagen na aankoop en voor het downloaden kan je een ander document kiezen. Je kan het bedrag gewoon opnieuw besteden.
Geschreven door studenten die geslaagd zijn
Direct beschikbaar na je betaling
Online lezen of als PDF

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.
EXAMSTUDYPLUG
4.5
(242)
Verkocht
385
Volgers
107
Items
20954
Laatst verkocht
2 weken geleden



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 Bancontact, iDeal of creditcard en download je PDF-document meteen.

Student with book image

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

Alisha Student

Bezig met je bronvermelding?

Maak nauwkeurige citaten in APA, MLA en Harvard met onze gratis bronnengenerator.

Bezig met je bronvermelding?

Veelgestelde vragen