Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Tests  >  BEL Trainee Engineer CS Mock Test- 1 - Computer Science Engineering (CSE) MCQ

BEL Trainee Engineer CS Mock Test- 1 - Computer Science Engineering (CSE) MCQ


Test Description

30 Questions MCQ Test - BEL Trainee Engineer CS Mock Test- 1

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

Consider the table R with attributes A, B and C. The functional dependencies that hold on R are : A → B, C → AB. Which of the following statements is/are true?

  1. The decomposition of R into R1(C, A) and R2(A, B) is lossless.
  2. The decomposition of R into R1(A, B) and R2(B, C) is lossy.

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 1

Decomposition of R into R1(C, A) and R2(A, B) is lossless.
Because C → A, A → B, so C → AB can be derived and there is no loss.
Decomposition of R into R1(A, B) and R2(B, C) is lossy.
Because A → B, C → B are derived but we can't derive C → AB, so it is lossy.
So, option (3) is correct.

BEL Trainee Engineer CS Mock Test- 1 - Question 2

Consider the relation schema as follows.

Employee (employee-name, sheet, city)
Works (employee-name, company-name, salary)
Company (Company-name, city)
Manages (Employee-name, manager-name)

Write a SQL query that gives the names of the employee who works in the same city and having salary greater than or equal to 17000 and less than or equal to 35500.

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 2

SELECT employee-name FROM employee, works, company GROUP BY city having salary > = 17000 and 35500 salary ≤ 35500
This SQL statement will select the name of all the employees those who are having salary greater than or equal to 17000 and and less than or equal to 35500 from the relations employee, works and company in the same city.

BEL Trainee Engineer CS Mock Test- 1 - Question 3

If f(x) = tan−1⁡[sin⁡x/(1+cos⁡x)], then what is first term derivative of f(x) ?

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 3

Given,

f(x) = tan−1⁡[sin⁡x/(1+cos⁡x)]

As we know,

For first term derivative, we have to put x = 1.

The first derivative of f(x) = 1/2

BEL Trainee Engineer CS Mock Test- 1 - Question 4

A → BC
C → + B {print ('+'); }C| ∈
B → D * B {print ('*')i}|D
D → (A)|id {print (id.value); }

For an input '5 + 6 * 7', this translation scheme prints

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 4

5 + 6 * 7
= id + id * id
= D + D * D
print 5 6 7 = D + D * B
print 5 6 7 *[∵ B →D * B,C→ ε] = D + B C
print 5 6 7 *+ = B C = A

BEL Trainee Engineer CS Mock Test- 1 - Question 5

Which of the following languages is regular?

1. L= {(bba(ba)na(n−1)∣ n > 0)}

2. L= {(anbn)∣ n < 1000)}

3. L= {(anbk)∣ n is odd or k is even }

4. L= {(wxwr∣ w, x ∈ (0 + 1))}

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 5

Statement 1 is not regular because it requires comparison between the number of ba′s and the number of a′s, i.e. if there are n the number of ba′s so we should have n−1 number of a′s.

Statement 2 is finite, so, it is regular.

In statement 3 let us use pumping lemma. For m ≥ 3,ay value of "aa" or "bb" will always pump the string. So, statement 3 is also regular.

In statement 4, string is regular as it can be expressed with regular expression 0(0 + 1)+0 + 1(0 + 1)+1.

So, the languages which are regular are:

L= {(anbn)∣ n < 1000)}

L= {(anbk)∣ n is odd or k is even }

L= {(wxwr∣ w, x ∈ (0 + 1))}

BEL Trainee Engineer CS Mock Test- 1 - Question 6

Consider the instruction where operand field specifies a value of 200. At memory location 200, a value of 400 is stored. If the PC has value 300, what will be the effective address in indirect and relative addressing respectively?

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 6

In indirect addressing:
Opcode 200

In relative addressing,
effective address = (200 + value of PC) = 200 + 300 = 500

BEL Trainee Engineer CS Mock Test- 1 - Question 7

Let L1 be a recursive language. Let L2 and L3 be the languages that are recursively enumerable but not recursive. Which of the following statements is not necessarily true?

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 7

L1 → recursive

L2,L3 → recursively enumerable but not  recursive.

So L1 can be recursive enumerable.

