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

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


Test Description

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

AFCAT EKT Computer Science Mock Test - 3 for Computer Science Engineering (CSE) 2025 is part of AFCAT EKT CSE Mock Test Series 2026 preparation. The AFCAT EKT Computer Science Mock Test - 3 questions and answers have been prepared according to the Computer Science Engineering (CSE) exam syllabus.The AFCAT EKT Computer Science Mock Test - 3 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 - 3 below.
Solutions of AFCAT EKT Computer Science Mock Test - 3 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 - 3 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 - 3 | 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 - 3 - Question 1

Wavelength and frequency are related as: (c = speed of light)

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

It is usually written as wavelength = c / frequency.

AFCAT EKT Computer Science Mock Test - 3 - Question 2

A Hamiltonian path in a directed or undirected graph is a path that visits

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

A Hamiltonian path in a graph is a path that visits every vertex exactly once.

AFCAT EKT Computer Science Mock Test - 3 - Question 3

Consider the following circuit:

The above circuit behaves as

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

J-K flip-flop will act as D flip-flop if we have inverter between J and K inputs.

AFCAT EKT Computer Science Mock Test - 3 - Question 4
Which of the following is/are TRUE ?
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 4

Range queries are faster in B+ trees.

B-trees are used instead of B+ tree when direct access is required without         sequential access.

AFCAT EKT Computer Science Mock Test - 3 - Question 5

1⊕1 would give:

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

⊕ represents exclusive or in which output is high when either of inputs is high but not both inputs are high.

Truth table of A⊕B
So, 1⊕1 = 0
(A = 1; B = 1)

AFCAT EKT Computer Science Mock Test - 3 - Question 6

The function f(x) = |x| is

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

By definition of the absolute value function:

If x >= 0, then |x| = x.
If x < 0, then |x| = -x.

Left-hand limit (L):
As x approaches 0 from the left, |x| = -x, so L = 0.

Right-hand limit (R):
As x approaches 0 from the right, |x| = x, so R = 0.

Since L = R = f(0) = 0, the function f(x) = |x| is continuous at x = 0.

Using the definition of differentiation:
f'(x) = limit as h approaches 0 of [(f(h) - f(0)) / h].

