C# Mastery Hub
Home
Challenges
Discussion
Lessons
Core Topics
C# Fundamentals
Console Applications
Classes & OOP
Windows Forms
ASP.NET Core
SQL Server
VS & SQL Connection
RDLC Reports
.NET MAUI
Getting Started
Getting Started
Website Development
SEO Guide
Security
Project Workflow
Extra Topics
Cloud & Deployment
AWS Cloud
Deployment
About
Contact
Test Your Knowledge
RDLC Reports - Lesson 5: Full Report Project with SQL Quiz
Answer all questions to test your understanding
1
What is a foreign key used for in a database?
To link one table to another
To create a primary key
To create a new table
To delete data
2
What command creates a new table in SQL Server?
CREATE TABLE
NEW TABLE
INSERT TABLE
ADD TABLE
3
What is the purpose of IDENTITY in SQL Server?
To automatically generate unique numbers
To create a new table
To delete data
To add a foreign key
4
How do you export a report to PDF?
Using LocalReport.Render('PDF')
Using reportViewer.ExportPDF()
Using File.Save()
Using PrintToPDF()
5
What is the benefit of using a service class for reports?
It keeps your code organized and reusable
It makes the code run faster
It uses less memory
It automatically creates reports
Submit Quiz