Courseiva
Knowledge + Practice
CertificationsVendorsCareer RoadmapsLabs & ToolsStudy GuidesGlossaryPractice Questions
C
Courseiva

Free IT certification practice questions with explained answers for CCNA, CompTIA, AWS, Azure, Google Cloud, and more.

Certification Practice Questions

CCNA practice questionsSecurity+ SY0-701 practice questionsAWS SAA-C03 practice questionsAZ-104 practice questionsAZ-900 practice questionsCLF-C02 practice questionsA+ Core 1 practice questionsGoogle Cloud ACE practice questionsCySA+ CS0-003 practice questionsNetwork+ N10-009 practice questions
View all certifications →

Product

CertificationsCertification PathsExam TopicsPractice TestsExam Dumps vs Practice TestsStudy HubComparisons

Free Resources

Difficulty IndexLearn — Free ChaptersIT GlossaryFree Tools & LabsStudy GuidesCareer RoadmapsBrowse by VendorCisco Command ReferenceCCNA Scenarios

Company

AboutContactEditorial PolicyQuestion Writing PolicyTrust Center

Legal

Privacy PolicyTerms of Service

Courseiva is a free IT certification practice platform offering original exam-style practice questions, detailed explanations, topic-based practice, mock exams, readiness tracking, and study analytics for Cisco, CompTIA, Microsoft, AWS, and other technology certifications.

© 2026 Courseiva. Courseiva is operated by JTNetSolutions Ltd. All rights reserved.

Courseiva is an independent certification practice platform and is not affiliated with, endorsed by, or sponsored by Cisco, Microsoft, AWS, CompTIA, Google, ISC2, ISACA, or any other certification vendor. Vendor names and certification marks are used only to identify the exams learners are preparing for.

HomeCertificationsFC0-U61DomainsDatabase Fundamentals
FC0-U61Free — No Signup

Database Fundamentals

Practice FC0-U61 Database Fundamentals questions with full explanations on every answer.

54questions

Start practicing

Database Fundamentals — choose a session length

10 questions~10 min20 questions~20 min30 questions~30 min50 questions~50 min

Free · No account required

FC0-U61 Domains

IT Concepts and TerminologyInfrastructureApplications and SoftwareSoftware DevelopmentDatabase FundamentalsSecuritySoftware Development Concepts

Practice Database Fundamentals questions

10Q20Q30Q50Q

All FC0-U61 Database Fundamentals questions (54)

Start session

Click any question to see the full explanation and answer options, or start a focused practice session above.

1

Which of the following is a primary advantage of using a database over a flat file system for storing customer records?

2

A database administrator wants to enforce that every record in the 'Orders' table must have a non-null unique value in the 'OrderID' column. Which database concept ensures this?

3

In a relational database, a foreign key in the 'Enrollments' table references the primary key of the 'Students' table. What does this relationship primarily enforce?

4

A company stores product data in a MongoDB database. Each product document contains fields like 'name', 'price', and 'tags' (an array). What type of NoSQL database is MongoDB?

5

Which SQL statement is used to retrieve all columns from a table named 'Customers' where the city is 'London'?

6

A database designer wants to split a table into two to reduce data redundancy and avoid update anomalies. This process is known as:

7

Which DBMS is an example of a proprietary relational database system?

8

A company uses a cloud database service where the provider automatically handles backups, patching, and scaling. This deployment model is known as:

9

Which SQL command is used to add a new row to a table?

10

In a relational database, which type of relationship is typically implemented by creating a third table (junction table) that contains foreign keys from both related tables?

11

A database has a 'Students' table with columns: StudentID (primary key), Name, Major. Another table 'Enrollments' has columns: EnrollmentID (primary key), StudentID (foreign key), CourseID. Which SQL query correctly lists each student's name and their enrolled courses by joining the tables?

12

Which of the following is a characteristic of a NoSQL database compared to a relational database?

13

A database administrator needs to choose a database for an e-commerce application that requires high availability and automatic scaling. Which TWO options are cloud database services?

14

A university database includes tables: 'Professors' (ProfessorID, Name, Department) and 'Courses' (CourseID, Title, ProfessorID). Which THREE statements about this design are correct?

15

Which TWO of the following are examples of NoSQL database types?

16

A company needs to store customer orders and ensure that each order is uniquely identified. Which database concept should be used?

17

A database designer wants to reduce data redundancy and avoid update anomalies. Which process should be applied?

18

A cloud database service is being considered for a startup to avoid hardware maintenance and allow automatic scaling. Which type of service is this?

19

A user needs to retrieve all product names and prices from a table named 'Products' where the price is greater than 50. Which SQL statement should be used?

20

Which of the following best describes a NoSQL database?

21

An employee wants to add a new customer record to the 'Customers' table with columns 'ID', 'Name', and 'Email'. Which SQL statement should be used?

22

A database has a 'Students' table and an 'Enrollments' table. Which type of relationship exists if a student can enroll in multiple courses and each course can have multiple students?

