Home
Current Affairs January 2024

What is the correct answer?

4

What is Export Script by default?

A. Workspace_name_size/sql

B. Workspace_number_script/sql

C. Workspace_name_script/sql

D. Workspace_name_script/spl

Correct Answer :

C. Workspace_name_script/sql


Export script is by default Workspace_name_script/sql/.

Related Questions

What is the correct answer?

4

What does the SELECT Statement do?

A. Data is read from the SQL database by this statement and displayed to the database user.

B. The stored data in the SQL database is changed or modified by this SQL statement.

C. By deleting the stored data, this SQL statement deletes the database.

D. A new table in SQL is created using this SQL statement.

What is the correct answer?

4

It is possible to use LIKE clauses with

A. Strings

B. Numbers

C. Both A. and B.

D. None of the above

What is the correct answer?

4

Which syntax is correct for RENAME DATABASE in SQL?

A. RENAME old_database_name TO new_database_name;

B. RENAME DATABASE old_database_name TO new_database_name;

C. ALTER old_database_name MODIFY NAME = new_database_name;

D. ALTER DATABASE old_database_name MODIFY NAME = new_database_name;

What is the correct answer?

4

What is the functionality of UCASE function?

A. To change the case of the string to lowercase characters.

B. To change the case of the string to uppercase characters.

C. To change the case of the string to numeric characters.

D. To change the case of the string to symbolic characters.

What is the correct answer?

4

What does SQL is used to perform operations on?

A. Update Records

B. Insert Records

C. Both A and B

D. None of the above

What is the correct answer?

4

What does the COMMIT Statement do?

A. The data specified in this table or view is reported in this SQL statement.

B. Changes made in the SQL database transaction are permanently saved using this SQL statement.

C. Specify the columns of the table in this SQL statement to return distinct values.

D. By running this SQL statement, the transaction will be undone and the operations not yet saved to the SQL database will be undone.

What is the correct answer?

4

Which of the following are not MySQL Date and Time Data Type?

A. DATE

B. TIME(fsp)

C. YEAR

D. None of the above

What is the correct answer?

4

In order to manage or store the data in the database, WEB SQL Database is used which is a

A. Web site

B. Web page

C. Web browser

D. None of the above

What is the correct answer?

4

Which function returns the correct date and time?

A. DATE()

B. NOW()

C. TIME()

D. DATETIME()

What is the correct answer?

4

Which of the following statement is TRUE for SQL Additional Operator?

A. SELECT operand1-operand2;

B. SELECT operand1*operand2;

C. SELECT operand1+operand2;

D. SELECT operand1>operand2;

What is the correct answer?

4

Which of the following is TRUE about Information Rule in the 12 Codd's Rules?

A. The primary key value, table name, and column name are characteristics that allow us to access the precise data (atomic value) logically from a relational database.

B. Null values are treated in database records according to this rule.

C. Database systems must update all views tables on a regular basis.

D. Databases contain a wide variety of information, and each row and column of each table must hold this information.

What is the correct answer?

4

Which of the following statement is TRUE?

A. At run time, temporary tables can be created.

B. Temporary table can do similar operations to normal table.

C. Both A) and B)

D. None of the above

What is the correct answer?

4

Which of the following statement is false?

A. There is no difference between a lower case and upper case keyword in SQL.

B. It is easier to read SQL queries when the keywords are in lowercase.

C. An SQL statement's syntax is determined by its text line.

D. One or more SQL statements can be placed on a single line of text.

What is the correct answer?

4

Which function is used to obtain the month from the entire data stored in a table's column?

A. DATE

B. TIME

C. MONTH

D. DATE & TIME

What is the correct answer?

4

What does AVG() function returns?

A. First value of the column

B. Last value of the column

C. Sum of rows of the table

D. Average value of the column

What is the correct answer?

4

In order to update one table using another table and join condition, which statement is used.

A. SQL UPDATE INTO

B. SQL UPDATE JOIN

C. SQL JOIN

D. SQL JOIN UPDATE

What is the correct answer?

4

A database does not need to be created in ____. A direct table creation option is provided in ____.

A. MySQL

B. Oracle

C. Both A and B

D. None of the above

What is the correct answer?

4

What is the difference between UNION & UNION ALL operators?

A. Combining the results of two select statements will be done using UNION whereas combined records from both queries are returned by UNION ALL operator.

B. Combining the results of two select statements will be done using UNION ALL whereas combined records from both queries are returned by UNION operator.

C. After performing the UNION operation, duplicate rows will not be removed whereas after performing the UNION ALL operation, duplicate rows will be removed.

D. None of the above

What is the correct answer?

4

Which of the following is the feature(s) of SQL Auto Increment?

A. In some cases you may not have any unique identifying characteristics in data; therefore, it makes sense to create a Primary Key.

B. Explicitly initializing and modifying the auto-increment value is possible at any time.

C. Record identifiers can easily be created that are unique to each record.

D. All of the above

What is the correct answer?

4

SQL indexes speed up the execution time of which statement(s)?

A. SELECT

B. WHERE

C. Both A and B

D. None of the above

What is the correct answer?

4

What is the difference between VARCHAR and VARCHAR2?

A. VARCHAR can store upto 4000 bytes and VARCHAR2 can store upto 8000 bytes.

B. VARCHAR can store upto 2000 bytes and VARCHAR2 can store upto 4000 bytes.

C. Both VARCHAR and VARCHAR2 are similar but use of VARCHAR2 is mostly recommended.

D. There is no similarity between VARCHAR and VARCHAR2.

What is the correct answer?

4

Which of the following statement is TRUE?

A. A DATABASE name can be renamed.

B. A TABLE name can be renamed.

C. Both A and B

D. None of the above

What is the correct answer?

4

The records and structure of a table may be removed or deleted from the database using which command?

A. REMOVE

B. DELETE

C. DROP

D. TRUNCATE

What is the correct answer?

4

Which of the following clause cannot be optional in SQL SELECT Statement?

A. WHERE

B. GROUP BY

C. ORDER BY

D. None of the above

What is the correct answer?

4

What is the work of UPDATE command?

A. A single or multiple rows can be accessed using this command from one or more tables of a database. Using the WHERE clause with this command is also possible.

B. Using this command, you can remove or erase recorded information from a database table.

C. Database data can be updated or changed using this command.

D. It enables you to create new databases, tables, table views, and other objects using this command.

What is the correct answer?

4

What does the DROP DATABASE Statement do?

A. The table, its structure, views, permissions, and triggers will also be deleted or removed with this SQL statement.

B. In the database management system, this SQL statement deletes the existing database, together with all the database tables and views.

C. A new database will be created through this SQL statement.

D. In this SQL statement, the data or records are inserted into an existing database table. One query statement can insert multiple records simultaneously using this statement.

What is the correct answer?

4

____ are the columns for the retrieval purpose.

A. Tables

B. WHERE Conditions

C. Expressions

D. None of the above

What is the correct answer?

4

Which one of the syntaxes given below is of Binary Operator?

A. Operator SQL _Operand

B. Operand2 SQL _Operator Operand1

C. Operand1 SQL _Operator Operand1

D. Operand1 SQL _Operator Operand2

What is the correct answer?

4

A Sub query is an SQL expression that is placed ____ another SQL statement.

A. Before

B. After

C. Inside

D. Outside

What is the correct answer?

4

SQL Indexes slows the execution time of which statement(s)?

A. UPDATE

B. INSERT

C. SELECT

D. Both A and B