Correct Answer : 29 October 2009
Explanation : MariaDB is a community-developed, commercially supported fork of the MySQL relational database management system (RDBMS), intended to remain free and open-source software under the GNU General Public License. Development is led by some of the original developers of MySQL, who forked it due to concerns over its acquisition by Oracle Corporation in 29 October 2009.
Correct Answer : Michael "Monty" Widenius
Explanation :
Correct Answer : Relational database
Explanation : MariaDB is a fork of the MySQL relational database management system.
Correct Answer : None of the above
Explanation : All of the above is a feature of MariaDB.
Correct Answer : MariaDB Where Clause and MariaDB Like Clause
Explanation : MariaDB Where Clause and MariaDB Like Clause are the different types of clauses used in MariaDB.
Correct Answer : Redundancy
Explanation : Redundancy : This term refers to storing data twice in order to accelerate the system.
Correct Answer : Referential Integrity
Explanation : Referential Integrity : This term refers to ensuring all foreign key values point to existing rows.
Correct Answer : All of the above
Explanation : All of the above are the types of aggregate functions in MariaDB.
Explanation : All of the above are the types of JOIN in MariaDB.
Correct Answer : False
Explanation : MariaDB offers support for PHP, one of the most popular web development languages.
Correct Answer : 2
Explanation : PHP provides the mysql_select_db function for database selection. The function uses two parameters, one optional, and returns a value of “true” on successful selection, or false on failure.
mysql_select_db
true
Correct Answer : Both A and B
Explanation : DOUBLE (also REAL and DOUBLE PRECISION) : This data type represents normal-size, floating-point numbers of the value 0.
Explanation : MariaDB runs on a number of operating systems and supports a wide variety of programming languages.
Correct Answer : ENUM
Explanation : ENUM : This data type represents a string object having only a single value from a list.
Correct Answer : use database_name
Explanation : USE [database name] : Sets the current default database.
Correct Answer : exit
Explanation : Disconnect from MariaDB through the exit command : mysql> exit
mysql> exit
Correct Answer : SHOW INDEX FROM TABLENAME [table name]
Explanation : SHOW INDEX FROM TABLENAME [table name] : Provides table index information relating to the specified table.
Correct Answer : new_link
Explanation : new_link : This optional parameter specifies that on a second call to mysql_connect() with identical arguments, rather than a new connection, the identifier of the current connection will be returned.
Correct Answer : mysql_connect()
Correct Answer : mysql_close()
Correct Answer : MEDIUMINT
Explanation : MEDIUMINT : This data type represents integers in the signed range of -8388608 to 8388607, and the unsigned range of 0 to 16777215.
Correct Answer : OpenSolaris
Correct Answer : Microsoft Azure
Correct Answer : 2013
Correct Answer : MySQL
Correct Answer : 5
Explanation : This section introduces you to the most commonly used MariaDB aggregate functions including avg(), count(), max(), min(), and sum().
avg(), count(), max(), min(),
sum()