RE - RE = RE

So L1 → L3 can be recursive enumerable.

BEL Trainee Engineer CS Mock Test- 1 - Question 8

The eigen values of the matrix A =   are

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 8

Sum of eigen values = Sum of diagonal elements (Trace) = 12
Product of eigen values = Value of determinant = 40
Now check by options, only (4) satisfies these conditions.
Hence, eigenvalues are 1, 2, 4 and 5.

BEL Trainee Engineer CS Mock Test- 1 - Question 9

Consider the given statements:

Statement A: All cyclic groups are abelian groups.

Statement B: The order of the cyclic group is the same as the order of its generator.

Which of these are true/false?

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 9

Abelian Group: Let {G=e, a, b} where e is identity. The operation 'o' is defined by the following composition table. Then(G, o) is called Abelian if it follows the following property:

  1. Closure Property
  2. Associativity
  3. Existence of Identity
  4. Existence of Inverse
  5. Commutativity

Cyclic Group: A group a is said to be cyclic if it contains an element 'a' such that every element of G can be represented as some integral power of 'a'. The element 'a' is then called a generator of G, and G is denoted by <a> (or [a]).

Theorem:

(i) All cyclic groups are Abelian, but an Abelian group is not necessarily cyclic.

(ii) The order of a cyclic group is the same as the order of its generator. 

Thus it is clear that A and B both are true.

BEL Trainee Engineer CS Mock Test- 1 - Question 10

The most appropriate matching for the following pairs is:

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 10

 In Indirect  addressing mode the instruction does not have the address of the data to be operated on, but the instruction points where the address is stored(it is indirectly specifying the address of memory location where the data is stored or to be stored)

In Immediate addressing mode, the data is to be used is immediately given in instruction itself; so it deals with constant data.

In Auto decrement addressing mode. Before determining the effective address, the value in the base register is decremented by the size of the data item which is to be accessed.

Within a loop, this addressing mode can be used to step backwards through all the elements of an array or vector.

The correct match is:

X: Indirect addressing → Pointers.

Y: Immediate addressing → Constants.

Z: Auto decrement addressing → Loops.

BEL Trainee Engineer CS Mock Test- 1 - Question 11

A multilevel page table is preferred in comparison to a single-level page table for translating virtual address to physical address because it

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 11

Single level page table is not preferred since it requires the number of page table entries to be equal to the number of virtual memory addresses, but a multi-level page table has smaller number of entries to reduce the size of page table needed.

BEL Trainee Engineer CS Mock Test- 1 - Question 12

For x > 1,(2x)2y = 4e2x − 2y, then (1 + loge⁡2x)2dy/dx is equal to:

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 12

Given,

(2x)2y = 4e2x − 2y

logb⁡(Mp) = plogb⁡(M)

logb⁡(MN) = logb⁡(M) + logb⁡(N)

Taking log both sides, we get

ln⁡ (2x)2y = ln⁡ 4e2x − 2y

⇒ ln⁡ (2x)2y = ln ⁡4+ln ⁡(2x − 2y)

⇒ 2yln ⁡(2x) = ln ⁡22 + (2x−2y)

⇒ 2yln ⁡(2x) = 2ln ⁡2+(2x−2y)… (1) 

⇒ yln⁡ (2x) = ln⁡ 2+(x−y)

⇒ y(1+ln⁡ 2x) = x+ln ⁡2

∴ y = x + ln⁡ 2/1 + ln⁡ (2x)…(2)

As we know,

d/dx(ln⁡x) = 1/x

If f and g are both differentiable, then,

Differentiating equation (1) with respect to x, we get,

Putting equation (2) in equation (3), we get,

BEL Trainee Engineer CS Mock Test- 1 - Question 13

Which of the following statements is/are true with reference to the way of describing XML data?

  1. XML uses DTD to describe the data.
  2. XML uses XSL to describe the data.
  3. XML uses a description node to describe the data.
Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 13

XML uses Document Type Definition (DTD) to describe the data. DTD is a specified document defining and constraining definition and XML uses a description node to describe the data.
Extensible Stylesheet Language (XSL) is used to transform and render the XML document.
Statements (1) and (3) are correct.
So, option (4) is correct.