23

Which of the following is a benefit of using a database instead of a flat file?

24

A SELECT statement combines rows from two tables based on a related column. Which SQL clause is used to accomplish this?

25

Which of the following is an example of a NoSQL database that stores data as JSON-like documents?

26

A developer modifies a database and wants to ensure that every value in a column meets a specific condition, such as age must be between 0 and 120. Which type of integrity constraint should be used?

27

Which SQL statement is used to remove all rows from a table while keeping the table structure?

28

Which TWO of the following are characteristics of a relational database? (Select TWO.)

29

Which TWO of the following are examples of popular relational database management systems (RDBMS)? (Select TWO.)

30

Which THREE of the following are advantages of using a cloud database service (DBaaS) over an on-premises database? (Select THREE.)

31

Which of the following is a characteristic of a relational database table?

32

A sales database has a Customers table with CustomerID as the primary key and an Orders table that includes CustomerID. Which type of relationship is typically established between Customers and Orders?

33

Which of the following best describes normalization in a relational database?

34

A database designer wants to ensure that every value in a column called 'Status' is either 'Active', 'Inactive', or 'Pending'. Which type of constraint should be applied?

35

Which SQL statement is used to retrieve all columns from a table named 'Employees'?

36

A company stores customer data in a flat file. Which of the following is a disadvantage of using a flat file compared to a relational database?

37

Which of the following SQL statements will add a new row to the 'Products' table?

38

A database contains two tables: 'Authors' (AuthorID, Name) and 'Books' (BookID, Title, AuthorID). A query needs to return all authors and any books they have written, including authors with no books. Which type of JOIN should be used?

39

Which of the following is a valid reason to use a database instead of a spreadsheet?

40

Which of the following is an example of a NoSQL database?

41

In a relational database, which constraint ensures that a foreign key value matches an existing primary key value in the referenced table?

42

A database has a table 'Orders' with columns OrderID (primary key), CustomerID, OrderDate, and TotalAmount. Which SQL statement will delete all orders placed before January 1, 2023?

43

Which of the following are advantages of using a cloud database service (DBaaS) compared to an on-premises database? (Select TWO.)

44

An online store uses a relational database with tables: Customers, Orders, and Products. Which of the following are valid ways to query the database structure? (Select THREE.)

45

A database designer is normalizing a table that contains repeating groups (multiple values in one column). Which of the following are goals of normalization? (Select THREE.)

46

Which of the following is a primary advantage of using a database instead of a flat file system?

47

A database administrator needs to ensure that every record in the 'Orders' table can be uniquely identified. Which constraint should be applied to the 'OrderID' column?

48

A company uses a relational database with a 'Customers' table and an 'Orders' table. Each order must be linked to exactly one customer. Which type of relationship exists between Customers and Orders?

49

Which SQL statement would you use to retrieve the names of all products with a price greater than $50 from a table named 'Products'?

50

Which TWO of the following are key characteristics of a NoSQL database compared to a traditional relational database?

51

Which TWO of the following are benefits of using a cloud database service (DBaaS) over an on-premises database?

52

Which THREE of the following are types of data integrity enforced in relational databases?

53

Which THREE of the following are valid SQL statements?

54

A database designer wants to reduce data redundancy in a relational database. Which THREE of the following are normalization techniques or concepts?

Practice all 54 Database Fundamentals questions

Other FC0-U61 exam domains

IT Concepts and TerminologyInfrastructureApplications and SoftwareSoftware DevelopmentSecuritySoftware Development Concepts

Frequently asked questions

What does the Database Fundamentals domain cover on the FC0-U61 exam?

The Database Fundamentals domain covers the key concepts tested in this area of the FC0-U61 exam blueprint published by CompTIA. Courseiva provides free domain-focused practice, mock exams, missed-question review, and readiness tracking across all FC0-U61 domains — no account required.

How many Database Fundamentals questions are in the FC0-U61 question bank?

The Courseiva FC0-U61 question bank contains 54 questions in the Database Fundamentals domain. Click any question to see the full explanation and answer breakdown.

What is the best way to practice Database Fundamentals for FC0-U61?

Start with a 10-question focused session to identify your baseline accuracy in this domain. Read every explanation — even for questions you answer correctly — to understand the reasoning. Once you score consistently above 80%, move to a 20–30 question session to confirm depth before moving to the next domain.

Can I practice only Database Fundamentals questions for FC0-U61?

Yes — the session launcher on this page draws questions exclusively from the Database Fundamentals domain. Choose 10, 20, 30, or 50 questions for a focused session, or click individual questions to review them one by one.

Free forever · No credit card required

Track your FC0-U61 domain progress

Save your results, see per-domain analytics, and get readiness scores — free, for every certification.

Sign Up Free

Free forever · Every certification included

Practice Session

10 questions20 questions30 questions50 questions

Study Resources

All DomainsPractice TestMock ExamFlashcardsStudy Guide