CUET Humanities Exam  >  CUET Humanities Tests  >  Computer Science: CUET Mock Test - 1 - CUET Humanities MCQ

Computer Science: CUET Mock Test - 1 - CUET Humanities MCQ


Test Description

30 Questions MCQ Test - Computer Science: CUET Mock Test - 1

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

Given below are two statements, one labelled as Assertion (A) and the other labelled as Reason (R):
Assertion (A): Database Management System (DBMS) provides a variety of software tools for organising data.
Reason (R): Normalisation is the process for removing data redundancy.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 1

Assertion is correct because Database Management System (DBMS) provides a variety of software tools for organising, processing and querying data in a flexible manner. MS Access, Oracle, SQL Server, and IBM-DB2 are examples of DBMS software.
Reason is correct because normalisation is the process for removing data redundancy. It breaks up the information into separate but related tables.
Therefore, assertion and reason both are correct, but reason is not the correct explanation of assertion.

Computer Science: CUET Mock Test - 1 - Question 2

When will the bad_alloc exception be thrown by a program?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 2

When we are allocating the memory using new operator and allocation fail, then bad_alloc exception is thrown by the program.

1 Crore+ students have signed up on EduRev. Have you? Download the App
Computer Science: CUET Mock Test - 1 - Question 3

A file management system can typically access records from:

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 3

A file management system can typically access records from only one file at a time.

Computer Science: CUET Mock Test - 1 - Question 4

Two statements are given below, one is Assertion A and the other is Reason R.
Assertion A: Data is any form of information that can be processed by a computer.
Reason R: Data can be in the form of text, numbers, images, audio, and video.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 4

Both the Assertion and Reason are true, and the Reason is the correct explanation of the Assertion. Data is any form of information that can be processed by a computer, including text, numbers, images, audio, and video.

Computer Science: CUET Mock Test - 1 - Question 5

___ is an example for RDBMS.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 5

Top 10 most popular RDBMSs are:

  • Oracle
  • MySQL
  • SQL Server
  • PostgreSQL
  • IBM DB2
  • Microsoft Access
  • SQLite
  • MariaDB
  • Informix
  • Azure SQL

So, all the above is correct.

Computer Science: CUET Mock Test - 1 - Question 6

Which constraint does not allow NULL values?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 6

The PRIMARY KEY constraint uniquely identifies each record in a table. Primary keys must contain UNIQUE values, and cannot contain NULL values.

Computer Science: CUET Mock Test - 1 - Question 7

Directions: Match the contents under List I with those under List II.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 7

'Try' is used to define the code block where an exception might occur. 'Raise' is used to trigger a specific exception intentionally. 'Finally' defines the code block that will execute regardless of whether an exception occurs. 'Except' is used to handle the raised exception.

Computer Science: CUET Mock Test - 1 - Question 8

By using computer networks, we can

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 8

We can do all the above using computer networks.

Computer Science: CUET Mock Test - 1 - Question 9

Two statements are given below:
Statement I: The 'x' file access mode allows you to create a new file but will raise an error if the file already exists.
Statement II: The 'a' file access mode allows you to write to the file but not overwrite any existing content.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 9

The 'x' file access mode is used to open a file for exclusive creation. This mode allows you to create a new file but will raise an error if the file already exists. This mode is useful when you want to create a new file and ensure that it does not already exist. The 'a' file access mode is used to open a file for appending data to the end of the file. This mode allows you to write to the file but not overwrite any existing content. If the file does not exist, it will be created.

Computer Science: CUET Mock Test - 1 - Question 10

Testing stack for overflow is performed by comparing the values of the top with value ______.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 10

When stack is completely full (i.e. TOP= MaxSize -1) and we try to insert more elements onto stack then this condition is called overflow condition and no further element could be inserted now until any element is deleted.

Computer Science: CUET Mock Test - 1 - Question 11

What is the similarity between the operations on stacks and those on queues, although they are entirely different?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 11

Both the stack and queue are the linear data structure, which means that the elements are stored sequentially and accessed in a single run.

Computer Science: CUET Mock Test - 1 - Question 12

Which of the following is not a limitation of the binary search algorithm?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 12

The major limitation of binary search is that there is a need for the sorted array to perform the binary search operation. If the array is not sorted the output is either not correct or maybe after a long number of steps and according to the data structure, the output should come in a minimum number of steps.
Not a limitation of Binary search :Binary search algorithm is not efficient when the data elements are more than 1000.

Computer Science: CUET Mock Test - 1 - Question 13

Two statements are given below, one is Assertion A and the other is Reason R.
Assertion A: Data visualization is the process of creating visual representations of data to communicate information effectively.
Reason R: Data visualization helps to uncover patterns, trends, and insights in data that might not be apparent in raw data.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 13

Both the Assertion and Reason are true, and the Reason is the correct explanation of the Assertion. Data visualization is the process of creating visual representations of data to communicate information effectively. It helps to uncover patterns, trends, and insights in data that might not be apparent in raw data, making it easier for decision-makers to understand and act on the data.

Computer Science: CUET Mock Test - 1 - Question 14

The set of 'Processed data' is called?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 14

Data processing refers to the process of performing specific operations on a set of data or a database.
Process data is called information.

Computer Science: CUET Mock Test - 1 - Question 15

