Data and Database Fundamentals

Learn the value of data, database concepts, database usage, and backup strategies (13% of exam).

Covers the value of data including data-driven decisions, reporting, and data monetization. Explores database concepts including relational vs. non-relational databases, tables, rows, fields, and primary/foreign keys. Includes database usage topics such as queries, reports, scalability, and cloud vs. local storage considerations. Also covers backup concepts including file and system backups, and local vs. cloud storage backup strategies.
5 minutes 5 Questions

Data and Database Fundamentals form a critical foundation in IT, covering how information is stored, organized, and managed within computer systems. Data refers to raw facts and figures that can be processed to generate meaningful information. This includes text, numbers, images, audio, and video f…

Concepts covered: Rows and records, Data-driven decision making, Data reporting and visualization, Data monetization strategies, Big data concepts, Data quality and integrity, Data governance basics, Relational databases, Non-relational (NoSQL) databases, Database tables, Fields and columns, Primary keys, Foreign keys and relationships, Database normalization basics, Database schemas, Database queries and SQL basics, Report generation, Database scalability, Cloud vs local database storage, Database performance optimization, Data import and export, File backup strategies, System backup and imaging, Local backup storage, Cloud backup solutions, Backup frequency and scheduling, Full vs incremental vs differential backups, Disaster recovery basics

Test mode:
Tech+ - Data and Database Fundamentals Example Questions

Test your knowledge of Data and Database Fundamentals

Question 1

A data warehouse architect at an insurance company is analyzing query performance on a 'claims' table containing 75 million records. The table has a composite index on (claim_date, policy_type, region_code). A business analyst submits this query: SELECT policy_type, region_code, COUNT(*) as claim_count, AVG(claim_amount) as avg_amount FROM claims WHERE claim_date BETWEEN '2024-01-01' AND '2024-06-30' AND status = 'APPROVED' GROUP BY policy_type, region_code ORDER BY avg_amount DESC. The execution plan shows the composite index is being used for the date range filter, but a separate table scan occurs for the status condition. The architect needs to recommend the most effective indexing strategy to improve this specific query's performance. Which recommendation addresses the performance bottleneck most appropriately?

Question 2

A database administrator at a logistics company discovers that a complex reporting query is running extremely slowly. The query joins five tables and calculates average delivery times per region using AVG(delivery_days) grouped by region_id. The execution plan shows a full table scan on the largest table containing 50 million shipment records. The WHERE clause filters on shipment_date for the last 30 days, but this column has no index. The admin needs to optimize performance while maintaining accurate aggregated results. Which approach would most effectively address this performance issue?

Question 3

A financial technology startup has implemented a cloud backup solution that stores incremental backups throughout each business day. After experiencing a ransomware attack, the IT security team needs to restore their transaction processing system to a specific point in time from 72 hours ago, just before the malware was introduced. However, they discover that their backup solution only maintains daily recovery points, and the closest available restore point is from 96 hours ago, which means losing an additional 24 hours of legitimate transaction data. The CTO asks the backup administrator to explain what configuration limitation caused this gap between the desired and actual recovery capability. Which cloud backup configuration parameter directly determines the granularity of available recovery points and contributed to this data loss scenario?

More Data and Database Fundamentals questions
837 questions (total)