BEL Trainee Engineer CS Mock Test- 1 - Question 14

 Let G be an undirected complete graph, on n vertices, where n > 2. Then, the number
of different Hamiltonian cycles in G is equal to

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 14

In a complete graph we can traverse the n vertices in any order and return to the starting vertex and form a Hamiltonian cycle. The number of such cycles will be n! However, since circular rotations will have to ignored. Since for example K4 with vertices {1, 2, 3, 4}, the cycle 1-2-3-4 is same as 2-3-4-1 is same as 3-4-1-2 etc. we now get only (n – 1)! distinct Hamiltonian cycles. Further, the cycle 1-2-3-4 and 1-4-3-2 are also same (clockwise and anticlockwise). So ignoring this orientation also we finally get (n-1)!/2 distinct Hamiltonian cycles which is option (d).

BEL Trainee Engineer CS Mock Test- 1 - Question 15

Addition of the hexadecimal numbers (DEF.12)16 and (12EF.C)16 gives:

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 15

(DEF.12)16

(12EF.C)16

Now, for the addition of two given hexadecimal numbers, there are two methods:

In the 1st  method, we first convert the hexadecimal number to decimal then add both numbers. After that, we convert that decimal number to a hexadecimal number. But it is a time-consuming method and also calculations become bulky.

In the 2nd  method, we directly add both hexadecimal numbers as shown below.

Thus, an addition of the hexadecimal numbers (DEF.12)16 and (12EF.C)16 gives (20DE.D2)16.

 Hence, the correct option is (B).

BEL Trainee Engineer CS Mock Test- 1 - Question 16

Direction: A word in capital letters is followed by four words. Choose the word that is most nearly opposite in meaning to the word given in capital letters.

TANGIBLE

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 16

As we can say that ,
Tangible means available physically, concretely, elusive is something that eludes, i.e, is difficult to catch, touch or understand, palpable is a synonym to tangible.
Hence , Elusive is antonym word of Tangible . 

BEL Trainee Engineer CS Mock Test- 1 - Question 17

Find out the Synonym of the following word:

INDICT

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 17
  • Meaning of Indict: Formally accuse of or charge with a crime.
  • Meaning of Condemn: express complete disapproval of; censure.
  • Meaning of Reprimand: a formal expression of disapproval
  • Meaning of Allege: claim or assert that someone has done something illegal or wrong, typically without proof
BEL Trainee Engineer CS Mock Test- 1 - Question 18

Direction: Read the following passage carefully and answer the questions. Your answer to these questions should be based on passage only.
To be able to grow into self confident, fearless and active women, a girl must be nurtured in an atmosphere where she can be valued. However, for the average girl child in India. her prospects of all round healthy development are severely constrained. Born into a socially inhospitable environment, a girl is considered to be an expense - someone who will never contribute to the family income and at the time of her marriage will take large assets as dowry. So deeply entrenched is the ideology of sun preference, that a mother not only hopes and prays for a boy but actually fears the birth of a daughter. In India, girls are socialized from the very beginning to accept the ideology of make supremacy, which makes them a prey to discriminatory practices. This means that not only girl are socially unequipped to question the injustices done them, but in the absence of models of role and conduct, they actually propagate the dominant social and cultural values which are against their interests. Large number of the girl are allowed to die because of malnutrition and disease, which are not properly treated. Children who are working and are on the street are know as children. A street child may be defined as a minor for whom the street has become his or her habitual abode and who is without adequate protection.

Q. How the birth of a girl is celebrated in our society?

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 18

The birth of a girl in our society is not celebrated as the birth of a male child is celebrated. The birth of a girl is supposed to be a burden in the family.

BEL Trainee Engineer CS Mock Test- 1 - Question 19

Direction: Read the following passage carefully and answer the questions. Your answer to these questions should be based on passage only.
To be able to grow into self confident, fearless and active women, a girl must be nurtured in an atmosphere where she can be valued. However, for the average girl child in India. her prospects of all round healthy development are severely constrained. Born into a socially inhospitable environment, a girl is considered to be an expense - someone who will never contribute to the family income and at the time of her marriage will take large assets as dowry. So deeply entrenched is the ideology of sun preference, that a mother not only hopes and prays for a boy but actually fears the birth of a daughter. In India, girls are socialized from the very beginning to accept the ideology of make supremacy, which makes them a prey to discriminatory practices. This means that not only girl are socially unequipped to question the injustices done them, but in the absence of models of role and conduct, they actually propagate the dominant social and cultural values which are against their interests. Large number of the girl are allowed to die because of malnutrition and disease, which are not properly treated. Children who are working and are on the street are know as children. A street child may be defined as a minor for whom the street has become his or her habitual abode and who is without adequate protection.

