Computer Science Engineering (CSE) Exam  >  Computer Science Engineering (CSE) Tests  >  AFCAT EKT CSE Mock Test Series 2026  >  AFCAT EKT Computer Science Mock Test - 5 - Computer Science Engineering (CSE) MCQ

AFCAT EKT Computer Science Mock Test - 5 - Computer Science Engineering (CSE) MCQ


Test Description

30 Questions MCQ Test AFCAT EKT CSE Mock Test Series 2026 - AFCAT EKT Computer Science Mock Test - 5

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

To count from 0 to 1024 the number of required flip – flop is

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 1

10 flip flop will count from 0 to 1023. Hence 11 flip flops are required to count from 0 to 1024.

AFCAT EKT Computer Science Mock Test - 5 - Question 2

If (211)x = (152)8, then the value of base x is

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 2

(211)x = (152)8
2x2 + x + 1 = 64 + 40 + 2
x = 7

AFCAT EKT Computer Science Mock Test - 5 - Question 3

BCD equivalent of Gray code number 1001 is

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 3

If G0G1G2G3 is a gray code number then the BCD equivalent number B0B1B2B3 can be estimated using:

B3 = G3

B2 = B3 ⊕ G2

B1 = B2 ⊕ G1

B0 = B1 ⊕ G0

So, using the above rules, the BCD equivalent of gray code number 1001 is 1110

AFCAT EKT Computer Science Mock Test - 5 - Question 4
In data link layer one of the functionality is performed using CRC. What does it  stands for
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 4

CRC stands for cyclic redundancy check it is an error-detecting code commonly used in digital networks and storage devices to detect accidental changes to raw data.

AFCAT EKT Computer Science Mock Test - 5 - Question 5

Assuming all numbers in 2’s complement representation, which of the following numbers is divisible by 11111011

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 5

1) 2's complement number of 11100111 = 0011001 = (-25)10
2) 2's complement numbefr of 11100100 = 0011100 = (-28)10
3)2's complement number of 11010111 = 0101001 = (-41)10
4) 2's complement number of 11011011 = 0100101 = (-37)10
Divider,
2's complement number of 11111011 = 0000101 = (-5)10
Since -25 is divisible by -5, thus the number 11100111 is divisible by 11111011. 

AFCAT EKT Computer Science Mock Test - 5 - Question 6

Which of the following internet services is operate at network layer ?

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 6

Ethernet→data link layer
Internet Protocol→ network layer
Hyper text protocol→application layer

AFCAT EKT Computer Science Mock Test - 5 - Question 7

A half adder includes

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 7

The half adder adds two single binary digits A and B. It has two outputs, sum (S) and carry (C). The carry signal represents an overflow into the next digit of a multi-digit addition. A half adder circuit is basically made up of an a AND gate with XOR gate.
Sum (S) = 
Carry (C) = AB

AFCAT EKT Computer Science Mock Test - 5 - Question 8

A source generates three symbols with probability 0.25, 0.25, 0.50 at a rate of 3000 symbols per second. Assuming independent generation of symbols, the most efficient source encoder would have average bit rate of

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 8

Given three symbols with probability of 0.25, 0.25 and 0.50 at the rate of 3000 symbols per second.
Entropy 


= 1.5
Rate of information = r.H
= 1.5× 3000
= 4500 bits/sec

AFCAT EKT Computer Science Mock Test - 5 - Question 9
Binary 1000 when multiplied by binary 1111 results in binary
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 9

In binary multiplication, we only need to remember the following rules:

0 x 0 = 0

0 x 1 = 0

1 x 0 = 0

1 x 1 = 1

So, by using above rules when we will multiply binary 1000 with binary 1111 we will get binary 11110000 as the product.

AFCAT EKT Computer Science Mock Test - 5 - Question 10

The inverse of the matrix  is

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 10

The determinant if matrix A is given as

AFCAT EKT Computer Science Mock Test - 5 - Question 11
When P-type substance is connected with negative and n-type is connected with positive terminal of the battery then P-n junction diode is in
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 11

When a positive voltage is applied to the N-type material and a negative voltage is applied to the P-type material, then a diode is connected in a reverse bias condition. In reserve bias the holes and electrons are attracted to the battery terminal and depletion region increased.

AFCAT EKT Computer Science Mock Test - 5 - Question 12
If f(x) = x + |x2 - 8| then the derivative of f(x) at x = 3 is
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 12

For x = 3, (x2 – 8) > 0 so |x2 - 8| = x2 – 8

f(x) = x + (x2 – 8)

f’(x) = 1 + 2x

f’(3) = 1 + 2(3) = 7

AFCAT EKT Computer Science Mock Test - 5 - Question 13
Foreign key related to which of the following DBMS constraint?
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 13

Referential Integrity Constraint.

When a foreign key value is used it must reference a valid, existing primary key in the parent table. For instance, deleting a record that contains a value referred to by a foreign key in another table would break referential integrity.

AFCAT EKT Computer Science Mock Test - 5 - Question 14

The angle between two vectors a = i + 2j – k and b = 2i + j + k is

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 14

Angle between two vectors:

θ = 60°

AFCAT EKT Computer Science Mock Test - 5 - Question 15
Which of the following statements is true ?
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 15

