Open navigation menu
Close suggestions
Search
Search
en
Change Language
Upload
Sign in
Sign in
Download free for days
0 ratings
0% found this document useful (0 votes)
241 views
98 364 Database Fundamentals
Uploaded by
Hanna Galinato
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download now
Download
Save 98-364-Database-Fundamentals For Later
Download
Save
Save 98-364-Database-Fundamentals For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
0 ratings
0% found this document useful (0 votes)
241 views
98 364 Database Fundamentals
Uploaded by
Hanna Galinato
AI-enhanced title
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content,
claim it here
.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
Download now
Download
Save 98-364-Database-Fundamentals For Later
Carousel Previous
Carousel Next
Save
Save 98-364-Database-Fundamentals For Later
0%
0% found this document useful, undefined
0%
, undefined
Embed
Share
Print
Report
Download now
Download
You are on page 1
/ 5
Search
Fullscreen
Vendor: Microsoft QUESTION 6
Exam Code: 98-364 Which statement creates a composite key?
Exam Name: Microsoft Database Fundamentals A. Option A
Version: Demo B. Option B
C. Option C
QUESTION 1 D. Option D
The terms "bitmap," "b-tree," and "hash" refer to which Correct Answer: D
type of database structure?
A. View QUESTION 7
B. Function At 3:00 P.M. (1500 hours), you create a backup of your
C. Index database. At 4:00 P.M. (1600 hours), you create a
D. Stored procedure table named Customer and import data into the table.
E. Trigger At 5:00 P.M. (1700 hours), your server fails.
Correct Answer: C You run a script to apply only the 3:00 P.M. backup to
your database. What is the result of the script?
QUESTION 2 A. The Customer table no longer exists.
One reason to add an index is to: B. The Customer table is unaffected.
A. Decrease storage space. C. The Customer table exists but has no data.
B. Increase database security. D. The script fails.
C. Improve performance of select statements. Correct Answer: A
D. Improve performance of insert statements.
Correct Answer: C QUESTION 8
In which situation do you need to perform a restore on
a database?
QUESTION 3
A. when data becomes corrupted in the database
You have a table that contains the following data.
B. when you need to roll back a transaction
You break the table into the following two tables.
C. when you encounter an error in your application
This process is referred to as:
D. when data needs to be deleted from the database
A. defragmentation
Correct Answer: A
B. normalization
C. fragmentation
QUESTION 9
D. denormalization
Which command should you use to give a user
Correct Answer: B
permission to read the data in a table?
A. ALLOW SELECT
QUESTION 4
B. LET READ
You have a table that contains the following data.
C. PERMIT READ
Which database term is used to describe the
D. GRANT SELECT
relationship between ProductID and ProductCategory?
Correct Answer: D
A. Cohort
B. Relationally dependent
QUESTION 10
C. Deterministic
You need to enable a new employee to authenticate to
D. Functionally dependent
your database.
E. Compositional
Which command should you use?
Correct Answer: D
A. ALLOW USER
B. CREATE USER
QUESTION 5
C. ADD USER
Which key uniquely identifies a row in a table?
D. INSERT USER
A. foreiqn
E. ALTER USER
B. primary
Correct Answer: B
C. local
D. superkey
QUESTION 11
Correct Answer: B
Which keyword can be used in a create table
statement?
A. ORDER BY
B. DISTINCT C. Bypass case sensitivity requirements.
C. GROUP BY D. Give the user control of the query logic.
D. UNIQUE Correct Answer: A
Correct Answer: D
QUESTION 17
QUESTION 12 Which permission does a user need in order to run a
You need to store product quantities, and you want to stored procedure?
minimize the amount of storage space that is used. A. EXECUTE
Which data type should you use? B. ALLOW
A. INTEGER C. CALL
B. DOUBLE D. RUN
C. COUNT Correct Answer: A
D. FLOAT
Correct Answer: A QUESTION 18
You have a table named Product. You create a view
QUESTION 13 that includes all the products from the Product table
Which statement will result in the creation of an index? that are in the Furniture category.
A. Option A You execute a statement on the Product table that
B. Option B deletes all the products in the Furniture category.
C. Option C After you execute the statement, the result set of the
view is:
D. Option D
A. Empty
Correct Answer: A
B. Deleted
C. Unchanged
QUESTION 14
D. Archived
You have the following table definition:
Correct Answer: A
CREATE TABLE Road
(RoadID INTEGER NOT NULL,
QUESTION 19
Distance INTEGER NOT NULL)
In SQL, an insert statement is used to add a:
The Road table contains the following data:
A. User to a database.
You execute the following statement:
B. Row of data to a table.
INSERT INTO Road VALUES (1234, 36)
C. Table to a database.
What is the result?
D. Column to a table definition.
A. an error stating that NULL values are not allowed
Correct Answer: B
B. a new row in the table
C. an error stating that duplicate IDs are not allowed
QUESTION 20
D. a syntax error
You have two tables. Each table has three rows.
Correct Answer: B
How many rows will be included in the Cartesian
product of these two tables?
QUESTION 15
A. 0
You need to store product names that vary from three
B. 3
to 30 characters. You also need to minimize the
C. 6
amount of storage space that is used.
D. 9
Which data type should you use?
Correct Answer: D
A. VARCHAR (3, 30)
B. CHAR (3, 30)
QUESTION 21
C. VARCHAR (30)
You are writing an SQL statement to retrieve rows
D. CHAR (30)
from a table.
Correct Answer: C
Which data manipulation language (DML) command
should you use?
QUESTION 16 A. READ
One reason to create a stored procedure is to: B. SELECT
A. Improve performance. C. OUTPUT
B. Minimize storage space. D. GET
Correct Answer: B C. 2
D. 3
QUESTION 22 E. 4
Which constraint ensures a unique value in the ID Correct Answer: D
column for each customer?
A. DISTINCT QUESTION 27
B. FOREIGN KEY You are writing a select statement to find every
C. SEQUENTIAL product whose name contains a specific character.
D. PRIMARY KEY Which keyword should you use in your where clause?
Correct Answer: D A. FIND
B. BETWEEN
QUESTION 23 C. INCLUDES
The component that holds information for a single D. LIKE
entry in a table is called a: Correct Answer: D
A. Data type
B. Row QUESTION 28
C. Column A database contains two tables named Customer and
D. View Order.
Correct Answer: B You execute the following statement:
DELETE FROM Order
QUESTION 24 WHERE CustomerID = 209
You execute the following statement: What is the result?
SELECT EmployeeID, FirstName, DepartmentName A. The first order for CustomerID 209 is deleted from
FROM Employee, Department the Order table.
This type of operation is called a/an: B. All orders for CustomerID 209 are deleted from the
A. Intersection Order table, and CustomerID 209 is deleted from
B. Outer join the Customer table.
C. Equi-join C. All orders for CustomerID 209 are deleted from the
Order table.
D. Cartesian product
D. CustomerID 209 is deleted from the Customer
Correct Answer: D
table.
Correct Answer: C
QUESTION 25
Which command should you use to add a column to an
QUESTION 29
existing table?
You have a table named Product. The Product table
A. MODIFY
has columns for ProductDescription and
B. ALTER
ProductCategory.
C. UPDATE
You need to change the ProductCategory value for all
D. INSERT the spoons in the Product table to 43.
E. CHANGE Which statement should you use?
Correct Answer: B A. Option A
B. Option B
QUESTION 26 C. Option C
You have the following table definition: D. Option D
CREATE TABLE Product Correct Answer: A
(ID INTEGER PRIMARY KEY,
Name VARCHAR(20), QUESTION 30
Quantity INTEGER) You have a table that contains information about all
The Product table contains the following data. students in your school. Which SQL keyword should
You execute the following statement: you use to change a student's first name in the table?
SELECT Name FROM Product WHERE Quantity IS A. UPDATE
NOT NULL B. CHANGE
How many rows are returned? C. SELECT
A. 0 D. INSERT
B. 1
Correct Answer: A QUESTION 36
Which command should you use to remove a table
QUESTION 31 from a database?
You need to populate a table named EmployeeCopy A. REMOVE TABLE
with data from an existing table named Employee. B. UPDATE TABLE
Which statement should you use? C. DROP TABLE
A. Option A D. DELETE TABLE
B. Option B Correct Answer: C
C. Option C
D. Option D QUESTION 37
Correct Answer: D You need to store the contact information for each
student in your school database.
QUESTION 32 You should store each student's information in a:
You execute the following statement: A. Stored procedure
This statement is an example of a/an: B. Function
A. Subquery C. Row
B. Union D. Variable
C. Outer join Correct Answer: C
D. Cartesian product
Correct Answer: A QUESTION 38
Which category of SQL statements is used to add,
QUESTION 33 remove, and modify database structures?
Which keyword would you use in a select statement to A. Data access language (DAL)
return rows that meet a specific condition? B. Data manipulation language (DML)
A. WHERE C. Data control language (DCL)
B. UNION D. Data definition language (DDL)
C. ORDER BY Correct Answer: D
D. FROM
Correct Answer: A QUESTION 39
You have a Customer table and an Order table. You
QUESTION 34 join the Customer table with the Order table by using
You have a table named Employee that includes the the CusromerID column.
following columns: The results include:
EmployeeID All customers and their orders
Smp1oyeeName Customers who have no orders
Which statement should you use to return the number Which type of join do these results represent?
of rows in the table? A. Complete join
A. Option A B. Partial join
B. Option B C. Inner join
C. Option C D. Outer join
D. Option D Correct Answer: D
Correct Answer: D
QUESTION 40
QUESTION 35 Data in a database is stored in:
The Product table contains the following data. A. Tables
You execute the following statement: B. Queries
SELECT COUNT(*) C. Data types
FROM Product WHERE Quantity > 18 D. Stored procedures
What is the value returned by this statement? Correct Answer: A
A. 1 QUESTION 41
B. 2 You have a table named Student that contains 100
C. 3 rows. Some of the rows have a NULL value in the
D. 4 FirstName column.
Correct Answer: C You execute the following statement:
DELETE FROM Student You have a table named Product that contains the
What is the result? following data.
A. All rows in the table will be deleted. Trying our product !
B. All rows containing a NULL value in the FirstName Guarantee & Policy | Privacy & Policy | Terms &
column will be deleted. Conditions
C. You will receive an error message. Any charges made through this site will appear as
D. All rows and the table definition will be deleted. Global Simulators Limited.
Correct Answer: A All trademarks are the property of their respective
owners.
QUESTION 42
Copyright © 2004-2015, All Rights Reserved.
You need to establish a set of permissions that you
can routinely assign to new users. ★ 100% Guaranteed Success
What should you create? ★ 100% Money Back Guarantee
A. Resource ★ 365 Days Free Update
B. Group ★ Instant Download After Purchase
C. List
★ 24x7 Customer Support
D. Role
★ Average 99.9% Success Rate
Correct Answer: D
★ More than 69,000 Satisfied Customers Worldwide
QUESTION 43
Which database term is used to describe the process ★ Multi-Platform capabilities - Windows, Mac, Android,
of applying a backup to a damaged or corrupt iPhone, iPod, iPad, Kindle
database? Need Help
A. Recover Please provide as much detail as possible so we can
B. Restore best assist you.
C. Commit To update a previously submitted ticket:
D. Attach To Read the Whole Q&As, please purchase the
Complete Version from Our website.
Correct Answer: B
QUESTION 44
You need to disable User1's access to view the data in
the Customer table.
Which statement should you use?
A. Option A
B. Option B
C. Option C
D. Option D
Correct Answer: C
QUESTION 45
Denormalization is performed in order to:
A. Reduce redundancy.
B. Eliminate repeating groups.
C. Create smaller tables.
D. Improve query performance.
Correct Answer: D
QUESTION 46
You have a table named Product that contains one
million rows.
You need to search for product information in the
Product table by using the product's unique ID.
What will make this type of search more efficient?
A. A cursor
B. A subquery
C. A trigger
D. An index
Correct Answer: D
QUESTION 47
You might also like
IT Spesialist Database 7 Januari 2022
PDF
100% (1)
IT Spesialist Database 7 Januari 2022
26 pages
12.6.1 Packet Tracer - Troubleshooting Challenge - Document The Network
PDF
No ratings yet
12.6.1 Packet Tracer - Troubleshooting Challenge - Document The Network
5 pages
Website Dumps 98-364
PDF
No ratings yet
Website Dumps 98-364
109 pages
Rdbms Question Bank
PDF
No ratings yet
Rdbms Question Bank
6 pages
ITS_DATABSE_43Qs
PDF
No ratings yet
ITS_DATABSE_43Qs
11 pages
Q - Mta - SQL Server Ok
PDF
100% (9)
Q - Mta - SQL Server Ok
22 pages
Microsoft - Practicetest.98 364.v2018!10!10.by - Fletcher
PDF
No ratings yet
Microsoft - Practicetest.98 364.v2018!10!10.by - Fletcher
34 pages
Looking For Real Exam Questions For IT Certification Exams!
PDF
No ratings yet
Looking For Real Exam Questions For IT Certification Exams!
13 pages
Bismillah MTA
PDF
No ratings yet
Bismillah MTA
24 pages
Jawaban Final Basis Data 1-60
PDF
No ratings yet
Jawaban Final Basis Data 1-60
5 pages
Number: 98-364 Passing Score: 800 Time Limit: 120 Min
PDF
No ratings yet
Number: 98-364 Passing Score: 800 Time Limit: 120 Min
50 pages
SEMUA
PDF
No ratings yet
SEMUA
44 pages
Pre Test Mta
PDF
No ratings yet
Pre Test Mta
19 pages
VERSI 1-Latihan
PDF
No ratings yet
VERSI 1-Latihan
7 pages
VERSI 4 - Latihan
PDF
No ratings yet
VERSI 4 - Latihan
5 pages
Additional 20 MCQs on RDBMS Tool
PDF
No ratings yet
Additional 20 MCQs on RDBMS Tool
3 pages
Soal Exam Labs Fix
PDF
No ratings yet
Soal Exam Labs Fix
58 pages
Database Fundamentals 98-364 Practice Tests
PDF
No ratings yet
Database Fundamentals 98-364 Practice Tests
31 pages
My SQL MCQ
PDF
No ratings yet
My SQL MCQ
4 pages
Latihan MTA 1
PDF
No ratings yet
Latihan MTA 1
11 pages
RT 2 Ip 065
PDF
No ratings yet
RT 2 Ip 065
9 pages
Untitled Document
PDF
No ratings yet
Untitled Document
10 pages
Objective Type Questions Multiple Choice Questions
PDF
100% (1)
Objective Type Questions Multiple Choice Questions
27 pages
Rdbms
PDF
No ratings yet
Rdbms
25 pages
98-364.exam.70q: Number: 98-364 Passing Score: 800 Time Limit: 120 Min
PDF
No ratings yet
98-364.exam.70q: Number: 98-364 Passing Score: 800 Time Limit: 120 Min
45 pages
Post Test
PDF
No ratings yet
Post Test
11 pages
SQL MCQ
PDF
No ratings yet
SQL MCQ
11 pages
ITS
PDF
No ratings yet
ITS
40 pages
50mcq Test SQL
PDF
No ratings yet
50mcq Test SQL
6 pages
SQL Bank
PDF
No ratings yet
SQL Bank
30 pages
MCQPractice_93486
PDF
No ratings yet
MCQPractice_93486
8 pages
sql1
PDF
No ratings yet
sql1
3 pages
Or SQL MCQ
PDF
No ratings yet
Or SQL MCQ
7 pages
June 2020
PDF
No ratings yet
June 2020
96 pages
Final Exam
PDF
No ratings yet
Final Exam
45 pages
DB2 Associate Mock Test Time Duration: 1 Hr. 30 Min. Passing Percentage: 60
PDF
No ratings yet
DB2 Associate Mock Test Time Duration: 1 Hr. 30 Min. Passing Percentage: 60
11 pages
CGS2545 - Assignment 4
PDF
No ratings yet
CGS2545 - Assignment 4
7 pages
SQL Commands
PDF
No ratings yet
SQL Commands
14 pages
Sqlboard Based Practice Questions for
PDF
No ratings yet
Sqlboard Based Practice Questions for
26 pages
DBMS
PDF
No ratings yet
DBMS
8 pages
MCQs.1
PDF
No ratings yet
MCQs.1
6 pages
Mysql One Mark Questions
PDF
No ratings yet
Mysql One Mark Questions
12 pages
SQL Sample MCQ dc5
PDF
No ratings yet
SQL Sample MCQ dc5
12 pages
SQL Queries Class 12
PDF
No ratings yet
SQL Queries Class 12
12 pages
Reviewer S008 - Its Databases - National - 2022
PDF
No ratings yet
Reviewer S008 - Its Databases - National - 2022
8 pages
MS SQL Server Developer
PDF
No ratings yet
MS SQL Server Developer
93 pages
MCQ1
PDF
No ratings yet
MCQ1
5 pages
MYSQL MCQ CLASS 12 IP
PDF
No ratings yet
MYSQL MCQ CLASS 12 IP
4 pages
SQL Test1
PDF
No ratings yet
SQL Test1
18 pages
SQL MCQ
PDF
No ratings yet
SQL MCQ
9 pages
SQL Test Questions
PDF
No ratings yet
SQL Test Questions
5 pages
? Master SQL DDL with These 50 Interview Questions!
PDF
No ratings yet
? Master SQL DDL with These 50 Interview Questions!
8 pages
question-1698630
PDF
No ratings yet
question-1698630
8 pages
Oracle SQL
PDF
No ratings yet
Oracle SQL
7 pages
Shivaji University, Kolhapur: Question Bank For Mar 2022 (Summer) Examination
PDF
No ratings yet
Shivaji University, Kolhapur: Question Bank For Mar 2022 (Summer) Examination
13 pages
Cs403 Final Term Solved Mcqs by Junaid
PDF
No ratings yet
Cs403 Final Term Solved Mcqs by Junaid
52 pages
Midterm Test Kom4043-Pembangunan Sistem Pangkalan Data (2 HOURS)
PDF
No ratings yet
Midterm Test Kom4043-Pembangunan Sistem Pangkalan Data (2 HOURS)
7 pages
Cs403 Solved Mcqs Final Term by Junaid
PDF
No ratings yet
Cs403 Solved Mcqs Final Term by Junaid
52 pages
CS403 SOLVED MCQs FINAL TERM BY JUNAID
PDF
No ratings yet
CS403 SOLVED MCQs FINAL TERM BY JUNAID
52 pages
IT0079 - Laboratory Exercise 6.2
PDF
No ratings yet
IT0079 - Laboratory Exercise 6.2
16 pages
TEch Eng Type of Business Letter
PDF
No ratings yet
TEch Eng Type of Business Letter
10 pages
Info Assurance Reviewer
PDF
No ratings yet
Info Assurance Reviewer
71 pages
Module 3 - Main
PDF
No ratings yet
Module 3 - Main
18 pages
LA4 Ohm's Law
PDF
No ratings yet
LA4 Ohm's Law
20 pages
Customers Tempt
PDF
No ratings yet
Customers Tempt
2 pages
Documents
Computers