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

WGU D311 MICROBIOLOGY OBJECTIVE ASSESSMENT PRACTICE EXAM QUESTIONS WITH CORRECT DETAILED ANSWERS | ALREADY GRADED A+<RECENT VERSION>

Beoordeling
-
Verkocht
-
Pagina's
27
Cijfer
A+
Geüpload op
31-10-2025
Geschreven in
2025/2026

WGU D311 MICROBIOLOGY OBJECTIVE ASSESSMENT PRACTICE EXAM QUESTIONS WITH CORRECT DETAILED ANSWERS | ALREADY GRADED A+&lt;RECENT VERSION&gt; 1) prokaryotic cell - ANSWER lacks a nucleus and membrane bound organelles 2) MySQL - ANSWER 'World' database, a database that is usually installed with ______. 3) Error Code - ANSWER MySQL Server returns an _____ ____ and description when an SQL statement is syntactically incorrect or the database cannot execute the statement. 4) Database Model - ANSWER Data structures that prescribe how data is organized. Operations that manipulate data structures. Rules that govern valid data. 5) Tuple - ANSWER An ORDERED collection of elements enclosed in parentheses. 6) Table - ANSWER A _____ has a name, a fixed tuple of columns, and a varying set of rows. 7) Column - ANSWER A ______ has a name and a data type. 8) Row - ANSWER Is an unnamed tuple of values. Each value corresponds to a column and belongs to the column's data type. 9) Data Type - ANSWER A ____ _____ is a named set of values, from which column values are drawn. 10) Union - ANSWER Selects all rows of two tables. 11) Aggregate - ANSWER Computes functions over multiple table rows, such as sum and count. 12) Relational Rules - ANSWER Rules that are logical constraints and ensure data is valid. 13) The standard language for Relational Databases... - ANSWER SQL is the standard language for relational databases, and is commonly supported in non-relational databases. 14) Literals (SQL Syntax) - ANSWER Explicit values that are string, numeric, or binary. Strings must be surrounded by single quotes or double quotes. Binary values are represented with x'0' where the 0 is any hex value. 15) Keywords (SQL Syntax) - ANSWER Words with special meaning. ex. SELECT, FROM, WHERE 16) Identifiers (SQL Syntax) - ANSWER Objects from the database like tables, columns, etc. ex. City, Name, Population 17) SQL Sublanguages - ANSWER Data Definition Language (DDL) defines the structure of the database. Data Query Language (DQL) retrieves data from the database. Data Manipulation Language (DML) manipulates data stored in a database. Data Control Language (DCL) controls database user access. Data Transaction Language (DTL) manages database transactions. 18) Cell - ANSWER A single column of a single row. 19) Not Ordered - ANSWER Rows 20) Data Independence - ANSWER Rule 7. Allows database administrators to improve query performance by changing the organization of data on storage devices, without affecting query results. 21) DROP TABLE - ANSWER Statement that deletes a table, along with all the table's rows, from a database. 22) ALTER TABLE - ANSWER Statement that adds, deletes, or modifies columns on an existing table. 23) INT - ANSWER 4 bytes 24) SMALLINT - ANSWER 2 bytes 25) BIGINT - ANSWER 8 bytes 26) TINYINT - ANSWER 1 byte 27) MEDIUMINT - ANSWER 3 bytes 28) % (Modulo) - ANSWER Divides one numeric value by another and returns the integer remainder 29) ^ - ANSWER Raises one numeric value to the power of another. 30) = - ANSWER Compares two values for equality. 31) != - ANSWER Compares two values for inequality. 32) NULL - ANSWER A special value that represents either unknown or inapplicable data. 33) INSERT Statement (Clauses) - ANSWER INTO clause names the table and columns where data is to be added. The keyword INTO is optional. VALUES clause specifies the column values to be added. 34) INSERT Statement (Syntax) - ANSWER INSERT [INTO] TableName (Column1, Column2, ...)VALUES (Value1, Value2, ...); 35) UPDATE Statement (Clauses) - ANSWER Uses the SET clause to specify the new column values. An optional WHERE clause specifies which rows are updated. Omitting the WHERE clause results in all rows being updated. 36) DELETE Statement (Keywords/Clauses) - ANSWER The FROM keyword is followed by the table name whose rows are to be deleted. An optional WHERE clause specifies which rows should be deleted. Omitting the WHERE clause results in all rows in the table being deleted. 37) TRUNCATE Statement - ANSWER Deletes all rows from a table.