Q. Girl in our society are victim of ?

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 19

Girls in our society are victim of discrimination. They are always supposed to be inferior to their male counterpart

BEL Trainee Engineer CS Mock Test- 1 - Question 20

Direction: In this question, you need to replace the underline part of the sentence with the most suitable idiom / expression given as option.

They say some cafes have illegal direct satellite links to the internet, to which the authorities often ignore deliberately although knowing it is wrong.

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 20

Turn a blind eye: deliberately overlook, ignore; to ignore something that you know is wrong.
Shadow ban: a method of censoring or controlling content on the internet.
Flash in the pan: someone who made a good early impression but subsequently failed to maintain the same standards.
Leave hanging: keep undecided, uncertain, or in suspense.
Hence, the correct answer is option B. 

BEL Trainee Engineer CS Mock Test- 1 - Question 21

Direction: In this question, you need to replace the underlined part of the sentence with the most suitable idiom / expression given as option.

He kind of just reached the crucial part and said, 'Here are contracts for my next three films’.

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 21

Cut to the chase: to get to the main point; to talk about or deal with the important parts of a subject and not waste time with things that are not important.
Take the stand: to assert an opinion or viewpoint; to defend one's point of view or beliefs.
Spring out: to break out; to escape.
Stand out: persist in opposition or support of something.
Hence, the correct answer is option C. 

BEL Trainee Engineer CS Mock Test- 1 - Question 22

Take this medication twice in a day. It will inhibit the infection's spread in the body. What does “inhibit” mean?

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 22

Inhibit means hinder, restrain, or prevent (an action or process)

This discovery was subsequently used to inhibit the formation of these proteins
The residual dream feelings may either reinforce or inhibit contemplated action

BEL Trainee Engineer CS Mock Test- 1 - Question 23

Direction: Out of four alternatives,choose the one which can be substituted for the given words/sentence.

Anything which is no longer in use

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 23

obsolete : no longer in use

BEL Trainee Engineer CS Mock Test- 1 - Question 24

Directions: In the following question, a sentence is given with some part of it marked in underline. You have to identify the option that would replace the underlined part and make the sentence contextually and grammatically correct. 

The understanding implicit between journalism and society is that it receive certainty freedoms in exchange for responsibility.

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 24

The highlighted part is erroneous. Firstly, singular subject ‘it’ should take singular verb ‘receives’. Also, noun ‘freedoms’ should be qualified by adjective ‘certain’ (sure or definite) and not noun ‘certainty’.
Only B contains all these improvements.
Correct Sentence:
The understanding implicit between journalism and society is that it receives certain freedoms in exchange for responsibility.
Hence, the correct answer is option B. 

BEL Trainee Engineer CS Mock Test- 1 - Question 25

By clicking on ________ folder we can retrieve the earlier email message that we work on but not yet completed or plan to send at a later time.

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 25

The correct answer is Draft.

Key Points

  • A draft is simply an email message you haven't yet sent.
  • The Drafts folder is where you keep email messages that you have not yet completed or plan to send at a later time.
  • It is an email message you close by choosing File → Save or closing the window rather than clicking the Send button.
  • This act places the message into the Drafts folder.
  • Drafts in Gmail contains the emails which are composed but not sent.

No More Fear: Preview your emails as Drafts, then send them with one click

Additional Information

  • Inbox by Gmail scans the user's incoming Gmail messages for information.
    • It gathers email messages related to the same overall topic to an organized bundle with a title describing the bundle's content.
    • The service highlights key details and important information in messages, such as flight itineraries, event information, and photos and documents. 
  • Sent- The message successfully sent to the recipient.
    • Once the message has been sent, most e-mail programs move the message to the "Sent" or "Sent Messages" folder. 
