School ICT Self Study

Practical Database Applications

43 viewsG10-09. Database
0

Question Title: Practical Database Applications

  1. How can form properties be manipulated to restrict data entry in a database?
  2. Design a query to find students who are over 15 years old and have a grade above 80.
  3. How can you customize a report in the Report Wizard to group data by a specific field?
  4. How would you use a database to manage a small store’s inventory, including tables, forms, queries, and reports?
  5. How does the feature of β€œintegrity” in databases prevent data issues, and how can it be enforced in a DBMS?
Spread the love
Ruwan Suraweera Changed status to publish 7 days ago
0

Answers and Descriptions:

  1. Answer: Set properties like β€œread-only” or β€œmaximum length” to limit what users can enter or edit in a form.
    Description: A β€œGrade” field can be set to accept only numbers between 0-100, preventing invalid entries like β€œABC.”
  2. Answer: Use criteria β€œAge > 15” AND β€œGrade > 80” in the query tool, sorting by name.
    Description: This filters the database to show only high-performing older students, useful for identifying scholarship candidates.
  3. Answer: In the wizard, select β€œGroup By” and choose a field (e.g., β€œClass”) to organize data into sections.
    Description: Grouping by β€œClass” in a student report separates results by classroom, making it easier to analyze class performance.
  4. Answer: Create a β€œProducts” table (Product ID, Name, Stock) and a β€œSales” table (Sale ID, Product ID, Date). Use forms for stock updates, queries to find low-stock items, and reports for monthly sales.
    Description: This system tracks stock levels, identifies reorder needs with queries (e.g., β€œStock < 10"), and summarizes sales in reports.
  5. Answer: Integrity ensures data accuracy and consistency (e.g., no duplicate records). It’s enforced in a DBMS with primary keys and relationship rules.
    Description: A primary key like β€œOrder ID” prevents duplicate orders, and linking tables ensures a sale references a valid product, avoiding errors.
Spread the love
Ruwan Suraweera Changed status to publish May 22, 2025
Write your answer.