JKSSB Patwari Exam  >  JKSSB Patwari Tests  >  MCQ Test: Database Management System - 2 - JKSSB Patwari MCQ

MCQ Test: Database Management System - 2 - JKSSB Patwari MCQ


Test Description

20 Questions MCQ Test - MCQ Test: Database Management System - 2

MCQ Test: Database Management System - 2 for JKSSB Patwari 2024 is part of JKSSB Patwari preparation. The MCQ Test: Database Management System - 2 questions and answers have been prepared according to the JKSSB Patwari exam syllabus.The MCQ Test: Database Management System - 2 MCQs are made for JKSSB Patwari 2024 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests for MCQ Test: Database Management System - 2 below.
Solutions of MCQ Test: Database Management System - 2 questions in English are available as part of our course for JKSSB Patwari & MCQ Test: Database Management System - 2 solutions in Hindi for JKSSB Patwari course. Download more important topics, notes, lectures and mock test series for JKSSB Patwari Exam by signing up for free. Attempt MCQ Test: Database Management System - 2 | 20 questions in 20 minutes | Mock test for JKSSB Patwari preparation | Free important questions MCQ to study for JKSSB Patwari Exam | Download free PDF with solutions
MCQ Test: Database Management System - 2 - Question 1

Ready the Query carefully:

SELECT emp_name  
FROM department  
WHERE dept_name LIKE ' _____ Computer Science';  

In the above-given Query, which of the following can be placed in the Query's blank portion to select the "dept_name" that also contains Computer Science as its ending string?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 1

In the above-given Query, the "%" (like) operator will be used, which is generally used while searching for a certain pattern in the strings. It represents the single and multiple characters. In this case, it used with "Where "louse to select the "dept_name" that contains the Computer Since as its ending string. To understand it more clearly, consider the following syntax:

Syntax

SELECT column1, column2, ...
FROM table_name
WHERE columnN LIKE pattern;

MCQ Test: Database Management System - 2 - Question 2

Which of the following is generally used for performing tasks like creating the structure of the relations, deleting relation?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 2

The term "DDL" stands for Data Definition Language, used to perform all other essential tasks such as deleting relation and related schemas in defining the structure relation.

1 Crore+ students have signed up on EduRev. Have you? Download the App
MCQ Test: Database Management System - 2 - Question 3

Which one of the following is commonly used to define the overall design of the database?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 3

In order to define the overall design of the database, generally, the schema is used. Therefore the correct answer is C.

MCQ Test: Database Management System - 2 - Question 4

Which one of the following keyword is used to find out the number of values in a column?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 4

The "COUNT" keyword is used to find the total number of values inside a column. So whenever a user wants to find the total values in a column, he can use the keyword "COUNT".

MCQ Test: Database Management System - 2 - Question 5

A computer security protocol for logging-in can be considered as the example of the ______ component of an information system.

Detailed Solution for MCQ Test: Database Management System - 2 - Question 5

A computer security protocol for logging-in can be considered as the procedure component of an information system. Therefore the correct answer is C.

MCQ Test: Database Management System - 2 - Question 6

In the relation model, the relation are generally termed as ________

Detailed Solution for MCQ Test: Database Management System - 2 - Question 6

In the relation model, the relations are also referred to as the tables because the relations are considered as the technical name of the table. So the correct answer is D.

MCQ Test: Database Management System - 2 - Question 7

The term "ODBC" stands for_____

Detailed Solution for MCQ Test: Database Management System - 2 - Question 7

The term "ODBC" refers to the Open Database Connectivity that is a SQL based programming interface introduced by Microsoft.

MCQ Test: Database Management System - 2 - Question 8

What is the relation calculus?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 8

In database management systems, relation calculus is a type of non-procedural query language that describes what data needs to be retrieved. However, it does not explain how to retrieve the data.

MCQ Test: Database Management System - 2 - Question 9

Which of the following refers collection of the information stored in a database at a specific time?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 9

The collection of data (or information) stored in a database at a particular moment is known as the instance of the database. Therefore the correct answer is B.

MCQ Test: Database Management System - 2 - Question 10

Which one of the following refers to the "data about data"?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 10

The Mata Data refers to the type of data that describes the other data or information.

A general file or document is nothing more than a sequence of bytes that contains information like file name, file size, and date & time when the document was created or modified.

To understand it in more details, consider the following example:

For a common music file, the metadata may include the singer's name, the year it was released, and the lyrics, etc.

MCQ Test: Database Management System - 2 - Question 11

Which of the following database models stores data in a tree-like structure?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 11

The hierarchical model organizes data in a tree-like structure, where each record has a single parent but can have multiple children. It represents a one-to-many relationship and was widely used in early database systems.

MCQ Test: Database Management System - 2 - Question 12

Which normal form ensures that every non-key attribute in a table is fully functionally dependent on the primary key?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 12

The third normal form (3NF) ensures that every non-key attribute in a table is fully functionally dependent on the primary key and eliminates transitive dependencies. It is an important step in database normalization.

MCQ Test: Database Management System - 2 - Question 13

Which of the following statements accurately describes a foreign key in a relational database?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 13

A foreign key is a column in a table that establishes a relationship with the primary key of another table. It ensures referential integrity and enforces data consistency and integrity across related tables.

MCQ Test: Database Management System - 2 - Question 14

Which SQL command is used to add new rows to an existing table?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 14

The INSERT command in SQL is used to add new rows or records to an existing table. It allows you to specify the values for each column or insert data from another table.

MCQ Test: Database Management System - 2 - Question 15

Which of the following is an example of a NoSQL database management system?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 15

Cassandra is an example of a NoSQL database management system. It is designed to handle large amounts of data across multiple commodity servers and provides high availability and scalability.

MCQ Test: Database Management System - 2 - Question 16

Which of the following is a join operation in SQL that returns only the matching rows from both tables?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 16

The INNER JOIN operation in SQL combines rows from two tables based on a matching condition and returns only the matching rows. Rows that do not have a match in the other table are excluded from the result.

MCQ Test: Database Management System - 2 - Question 17

Which of the following concurrency control techniques ensures that transactions do not interfere with each other?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 17

Locking is a concurrency control technique used to ensure that transactions do not interfere with each other. It involves acquiring and releasing locks on database objects to enforce mutual exclusion and preserve data integrity.

MCQ Test: Database Management System - 2 - Question 18

Which of the following statements about database indexes is correct?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 18

Database indexes are data structures that improve the performance of data retrieval operations. They allow for faster access to specific data by creating a separate structure that references the indexed data.

MCQ Test: Database Management System - 2 - Question 19

Which of the following database management systems is known for its ability to handle vast amounts of structured and unstructured data?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 19

MongoDB is a NoSQL database management system that is designed to handle large amounts of structured and unstructured data. It provides flexibility and scalability for storing and retrieving data.

MCQ Test: Database Management System - 2 - Question 20

Which type of join returns all rows from both tables, filling in any missing values with NULL?

Detailed Solution for MCQ Test: Database Management System - 2 - Question 20

A full outer join combines the result sets of both the left and right tables and returns all rows from both tables. It fills in any missing values with NULL where there is no match.

Information about MCQ Test: Database Management System - 2 Page
In this test you can find the Exam questions for MCQ Test: Database Management System - 2 solved & explained in the simplest way possible. Besides giving Questions and answers for MCQ Test: Database Management System - 2, EduRev gives you an ample number of Online tests for practice

Top Courses for JKSSB Patwari

Download as PDF

Top Courses for JKSSB Patwari