Left-hand derivative (L'):
As h approaches 0 from the left, f'(x) = (-h - 0) / h = -1.

Right-hand derivative (R'):
As h approaches 0 from the right, f'(x) = (h - 0) / h = 1.

Since L' is not equal to R', the derivative does not exist, and f(x) = |x| is not differentiable at x = 0.

AFCAT EKT Computer Science Mock Test - 3 - Question 7

Statement: “Age can only be a positive integer”.

             Above statement corresponds to which of the following DBMS constraints?

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

It is domain constraint because a condition will be applied on the definition of domain in table schema.

AFCAT EKT Computer Science Mock Test - 3 - Question 8
In E-R model, Y is the dominant entity and X is the subordinate entity.
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 8

Y is dominant entity and X is subordinate entity that means existence of X depends on existence of Y. In other words, deletion of Y will cause deletion of X.

AFCAT EKT Computer Science Mock Test - 3 - Question 9

What should be the velocity of a sound source moving towards a stationary observer so that apparent frequency is double the actual frequency (Velocity of sound is v)

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

By using n' = (ν / (ν - νs)) ⇒ 2n = n(ν / (ν - νs)) ⇒ νs = ν / 2

AFCAT EKT Computer Science Mock Test - 3 - Question 10

The correct transformation are –

(i)

(ii)

(iii)

(iv)

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

AFCAT EKT Computer Science Mock Test - 3 - Question 11

Match the columns.

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

In class B, 172.16.0.0 to 172.32.0.0 are reserved as private IP address.

AFCAT EKT Computer Science Mock Test - 3 - Question 12

The octal value of hexadecimal number AB123 is

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

A: 1010
B: 1011
1: 0001
2: 0010
3: 0011

Values:
010 → 2
101 → 5
011 → 3
000 → 0
100 → 4
100 → 4
011 → 3

AFCAT EKT Computer Science Mock Test - 3 - Question 13
A page fault
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 13

A page fault is a type of interrupt, called trap, raised by computer hardware when a running program accesses a memory page that is mapped into the virtual address space, but not actually loaded into main memory. The hardware that detects a page fault is the processor's memory management unit (MMU), while the exception handling software that handles page faults is generally a part of the operating system kernel. When handling a page fault, the operating system generally tries to make the required page accessible at the location in physical memory, or terminates the program in case of an illegal memory access.

AFCAT EKT Computer Science Mock Test - 3 - Question 14

What is the 2’s and 1’s complement of -7 respectively?

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

Step 1: write 7 in binary i.e 0111

For 1’s complement:

Reverse all the bits i.e 0 to 1 and 1 to 0.

For 2’s complement:

Starting from unit’s digit, whenever the 1st ‘1’ is encountered write it as it is and then take reverse of the remaining bits. So, 0111 = 1001

AFCAT EKT Computer Science Mock Test - 3 - Question 15

If 4,3,2 are the Eigen values of A. Then find the Eigen values of Adj(A) if det A = 24

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

If λ, λ, λ are the Eigenvalues of A, then the Eigenvalues of Adj(A) are:
|A| / λ, |A| / λ, |A| / λ
= 24/4, 24/3, 24/2
= 6, 8, 12

AFCAT EKT Computer Science Mock Test - 3 - Question 16
A list of a finite number of homogeneous data elements is known as?
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 16

A array is an ordered list of a finite number of homogenous data elements stored in a continuous memory location. It is called ordered because the elements of the array are arranged so that there is a first, second, third and so on.

Homogenous because it contains single type of data.

AFCAT EKT Computer Science Mock Test - 3 - Question 17

The Doppler's effect is applicable for

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

Doppler’s effect is applicable to both light and sound waves. According to Doppler’s effect, whenever there is a relative motion between a source of sound and listener, the apparent frequency of sound heard by the listener is different from the actual frequency of sound emitted by the source.
Apparent frequency,
v = ((ν + u₀) / (ν - uₛ)) v₀

AFCAT EKT Computer Science Mock Test - 3 - Question 18
CD-ROMs are ________.
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 18

Examples of optical storage are :

CD-ROM, DVD-ROM, CD-R, CD-RW, photo CD.

AFCAT EKT Computer Science Mock Test - 3 - Question 19
Which of the following has same representation for +0 and -0 ?
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 19

Signed Magnitude: +0 = 0000 and -0 = 1000

One’s Complement: +0 = 0000 and -0 = 1111

Two’s Complement: +0 = 0000 and -0 = 0000

AFCAT EKT Computer Science Mock Test - 3 - Question 20
HTTP port number
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 20

Well known ports are those from O through 1023. 80 is the well known port for http used in the world wide web.

AFCAT EKT Computer Science Mock Test - 3 - Question 21

Faraday’s law says that

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

It states that the magnitude of emf induced in the coil is equal to the rate of change of flux that linkages with the coil. The flux linkage of the coil is the product of number of turns in the coil and flux associated with the coil.
Magnetic flux: ϕB = B A cosθ where θ is angle between B and the normal to the plane.
Induced EMF: E = dϕ / dt

AFCAT EKT Computer Science Mock Test - 3 - Question 22
In an iso-thermal process, the internal energy of gas molecules ________.
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 22

Isothermal process {u = f(T) only}

As temperature is constant in isothermal process so the internal energy also remains constant.

That’s why in an isothermal process the heat transfer is equal to the work transfer.

AFCAT EKT Computer Science Mock Test - 3 - Question 23

What is the output of the following program ?

#include <stdio.h>

main()

{

   int a , b;

   a = 10;

   printf(“%d”,(a == 1) ? 20: 30 );

   printf(“%d”,(a == 10) ? 20: 30 );

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

Syntax

expression-1 ? expression-2 : expression-3

In the above symbol expression-1 is condition and expression-2 and expression-3 will be either value or variable or statement or any mathematical expression. If condition will be true expression-2 will be execute otherwise expression-3 will be executed.

AFCAT EKT Computer Science Mock Test - 3 - Question 24

If x = √-1, then the value of xx is

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

x = i then x = cos(π/2) + i sin(π/2) = e(iπ/2)

∴ xx = ii = (e(iπ/2))i = e(-π/2)

AFCAT EKT Computer Science Mock Test - 3 - Question 25
A nibble is
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 25

In computing, a nibble is a four - bit aggregation or half an octet. It is also known as half - byte. In a networking or telecommunication context, the nibble is often called a semi - octet,[6] quadbit.

AFCAT EKT Computer Science Mock Test - 3 - Question 26

In Wheatstone's bridge P = 9 ohm, Q = 11 ohm, R = 4 ohm and S = 6 ohm. How much resistance must be put in parallel to the resistance S to balance the bridge

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

For balancing the bridge:

P/Q = R/S'
S' = R × Q/P = 4 × 11/9 = 44/9

1/S' = 1/r + 1/6
1/r = 9/44
r = 132/5 = 26.4 Ω

AFCAT EKT Computer Science Mock Test - 3 - Question 27

The Gray code for number 7 is:

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

In Gray code representation of binary code, consecutive numbers differs by exactly 1 bit.To get gray code from decimal number keep the MSB same ,to get consecutive numbers XOR it with higher significant bit

0        1               1              1

0 (0 XOR 1) (1 XOR 1) (1 XOR 1)

0        1                0              0

AFCAT EKT Computer Science Mock Test - 3 - Question 28
A bridge has access to the _____ address of a station on the same network.
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 28

Bridge operates on data link layer of OSI model, that is in order to determine how to transmit traffic between LANs they use a destination MAC address unlike routers which use ip address(network address) in order to transmit packets.

AFCAT EKT Computer Science Mock Test - 3 - Question 29
DBMS is a general purpose software system that facilitates the process of
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 29

DBMS facilitates the processes of defining, constructing, manipulating and sharing databases among various users and applications.

Defining a database

Specify data types, structures and constraints
Stored in the form of a database catalog

Meta-data: information stored inside a catalog

Constructing a database:Storing data on a storage medium

Manipulating a database:Querying a database to retrieve specific data

Update database to reflect
mini-world changes

Sharing a database:Multiple users and programs access
concurrently, Application programs access the database, send queries

Transaction :An atomic unit of queries and updates that must be executed as a whole

AFCAT EKT Computer Science Mock Test - 3 - Question 30
IEEE 802.5 topology is called
Detailed Solution for AFCAT EKT Computer Science Mock Test - 3 - Question 30

In IEEE 802.5, the token passing scheme is used in place of CSMA/CD on a ring topology LAN.

Token Ring local area network (LAN) technology is a communications protocol for local area networks. It uses a special three-byte frame called a "token" that travels around a logical "ring" of workstations or servers. This token passing is a channel access method providing fair access for all stations, and eliminating the collisions of contention-based access methods.

Introduced by IBM in 1984, it was then standardized with protocol IEEE 802.5 and was fairly successful, particularly in corporate environments, but gradually eclipsed by the later versions of Ethernet.

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