Q1
True / FalseSQL Server uses T-SQL as its primary query language.
T-SQL, or Transact-SQL, is an extension of SQL used by Microsoft SQL Server.
Q2
True / FalseSQL Server can only be installed on Windows operating systems.
SQL Server can be installed on both Windows and Linux operating systems.
Q3
True / FalseIn SQL Server, a primary key can contain multiple columns.
A primary key can be composed of multiple columns, known as a composite key.
Q4
True / FalseSQL Server Management Studio (SSMS) is a tool for managing SQL Server databases.
SSMS is an integrated environment for managing any SQL infrastructure.
Q5
True / FalseA database in SQL Server can have only one schema.
A database can have multiple schemas to logically group database objects.
Q6
True / FalseSQL Server Agent is used for automating administrative tasks.
SQL Server Agent is a Microsoft Windows service that executes scheduled administrative tasks, called jobs.
Q7
True / FalseIn SQL Server, a view is a virtual table based on the result-set of a query.
A view is a virtual table that consists of a subset of data contained in a table.
Q8
True / FalseSQL Server Always On provides high availability and disaster recovery solutions.
Always On is a suite of high availability and disaster recovery solutions in SQL Server.
Q9
True / FalseA clustered index in SQL Server determines the physical order of data in a table.
A clustered index defines the physical order of data in a table, improving the performance of queries.
Q10
True / FalseSQL Server supports foreign key constraints for maintaining referential integrity.
Foreign key constraints enforce referential integrity between tables in SQL Server.
Q11
True / FalseDatabase mirroring is a deprecated feature in SQL Server.
Database mirroring is deprecated in newer versions of SQL Server, with Always On being the recommended replacement.
Q12
True / FalseIn SQL Server, the FILESTREAM feature allows storage of unstructured data.
FILESTREAM allows SQL Server-based applications to store unstructured data such as documents and images on the file system.
Q13
True / FalseSQL Server's Master Data Services (MDS) provides a central repository for data management.
MDS enables organizations to manage master data and maintain consistent data across the enterprise.
Q14
True / FalseReplication in SQL Server can be used to synchronize data across multiple databases.
Replication is a set of technologies for copying and distributing data and database objects from one database to another.
Q15
True / FalseIn SQL Server, Log Shipping is used for high availability and disaster recovery.
Log Shipping is a high availability and disaster recovery solution that involves automating the backup and restore process of transaction logs.