Meer zien Lees minder
Instelling
WGU D311 Microbiology
Vak
WGU D311 Microbiology










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

Geschreven voor

Instelling
WGU D311 Microbiology
Vak
WGU D311 Microbiology

Documentinformatie

Geüpload op
31 oktober 2025
Aantal pagina's
27
Geschreven in
2025/2026
Type
Tentamen (uitwerkingen)
Bevat
Vragen en antwoorden

Onderwerpen

Voorbeeld van de inhoud

WGU D311 MICROBIOLOGY
OBJECTIVE ASSESSMENT
PRACTICE EXAM QUESTIONS
WITH CORRECT DETAILED
ANSWERS | ALREADY GRADED
A+<RECENT VERSION>


1) prokaryotic cell - ANSWER lacks a nucleus and membrane bound organelles



2) MySQL - ANSWER 'World' database, a database that is usually installed with
______.



3) Error Code - ANSWER MySQL Server returns an _____ ____ and description
when an SQL statement is syntactically incorrect or the database cannot execute the
statement.


4) Database Model - ANSWER Data structures that prescribe how data is organized.
Operations that manipulate data structures.
Rules that govern valid data.


5) Tuple - ANSWER An ORDERED collection of elements enclosed in parentheses.



6) Table - ANSWER A _____ has a name, a fixed tuple of columns, and a varying
set of rows.


7) Column - ANSWER A ______ has a name and a data type.

,8) Row - ANSWER Is an unnamed tuple of values. Each value corresponds to a
column and belongs to the column's data type.


9) Data Type - ANSWER A ____ _____ is a named set of values, from which
column values are drawn.


10) Union - ANSWER Selects all rows of two tables.



11) Aggregate - ANSWER Computes functions over multiple table rows, such as sum
and count.


12) Relational Rules - ANSWER Rules that are logical constraints and ensure data is
valid.


13) The standard language for Relational Databases... - ANSWER SQL is the
standard language for relational databases, and is commonly supported in non-
relational databases.


14) Literals (SQL Syntax) - ANSWER Explicit values that are string, numeric, or
binary. Strings must be surrounded by single quotes or double quotes. Binary values
are represented with x'0' where the 0 is any hex value.



15) Keywords (SQL Syntax) - ANSWER Words with special meaning.


ex. SELECT, FROM, WHERE


16) Identifiers (SQL Syntax) - ANSWER Objects from the database like tables,
columns, etc.


ex. City, Name, Population



17) SQL Sublanguages - ANSWER Data Definition Language (DDL) defines the
structure of the database.

, Data Query Language (DQL) retrieves data from the database.
Data Manipulation Language (DML) manipulates data stored in a database.
Data Control Language (DCL) controls database user access.
Data Transaction Language (DTL) manages database transactions.


18) Cell - ANSWER A single column of a single row.



19) Not Ordered - ANSWER Rows



20) Data Independence - ANSWER Rule 7. Allows database administrators to
improve query performance by changing the organization of data on storage devices,
without affecting query results.


21) DROP TABLE - ANSWER Statement that deletes a table, along with all the
table's rows, from a database.


22) ALTER TABLE - ANSWER Statement that adds, deletes, or modifies columns on
an existing table.


23) INT - ANSWER 4 bytes



24) SMALLINT - ANSWER 2 bytes



25) BIGINT - ANSWER 8 bytes



26) TINYINT - ANSWER 1 byte



27) MEDIUMINT - ANSWER 3 bytes



28) % (Modulo) - ANSWER Divides one numeric value by another and returns the
integer remainder
€12,18
Krijg toegang tot het volledige document:

100% tevredenheidsgarantie
Direct beschikbaar na je betaling
Lees online óf als PDF
Geen vaste maandelijkse kosten

Maak kennis met de verkoper
Seller avatar
jervismuthami
4,0
(1)

Maak kennis met de verkoper

Seller avatar
jervismuthami Teachme2-tutor
Volgen Je moet ingelogd zijn om studenten of vakken te kunnen volgen
Verkocht
7
Lid sinds
8 maanden
Aantal volgers
0
Documenten
561
Laatst verkocht
1 maand geleden

4,0

1 beoordelingen

5
0
4
1
3
0
2
0
1
0

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