logo

Crowdly

LE/EECS 3421 M & N - Introduction to Database Systems (Winter 2024-2025)

Looking for LE/EECS 3421 M & N - Introduction to Database Systems (Winter 2024-2025) test answers and solutions? Browse our comprehensive collection of verified answers for LE/EECS 3421 M & N - Introduction to Database Systems (Winter 2024-2025) at eclass.yorku.ca.

Get instant access to accurate answers and detailed explanations for your course questions. Our community-driven platform helps students succeed!

In a star schema, a Customer dimension table is designed as follows: Customer: (CustomerID, Name, Gender, Age, Address, City, State, Country)

Which attribute is most likely to be part of an attribute hierarchy?

View this question

During the ETL process, which of the following tasks is part of the Transformation phase?

View this question

A banking system uses the following fact table: Transactions: (TransactionID, AccountID, TransactionDate, TransactionAmount). 

The Transactions fact table is designed to store individual transactions. To improve query performance, the company decides to create a new fact table that summarizes daily transaction amounts per account. What type of fact table is the new table?

View this question

Which of the following best describes a fact table in a star schema?

View this question

A food delivery system uses the following tables:

  • Restaurants: (RestaurantID, RestaurantName, City)  
  • Dishes: (DishID, DishName, RestaurantID, Price)
You want to list all restaurants along with their dishes. If a restaurant has no dishes, it should still be displayed. Which queries will correctly produce the desired result? (select all that apply

View this question
Consider the following tables (Some products may not have suppliers assigned). What will be the result of the query?

  • Products: (ProductID, ProductName, SupplierID)  
  • Suppliers: (SupplierID, SupplierName)  
SELECT ProductName, SupplierName 

FROM Products 

LEFT JOIN Suppliers 

ON Products.SupplierID = Suppliers.SupplierID;

View this question

Which query would find the total number of orders placed for each product, showing only products with a total quantity above 100?

Orders: (OrderID, ProductID, Quantity)

View this question

Consider the following tables, what query retrieves all employees along with their department names, even if some employees are not assigned to any department?

  • Employees: (EmployeeID, Name, DepartmentID)
  • Departments: (DepartmentID, DepartmentName)

View this question

Given the following table definition, which query would retrieve unique customer IDs who have placed orders in the year 2025?

CREATE TABLE Orders (

         OrderID INT PRIMARY KEY,

         CustomerID INT,

         OrderDate DATE

);

View this question

A hotel booking system stores reservations like this: (BookingID, CustomerName, RoomNumber, RoomType, RatePerNight). Assume RoomNumber → RoomType, RatePerNight. Which normal form is violated?

View this question

Want instant access to all verified answers on eclass.yorku.ca?

Get Unlimited Answers To Exam Questions - Install Crowdly Extension Now!