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

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


Test Description

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

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

Which scheduling policy is most suitable for a time-shared operating systems?

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

In order to schedule processes fairly, a round-robin scheduler generally employs time-sharing, giving each job a time slot or quantum (its allowance of CPU time), and interrupting the job if it is not completed by then. It is designed especially for time-sharing systems.

AFCAT EKT Computer Science Mock Test - 1 - Question 2

Which of the following circuits come under the class of combinational logic circuits?

1. Full adder

2. Full subtractor

3. Half adder

4. J – K flop – flop

5. Counter

Select the correct answer from the codes given below – 

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

Full adder, full subtractor and half adder are combinational circuits.

JK flip flop and counter are sequential circuits.

AFCAT EKT Computer Science Mock Test - 1 - Question 3

What happens on compiling the code below?

#include<stdio.h>

int main()

{

unsigned short int i=0;

while(i>=0)

{

printf("%d",i++);

}

}

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

Range of unsigned int is 0 to 65535 after this, its value becomes 0 again and this loop never ends.

AFCAT EKT Computer Science Mock Test - 1 - Question 4

Which of the following statements is true in context of Banker’s algorithm?

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

Banker’s algorithm is a Deadlock avoidance algorithm, it doesn’t detect or prevent deadlock, it acquires prior knowledge of all the currently executing processes, so that it can help to avoid deadlock.

AFCAT EKT Computer Science Mock Test - 1 - Question 5
In which type of the switchings given below, entire capacity of a dedicated link is used?
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 5

In circuit switching entire channel capacity is used for single communication.

Two types of switched services are used in Wide Area Network:

(1). Circuit Switching: In circuit switching, a dedicated channel, called circuit, is set up between two stations for the duration of the transmission.The circuit must be established to make a complete end-to-end  connection before any data transmission.The whole bandwidth is dedicated to to this connection even if no data is being transferred.

(2). Packet Switching: In packet switching there is no dedicated circuit between any two end nodes, links can be dynamically shared among several communications over time. To provide the link sharing, user data must be segmented into discrete, variable length units called packets.

AFCAT EKT Computer Science Mock Test - 1 - Question 6
Tesla is a measure of
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 6

Tesla (T) is a measure of magnetic flux density.

Electrical potential measures in volts (V).

Magnetic potential measures in Amperes (A).

AFCAT EKT Computer Science Mock Test - 1 - Question 7
A J-K Flip Flop made to toggles when
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 7

When J=1 and K=1 then the race condition is occurs that means both output wants to be HIGH, it is called toggling.

AFCAT EKT Computer Science Mock Test - 1 - Question 8
A full adder can be realized by using –
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 8

A full adder can be realized by using two half adders and one OR gate.

AFCAT EKT Computer Science Mock Test - 1 - Question 9
A socket address is the combination of:
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 9

A socket address is the combination of an IP address and a port number.

A network socket is an endpoint of a connection across a computer network.

AFCAT EKT Computer Science Mock Test - 1 - Question 10
One Coulomb passing a point in one second is one ______.
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 10

The current at a point in the circuit is the amount of charge that passes that point in one second. A current of 1 A is flowing in a circuit if a charge of 1 coulomb passes any point in the circuit every second.

AFCAT EKT Computer Science Mock Test - 1 - Question 11

Long term scheduler is responsible for:

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

Long term scheduler is also called job scheduler. Long term scheduler determines which programs are admitted to the system for processing. Job scheduler selects processes from the process queue and loads them into memory for execution (new to ready state). The primary objective of the job scheduler is to provide a balanced mix of jobs, such as I/O bound and processor bound. It also controls the degree of multiprogramming. If the degree of multiprogramming is stable, then the average rate of process creation must be equal to the average departure rate of processes leaving the system.

AFCAT EKT Computer Science Mock Test - 1 - Question 12

The participation constraint associated with relationship set of a weak entity is always

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

As weak entity can be identified by using partial key + key of owner entity, the relationship set needs to be total participation.

AFCAT EKT Computer Science Mock Test - 1 - Question 13
Which computer memory is volatile?
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 13

RAM(Random access memory) is volatile while ROM(Read only memory), PROM(programmable read only memory) and EPROM(Erasable programmable read only memory) are non-volatile memories means their data will be retained even when the power is turned off.

AFCAT EKT Computer Science Mock Test - 1 - Question 14

