1.
The full form of DBMS is ____________________ .
Correct Answer
D. Database Management System.
Explanation
The correct answer is "Database Management System". DBMS stands for Database Management System, which is a software application that allows users to interact with a database. It provides tools and functions to create, retrieve, update, and manage data in a structured manner. The other options mentioned in the question are not the correct full forms of DBMS.
2.
MySQL is an open source _______________ system that uses Structured Query Language language.
Correct Answer
relational database management
Explanation
MySQL is a widely used open source system that is used for managing relational databases. It utilizes Structured Query Language (SQL) as its language for interacting with the database. With MySQL, users can create, modify, and access relational databases efficiently. It provides a reliable and efficient way to store and retrieve data using SQL commands, making it a popular choice for many applications and websites.
3.
__________ connection requires all the necessary database related information (Database host name, username, password and hostname) to be specified within the script.
Correct Answer
B. DSN less
Explanation
DSN less connection requires all the necessary database related information to be specified within the script. This means that instead of relying on a Data Source Name (DSN) to establish a connection to the database, the script directly includes the host name, username, password, and other required information. This approach offers more flexibility as it eliminates the need for configuring and managing DSNs, allowing the script to be easily portable across different environments.
4.
In the relational database, a row is as ________
Correct Answer
record or tuple
record
tuple
Explanation
In the relational database, a row is referred to as a record or tuple. This is because a row represents a single instance or occurrence of data in a table. The terms "record" and "tuple" are used interchangeably to describe a row because they both signify a collection of related data fields that are grouped together.
5.
_____________ tool is used to manage the MySQL database.
Correct Answer
PhpMyAdmin
Explanation
PhpMyAdmin is a widely used tool for managing MySQL databases. It is a web-based application that provides a user-friendly interface for performing various tasks such as creating databases, tables, and executing SQL queries. PhpMyAdmin allows users to easily import and export data, manage user privileges, and perform database maintenance tasks. With its intuitive interface and comprehensive features, PhpMyAdmin simplifies the management of MySQL databases for both beginners and experienced users.
6.
_________ should be used in order to connect to the database using script.
Correct Answer
C. Database name, database username, database password and database host name.
Explanation
To connect to a database using a script, the database name, database username, database password, and database host name should be used. These parameters are necessary to establish a connection with the database server and authenticate the user. The database name specifies which database to connect to, the database username and password are used for authentication, and the database host name indicates the location of the database server. All of these parameters are essential for successfully connecting to the database.
7.
Microsoft SQL Server is a relational database management system produced by Microsoft. Its primary query language is __________ .
Correct Answer
Transact-SQL.
Transact SQL.
Explanation
The primary query language used by Microsoft SQL Server is Transact-SQL. Transact-SQL is a procedural language that extends the capabilities of SQL by adding programming constructs such as variables, loops, and conditionals. It is specifically designed for use with SQL Server and allows users to perform complex operations and manipulate data within the database. Both "Transact-SQL" and "Transact SQL" are valid ways to refer to this query language.
8.
Customers can manage MS SQL database online using __________ tool.
Correct Answer
myLittleAdmin
Explanation
myLittleAdmin is a tool that allows customers to manage MS SQL databases online. It provides a user-friendly interface that enables users to perform various tasks such as creating databases, managing tables and views, executing queries, and managing user permissions. With myLittleAdmin, customers can easily and efficiently manage their MS SQL databases without the need for extensive technical knowledge or expertise.
9.
The backup of the MSSQL database is in __________ format.
Correct Answer
.bak
Explanation
The backup of the MSSQL database is in .bak format because .bak is the commonly used file extension for SQL Server database backups. This format allows for easy identification and management of backup files.
10.
ADO stands for _______________
Correct Answer
ActiveX Data Objects
Explanation
ADO stands for ActiveX Data Objects. ActiveX Data Objects is a set of data access components provided by Microsoft that allows developers to access data from a variety of sources in a uniform way. ADO provides a high-level interface for accessing data, making it easier for developers to write database applications. It supports various data formats and provides efficient and flexible data access capabilities. With ADO, developers can connect to databases, retrieve and manipulate data, and perform other database operations using a consistent and standardized approach.