Directions: Match the contents under List I with those under List II.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 15
  • (A+B)*(C+D) = (AB+)*(CD+) = AB+CD+*
  • (A*B)+(C*D) = (AB*)+(CD*) = AB*CD*+
  • (A+B)+(C*D) = (AB+)+(CD*) = AB+CD*+
  • (A*B)+(C+D) = (AB*) + (CD+) = AB*CD+*
Computer Science: CUET Mock Test - 1 - Question 16

Two statements are given below, one is Assertion A and the other is Reason R.
Assertion A: A LAN (Local Area Network) is a computer network that connects devices within a small geographic area such as a city.
Reason R: LANs typically use wired or wireless connections to enable devices to communicate with each other and share resources such as printers and files.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 16

The Assertion is not correct and Reason are correct. A LAN (Local Area Network) is a computer network that connects devices within a small geographic area such as a building or a campus not city. LANs typically use wired or wireless connections to enable devices to communicate with each other and share resources such as printers and files.

Computer Science: CUET Mock Test - 1 - Question 17

Which of the following is correct about NOT NULL constraint?
A. NOT NULL constraint demands a column not to accept NULL values.
B. NOT NULL constraint demands a field to always contains some value.
C. One cannot insert a new record with a NULL value, when NOT NULL constraint is specified.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 17

All A, B and C are correct. Option 4 is the correct answer.

Computer Science: CUET Mock Test - 1 - Question 18

What is RDBMS?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 18

The software used to store, manage, query, and retrieve data stored in a relational database is called a relational database management system (RDBMS).

Computer Science: CUET Mock Test - 1 - Question 19

Computer networks cannot exchange

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 19

Data communication is a process of exchanging data or information. In case of computer networks, this exchange is done between two devices over a transmission medium. It cannot exchange person.

Computer Science: CUET Mock Test - 1 - Question 20

Which of the following statements is false about the adware exploit in hacking?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 20

Adware is unwanted software designed to throw advertisements up on the user's screen.
Adware generates revenue for its developer by automatically displaying online advertisements in the user interface of the software or on a screen that pops up in the user's face during the installation process.
It is not self-replicating.

Computer Science: CUET Mock Test - 1 - Question 21

Match the following:

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 21

The correct matching pairs are

Computer Science: CUET Mock Test - 1 - Question 22

Two statements are given below:
Statement I: Stack follow Last In First Out (LIFO)
Statement II: Delete is possible from Bottom as well as Top.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 22

Statement I is correct because it follows the LIFO(Last in First Out). It means you can delete that element which comes first. Statement II is incorrect because elements can be deleted only from the top in Stack data structure.

Computer Science: CUET Mock Test - 1 - Question 23

Which of the following is not a keyword in SQL?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 23

ADD is not a keyword in SQL.

Computer Science: CUET Mock Test - 1 - Question 24

Which of the following operations in relation algebra requires two relations having the same number of attributes?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 24

The union operator requires that both relations are union-compatible. This means that they are required to have the same set of attributes.

Computer Science: CUET Mock Test - 1 - Question 25

Where is metadata stored in MySQL?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 25

Metadata is the data about the data. Anything that describes the database—as opposed to being the contents of the database—is metadata. Metadata stored in the MySQL in the MySQL database mysql.

Computer Science: CUET Mock Test - 1 - Question 26

Which of the following functions is not performed by DDL?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 26

A DDL performs the following functions :

  1. It identifies the type of data division such as data item, segment, record and database file.
  2. It gives a unique name to each data item type, record type, file type and data base.
  3. It specifies the proper data type.
  4. It defines the size of the data item.
  5. It may define the range of values that a data item may use.
  6. It may specify privacy locks for preventing unauthorized data entry.
Computer Science: CUET Mock Test - 1 - Question 27

Two statements are given below:
Statement I: Prefix notation for the (a+b)*(c-d) is +*ab-cd.
Statement II: Postfix notation for the (a+b)*(c-d) is ab+cd-*.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 27

Correct Prefix notation for the (a+b)*(c-d) is *+ab-cd(a+b)*(c+d) = (+ab)*(-cd) = *+ab-cd (Statement I is Incorrect). Postfix notation for the (a+b)*(c-d) is *+ab-cd(a+b)*(c-d) = (ab+)*(cd-) = ab+cd -* (Statement II is Correct).

Computer Science: CUET Mock Test - 1 - Question 28

The 'is empty ( )' function can be also be written by using

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 28

The 'is empty ( )' function can be also be written by using '? :'.

Computer Science: CUET Mock Test - 1 - Question 29

Where are stack and stack pointers located?

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 29

A stack pointer is a small register that stores the address of the last program request in a stack. A stack is a specialized buffer which stores data from the top down. Both stack and stack pointers reside in the memory.

Computer Science: CUET Mock Test - 1 - Question 30

A cookie stores ______.

Detailed Solution for Computer Science: CUET Mock Test - 1 - Question 30

A cookie stores information about the user's web activity.
They are small files often including unique identifiers that web servers send to browsers. They can be sent back to the server each time your browser requests a new page. It helps browsers remember your preferences and habits online.

View more questions
Information about Computer Science: CUET Mock Test - 1 Page
In this test you can find the Exam questions for Computer Science: CUET Mock Test - 1 solved & explained in the simplest way possible. Besides giving Questions and answers for Computer Science: CUET Mock Test - 1 , EduRev gives you an ample number of Online tests for practice

Top Courses for CUET Humanities

Download as PDF

Top Courses for CUET Humanities