BEL Trainee Engineer CS Mock Test- 1 - Question 26
Which unit of ALU is responsible for logic operations?
Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 26

The correct answer is option 3.

Key Points

  •  The logic unit of ALU is responsible for performing logical operations such as AND, OR, NOT, and XOR.
  • It receives input from the memory unit and sends the output to the register.
  • The arithmetic unit of ALU is responsible for performing arithmetic operations such as addition, subtraction, multiplication, and division.
  • The comparing unit of ALU is responsible for comparing two values and determining if they are equal, greater than, or less than each other.

Additional Information

  •  Comparing unit: The comparing unit is responsible for comparing two values and determining if they are equal, greater than, or less than each other.
  • Arithmetic unit: The arithmetic unit is responsible for performing arithmetic operations such as addition, subtraction, multiplication, and division.
  • Number unit: The number unit is not a component of ALU and is an incorrect option.
BEL Trainee Engineer CS Mock Test- 1 - Question 27

A θ B means A is mother of B, A α B means A is father of B, A β B means A is sister of B. What does L θ Z β T mean?

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 27

Preparing the family tree using the following symbols:


On decoding L θ Z β T means L is the mother of Z and Z is the sister of T.


i) L is mother of T → True
ii) L is father of T → False (as L is mother of T) 
iii) T is father of L → False (as T is either son or daughter of L)
iv) Z is daughter of T → False (as Z is sister of T)
Hence, 'L is mother of T' is the correct answer.

BEL Trainee Engineer CS Mock Test- 1 - Question 28

Directions: Read the given information carefully and answer the questions given beside:

A certain number of people are sitting in a row watching F1 racing. All of them are facing towards the south direction. The distance between any two adjacent persons is the same. 
The number of people sitting between A and C is the same as the number of people sitting between X and C. At most 25 people are sitting in a row. X is an immediate neighbour of D, who sits on one of the ends. Two people are sitting between A and Z. The number of people sitting between D and C is the same as the number of people sitting between C and Y. C sits fourth to the right of Z. The number of people sitting to the right of A is the same as the number of people sitting to the left of Z.

Q. Who among the following sits near A?

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 28

Following the common explanation, we get “Y sits near A”.
Hence, option C is correct.
Final Arrangement:

Common Explanation:
References:
1. Two people are sitting between A and Z.
2. C sits fourth to the right of Z.
3. The number of people sitting to the right of A is the same as the number of people sitting to the left of Z.
4. The number of people sitting between A and C is the same as the number of people sitting between X and C.
5. X is an immediate neighbour of D, who sits on one of the ends.
6. The number of people sitting between D and C is the same as the number of people sitting between C and Y.
7. At most 25 people are sitting in a row.
Inferences:
From reference 1, we get two possible cases.
From reference 7, case2 was eliminated.
Hence, Case 1 is the final arrangement.

BEL Trainee Engineer CS Mock Test- 1 - Question 29

Directions to Solve

In each of the following questions find out the alternative which will replace the question mark.

Question -

25 : 37 :: 49 : ?

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 29

As 25 = (5)2 → (5 + 1)2 + 1 = 37.

As 49 = (7)2 → (7 + 1)2 + 1 = 65.

BEL Trainee Engineer CS Mock Test- 1 - Question 30

Study the figures in given matrix and find out the answer figure which completes the problem figure matrix.

Detailed Solution for BEL Trainee Engineer CS Mock Test- 1 - Question 30

The pattern followed is,

In the first row,

The first figure is surrounded by two circles.

The second figure is surrounded by one circle.

The third figure is not surrounded by any circle.

In the second row,

The first figure is surrounded by one square.

The second figure is not surrounded by any square.

 In the third figure there is no outline.

In the third row,

The first figure is surrounded by two triangles.

The second figure is surrounded by one triangle.

And,

The third figure should not be surrounded by any triangle.

The correct image that fits is,

Hence, option 3 is the correct answer.

View more questions
Information about BEL Trainee Engineer CS Mock Test- 1 Page
In this test you can find the Exam questions for BEL Trainee Engineer CS Mock Test- 1 solved & explained in the simplest way possible. Besides giving Questions and answers for BEL Trainee Engineer CS Mock Test- 1, EduRev gives you an ample number of Online tests for practice
Download as PDF