The initial phase of database design is to characterize fully the data needs of the prospective database user.The outcome of this phase is a specification of user requirements. Next, the designer chooses a data model and by applying the concepts of the chosen data model, translates these requirements into a conceptual schema of the database. The E-R model, is typically used to represent the conceptual design.

AFCAT EKT Computer Science Mock Test - 5 - Question 16
Participation between relationship set and weak entity set (if exist):
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 16

Every weak key of weak entity set must participate therefore total participation.

AFCAT EKT Computer Science Mock Test - 5 - Question 17

Match the following :

AFCAT EKT Computer Science Mock Test - 5 - Question 18

The rank of the matrix  is

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 18

Doing row operation on the given matrix, we get


Since the number of non-zero rows is one,
∴ ρ(A) = 1

AFCAT EKT Computer Science Mock Test - 5 - Question 19

Consider the following program

#include<stdio.h>

int main()

{

float a ;

int x = 6, y = 5;

a = x/y;

printf(“Value of a = %f\n”, a);

return 0;

}

The value printed for a is

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 19

1.000000 is printed but not 1.2 because 6 & 5 are both integers 6/5 yields integer 1. This 1, when stored in ‘a’ whose data type is a float, is converted into 1.000000.

AFCAT EKT Computer Science Mock Test - 5 - Question 20

For a binary search tree, which of the following holds?

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 20

In a binary search tree, key in the left child is smaller than key of the parent which in turn smaller than the key in the right child. Hence inorder traversal of any binary search tre is is always sorted.

AFCAT EKT Computer Science Mock Test - 5 - Question 21
Arrays are:
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 21

Passed by reference unless inside a structure, in that case when we a structure instance, array is automatically get passed.

AFCAT EKT Computer Science Mock Test - 5 - Question 22

Consider the following code segment

main ( )

{

int a = 5;

f (a, a);

print a;

}

f (int x, int y)

{

x --;

y = y + 15;

}

What will be printed if call by copy restore mechanism is used for passing parameters?
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 22

Here first value of ‘a’ i.e. 5 is copied to x & y; because of’x—‘,x will become 4 and y after performing y = y + 15 will become 20. Now both these two values i.e. 4 and 20 are copied back to ‘a’ but the order is not deterministic so if first 4 is copied back to ‘a’ and then 20, then final value of ‘a’ will be 20, else if 4 is copied later then final value of ‘a’ will be 4 so it is non deterministic and value of ‘a’ can be either 4 or 20.

AFCAT EKT Computer Science Mock Test - 5 - Question 23
Which of the following may be an example of pre-emptive CPU scheduling?
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 23

CPU-scheduling decisions may take place under the following four circumstances:

1. When a process switches from the running state to the waiting state.

2. When a process switches from the running state to the ready state.

3. When a process switches from the waiting state to the ready state.

4. When a process terminates. If no process is ready, a system-supplied idle process is normally run.

  • For situations 1 and 4, there is no choice in terms of scheduling. A new process (if one exists in the ready queue) must be selected for execution.
  • There is a choice, however, for situations 2 and 3. When scheduling takes place only under circumstances 1 and 4, we say that the scheduling scheme is nonpreemptive or cooperative; otherwise, it is pre-emptive.

AFCAT EKT Computer Science Mock Test - 5 - Question 24

The following C declaration 

struct node {

int i ;

float j ;

} ;

struct node * S[10] ;

Define S to be

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 24

As it as an array of pointers to struct type.

AFCAT EKT Computer Science Mock Test - 5 - Question 25

What would the following function return for the input x = 95 ?
int fun(int x)
{
if (x > 100)
return x – 10 ;
else
return fun (fun(x + 11))
}

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 25

AFCAT EKT Computer Science Mock Test - 5 - Question 26
Which of the following statements is TRUE about CSMA/CD
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 26

Efficiency of CSMA/CD =1/(1+6.44(Tp/Tt))

Tp=propagation time

Tp=transmission time

Hence if propagation time increases efficiency will rapidly decrease.

AFCAT EKT Computer Science Mock Test - 5 - Question 27
In the TCP/IP protocol suite, which one of the following is NOT part of the IP header?
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 27

Fragment offset, source IP address, and destination IP address are part of the IP header but destination port number which is part of TCP header, so correct answer (D)

AFCAT EKT Computer Science Mock Test - 5 - Question 28
In TCP, a unique sequence number is assigned to each
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 28

In TCP sequence Number is assigned to each byte.

AFCAT EKT Computer Science Mock Test - 5 - Question 29

Consider the following statements.

I. TCP connections are full duplex

II. TCP has no option for selective acknowledgement

III. TCP connections are message streams
Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 29

(I) TCP connections are full duplex.

(II) TCP has option for selective acknowledgement.

(III) TCP connections are byte streams.

Hence of (A) is correct.

AFCAT EKT Computer Science Mock Test - 5 - Question 30

If a body gives out 109 electrons every second, how much time is required to get a total charge of 1C from it?

Detailed Solution for AFCAT EKT Computer Science Mock Test - 5 - Question 30

Here n = 109 electrons/sec; Total charge, Q = 1 C
Charge given/sec, q = ne = 109 × 1.6 × 10-19 = 1.6 × 10-10 C
If t second is the time required, then,

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