FC0-U61 · topic practice

Database Fundamentals practice questions

Use this page to practise Database Fundamentals questions for this certification. Focus on how the exam tests database fundamentals in scenario format — understanding the why behind each answer builds more durable knowledge than memorising options.

Courseiva uses original exam-style practice questions designed for learning and revision. The goal is to understand the concepts, recognise exam patterns, and improve through explanations — not memorise copied exam dumps.

Reviewed byJohnson Ajibi· MSc IT Security
20 questionsDomain: Database Fundamentals

What the exam tests

What to know about Database Fundamentals

Database Fundamentals questions on this certification test your ability to deploy and manage database fundamentals concepts in scenario-based situations.

Core Database Fundamentals concepts and how they apply in real-world cloud scenarios.

How to deploy database fundamentals correctly and verify the outcome.

Troubleshooting database fundamentals issues by interpreting error output and system state.

Cloud best practices and Database Fundamentals design trade-offs tested by this certification.

Watch out for

Common Database Fundamentals exam traps

  • Selecting the most expensive service when a simpler managed option meets the requirement.
  • Forgetting that cloud resources must be explicitly secured — defaults are rarely secure.
  • Choosing a global service fix when the issue is region-specific.
  • Overlooking cost implications of cross-region data transfer in architecture questions.

Practice set

Database Fundamentals questions

20 questions · select your answer, then reveal the explanation

A user needs to store customer information including name, address, and order history. Which database type is most appropriate?

A database analyst is designing a schema for a library system. Each book can have multiple authors, and each author can write multiple books. Which relationship type should be used?

A database administrator is troubleshooting a slow query on a large table. Which index type would improve performance for an exact match search on a single column?

A developer writes a query: SELECT * FROM Employees WHERE Department = 'Sales'. Which statement about this query is true?

A database designer wants to ensure that no two employees have the same email address. Which constraint should be applied to the Email column?

A database administrator notices that a transaction that updates two tables is failing halfway, leaving data inconsistent. Which property of ACID ensures that the database returns to its original state if the transaction fails?

A database administrator is designing a normalized database for an e-commerce site. Which TWO actions represent best practices for normalization?

A database administrator is setting up user permissions. Which THREE actions follow the principle of least privilege?

Refer to the exhibit. A user executes: SELECT AVG(Salary) FROM Employees; What is the result?

Network Topology
+Refer to the exhibit.```

Refer to the exhibit. What is the output of the SELECT statement?

Exhibit

Refer to the exhibit.

```
INSERT INTO Products (ProductID, ProductName, Price) VALUES (1, 'Widget', 10);
INSERT INTO Products (ProductID, ProductName, Price) VALUES (2, 'Gadget', 20);
INSERT INTO Products (ProductID, ProductName, Price) VALUES (3, 'Widget', 15);
SELECT ProductName, COUNT(*) FROM Products GROUP BY ProductName HAVING COUNT(*) > 1;
```

A small business uses a MySQL database to manage inventory and sales. The database has two tables: Products (ProductID, ProductName, QuantityInStock) and Sales (SaleID, ProductID, QuantitySold, SaleDate). The business runs a nightly script that updates QuantityInStock by subtracting QuantitySold from the Products table based on the day's sales. Recently, the inventory levels have become inaccurate. For example, a product shows negative stock even though no sales occurred that day. The database administrator suspects the issue is related to how transactions are handled. The nightly script runs multiple UPDATE statements in a loop. If the script fails partway through, some products' stock is updated while others are not, leaving inconsistent data. The administrator wants to ensure that either all updates succeed or none do, and that the script does not interfere with daytime operations. Which action should the administrator take?

A company needs to store customer orders with items and quantities. The database currently has a table 'Customers' and a table 'Products'. Which of the following is the best way to represent the many-to-many relationship between orders and products?

Which THREE of the following are valid database integrity constraints?

Refer to the exhibit. A database administrator runs the following query:

SELECT c.Name, SUM(o.Quantity) AS TotalItems FROM Customers c LEFT JOIN Orders o ON c.ID = o.CustomerID GROUP BY c.Name;

What is the result for 'Alice'?

Network Topology
+Refer to the exhibit.Customers Table:Orders Table:

A company's database administrator notices that queries against a large customer table are running slowly. The table has millions of rows and is frequently filtered by the 'last_name' column. Which of the following is the BEST way to improve query performance without changing the application code?

Which THREE of the following are characteristics of a relational database? (Choose THREE.)

Refer to the exhibit. A database administrator executes the following query: SELECT COUNT(*) FROM employees WHERE department_id = 10; What is the result?

Exhibit

Refer to the exhibit.

CREATE TABLE employees (
    employee_id INT PRIMARY KEY,
    first_name VARCHAR(50),
    last_name VARCHAR(50),
    department_id INT,
    hire_date DATE
);

INSERT INTO employees VALUES (1, 'John', 'Doe', 10, '2021-01-15');
INSERT INTO employees VALUES (2, 'Jane', 'Smith', 20, '2020-06-01');
INSERT INTO employees VALUES (3, 'Bob', 'Johnson', 10, '2022-03-22');

Drag and drop the steps to open the Task Manager in Windows 10 into the correct order.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order
1Step 1
2Step 2
3Step 3
4Step 4
5Step 5

Match each network type to its description.

Drag a concept onto its matching description — or click a concept then click the description.

Concepts
Matches

Small geographic area

Large geographic area

Personal devices around a person

City-sized network

Question 20easymultiple choice
Read the full NAT/PAT explanation →

A user runs a query on a database table and notices that the results contain duplicate rows. Which SQL keyword would eliminate these duplicates?

Free account

Track your progress over time

Create a free account to save your results and see which topics improve across sessions.

Focused Database Fundamentals sessions

Start a Database Fundamentals only practice session

Every question in these sessions is drawn from the Database Fundamentals domain — nothing else.

Related practice questions

Related FC0-U61 topic practice pages

Move into related areas when this topic feels solid.

Frequently asked questions

What does the FC0-U61 exam test about Database Fundamentals?
Database Fundamentals questions on this certification test your ability to deploy and manage database fundamentals concepts in scenario-based situations.
How should I use these practice questions?
Select your answer before revealing the explanation. Then read why each option is right or wrong — this active recall approach builds retention far faster than re-reading notes.
Can I practise just Database Fundamentals questions in a focused session?
Yes — the session launcher on this page draws every question from the Database Fundamentals domain. Use a 10-question session first to gauge your baseline, then move to 20 or 30 once the weak spots are clear.
Where can I practise other FC0-U61 topics?
Use the topic links above to move to related areas, or go back to the FC0-U61 question bank to see all topics.
Are these real exam questions or dumps?
These are original practice questions written to test the same concepts the FC0-U61 exam covers. They are not copied from any real exam or dump site.