Operating system provide memory management module to

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

Main task of Memory management module is to protect the space of one process from another.

AFCAT EKT Computer Science Mock Test - 1 - Question 15

If two equal forces of magnitude P acts at an angle θ, their resultant will be

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

Magnitude of resultant Forces F1 and F2 is:

F1 and F= P

AFCAT EKT Computer Science Mock Test - 1 - Question 16

Value of sinx + cosx is greatest when x is

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

When x is 45 degrees sinx + cosx attains maxima.

AFCAT EKT Computer Science Mock Test - 1 - Question 17
Which of the following medium has slowest transmission speeds?
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 17

Twisted-pair wire has slowest transmission speed while fibre-optic cable has highest transmission speed.

AFCAT EKT Computer Science Mock Test - 1 - Question 18

If X and Y are two independent events with P(X∪Y) = 0.8 and P(Y) = 0.5 then P(X) =

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

We know that P(X U Y)= P(X) + P(Y) - P(X∩Y)
Given that both X and Y are independent hence P(X∩Y) =  P(X).P(Y)
So 0.8 = P(X)+ 0.5- 0.5 x P(X)
0.3 = 0.5P (X)
P (X) = 3/5 = 0.6 

AFCAT EKT Computer Science Mock Test - 1 - Question 19
Frames from one LAN can be transmitted to another LAN via the device called
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 19

Bridge works at data link layer, it transmits frames from one LAN to another.

AFCAT EKT Computer Science Mock Test - 1 - Question 20

What will be the output of the following program ?
main(){
int a = 4, b = 3;
printf("%d",a+++b);
}

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

+++ has 1 post increment operator and 1 sum operator, sum will be performed immediately.

AFCAT EKT Computer Science Mock Test - 1 - Question 21
In conservative two phase locking protocol a transaction
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 21

Conservative two phase locking protocol requires a transaction to lock all the items it accesses before the transaction begins execution.

AFCAT EKT Computer Science Mock Test - 1 - Question 22

Dimension of magnetic flux density is

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

Dimension of magnetic flux density is MT-2I-1

AFCAT EKT Computer Science Mock Test - 1 - Question 23

Consider the following schedule.

In the above schedule transaction if T1 fails, then it will suffer which of the following problem.

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

If transaction T1 fails, then the read of T2 will be a dirty read.

AFCAT EKT Computer Science Mock Test - 1 - Question 24
Optical fiber works on the principle of –
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 24

Optical fibre works on the principle of total internal reflection. Here light is used to transmit information from one place to another.

AFCAT EKT Computer Science Mock Test - 1 - Question 25
Conversion of decimal number 61 to its binary number equivalent is
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 25

61 = 63-2, as 63 is represented by 111111, subtracting 2 will give 111101.

AFCAT EKT Computer Science Mock Test - 1 - Question 26
ASCII stands for
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 26

ASCII stands for American Standard Code for Information Interchange is a character encoding standard for electronic communication. ASCII characters are represented by seven bits. ASCII codes are of two types- ASCII-7 and ASCII-8. ​The standard ASCII character has 7 bits and the basic set ranges from 0 to 127.​ The extended ASCII character has 8 bits and the basic set ranges from 0 to 255.

AFCAT EKT Computer Science Mock Test - 1 - Question 27

The Logic gate that will have HIGH or “1” at its output when one of its inputs is high is

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

The below truth table is for OR gate.

From the above truth table we can say that if one of the input is high, the output will be high.

The below truth table is for AND gate.

From the above truth table we can say that if one of the input is low, the output will be high.

AFCAT EKT Computer Science Mock Test - 1 - Question 28

What is addition of (-64)10 and (80)16?

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

Converting in decimal we have

AFCAT EKT Computer Science Mock Test - 1 - Question 29

If the area of the square is increased by 69% the side of the square increase by

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

Let the side of the square is x
Now, the area of square is, A = x2
Given that area of the square increased by 69%, the area will be 1.69 A
Let the increased side of the square is nx
⇒ (nx)2 = 1.69x2
⇒ n = 1.3
Hence the side of the square increases by 30%

AFCAT EKT Computer Science Mock Test - 1 - Question 30
A functional dependency of the form X→Y is trivial if
Detailed Solution for AFCAT EKT Computer Science Mock Test - 1 - Question 30

X->Y to be Trivial Y should be subset of X

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