51. What is the medium used in optical storage systems for reading and rec

What is the medium used in optical storage systems for reading and recording data ?

High-energy visible light
Laser light
Ultraviolet light
Black light
This question was previously asked in
UPSC CISF-AC-EXE – 2021
Optical storage systems, such as CDs, DVDs, and Blu-ray discs, use a focused beam of light to read and write data on the surface of the disc. This light is typically produced by a laser diode. The laser beam interacts with the data layer on the disc, and changes in the reflected light are detected and interpreted as data (pits and lands representing binary 0s and 1s). For writing, a higher power laser is used to physically alter the data layer.
– Optical storage relies on light to interact with the storage medium.
– Lasers provide the focused, coherent light required for the high data densities and precision needed in optical storage.
The wavelength of the laser light varies depending on the type of optical media. CDs use infrared laser (around 780 nm), DVDs use red laser (around 650 nm), and Blu-ray discs use blue-violet laser (around 405 nm). Shorter wavelengths allow for smaller pits/lands and thus higher storage capacity.

52. In a computer system, which of the following two registers are used by

In a computer system, which of the following two registers are used by the CPU to transfer the data between processor and memory ?

MDR and IR
PC and IR
MAR and MDR
IR and MAR
This question was previously asked in
UPSC CISF-AC-EXE – 2021
The correct answer is C) MAR and MDR.
When the CPU needs to access memory (either to read data/instruction or write data), it uses two primary registers for the transfer:
1. Memory Address Register (MAR): Stores the address of the memory location the CPU wants to access.
2. Memory Data Register (MDR) or Memory Buffer Register (MBR): Temporarily stores the data being read from or written to the memory location specified by the MAR. Data flows between the MDR and the data bus, and between the data bus and memory.
The Instruction Register (IR) holds the current instruction being executed. The Program Counter (PC) holds the address of the *next* instruction. While PC is used to fetch the next instruction (by placing its value in MAR), IR and PC are not the registers directly involved in the data *transfer* between the processor and memory in a general sense; that role is specific to MAR and MDR.

53. In a computer system, a 32-bit address bus can address

In a computer system, a 32-bit address bus can address

32 memory locations.
2<sup>32</sup> memory locations.
32<sup>2</sup> memory locations.
32<sup>8</sup> memory locations.
This question was previously asked in
UPSC CISF-AC-EXE – 2021
The correct answer is B) 232 memory locations.
An address bus is used to specify memory locations. The number of bits in the address bus determines the maximum number of unique addresses that the CPU can generate. With an n-bit address bus, there are 2^n possible unique binary combinations, each representing a distinct memory address. Therefore, a 32-bit address bus can address 2^32 memory locations.
In computing, 2^10 is 1 Kilobyte (KB), 2^20 is 1 Megabyte (MB), 2^30 is 1 Gigabyte (GB). So, 2^32 locations would correspond to 4 Gigabytes (4 GB) of addressable memory space (assuming each location is 1 byte). This is a common address space size for 32-bit systems.

54. Which one of the following stores the results produced by arithmetic a

Which one of the following stores the results produced by arithmetic and logic unit of a computer ?

Instruction Register (IR)
Program Counter (PC)
Accumulator (ACC)
Memory Address Register (MAR)
This question was previously asked in
UPSC CISF-AC-EXE – 2021
The correct answer is C) Accumulator (ACC).
The Accumulator (ACC) is a general-purpose register in a CPU that is commonly used to store the intermediate results of arithmetic and logic operations performed by the Arithmetic Logic Unit (ALU). While modern architectures use multiple general-purpose registers for this role, the Accumulator was historically and conceptually the dedicated register for accumulating results from the ALU.
The Instruction Register (IR) holds the instruction being executed. The Program Counter (PC) holds the address of the next instruction. The Memory Address Register (MAR) holds the address of the memory location being accessed. The Memory Data Register (MDR) holds the data being transferred to or from memory. Only the Accumulator is specifically associated with storing ALU results directly.

55. Which one of the following does *not* fall under the category ‘Biometr

Which one of the following does *not* fall under the category ‘Biometrics’, meant for personal identification related to access control?

Card Reader and Card
Iris
Fingerprint
Handwriting
This question was previously asked in
UPSC CISF-AC-EXE – 2021
Biometrics refers to methods of recognizing a person based on their unique physical or behavioral characteristics. Iris recognition, fingerprint scanning, and handwriting analysis (signature dynamics or forensic analysis) are all forms of biometrics. A card reader and card system, however, is a token-based access control system. The card is a physical object (token) that the person possesses, and the reader verifies the information stored on the card. The identification is based on possession of the token, not on a unique characteristic of the person themselves.
Biometric identification uses inherent personal characteristics (like iris, fingerprint, voice, face), whereas token-based systems rely on possessing an object (like a card or key).
Biometric systems offer a higher level of security than simple token-based systems as biometric characteristics are difficult to forge or transfer. However, they also raise privacy concerns. Access control systems can be purely token-based, purely biometric, or use a combination of methods (e.g., card + PIN, card + fingerprint).

56. Which one of the following is *not* a vector image format ?

Which one of the following is *not* a vector image format ?

CGM
PNG
SVG
SWF
This question was previously asked in
UPSC CISF-AC-EXE – 2020
PNG (Portable Network Graphics) is a raster image format, meaning it represents images as a grid of pixels.
Vector image formats use mathematical equations to describe shapes, lines, and curves, making them scalable without loss of quality. Raster formats store images as a fixed grid of pixels, which can lose quality when scaled.
CGM (Computer Graphics Metafile), SVG (Scalable Vector Graphics), and SWF (Shockwave Flash, often used for vector animations) are examples of vector image formats. Other common raster formats include JPEG, GIF, and BMP.

57. Which one of the following languages is interpreter ?

Which one of the following languages is interpreter ?

FORTRAN
Pascal
Python
C++
This question was previously asked in
UPSC CISF-AC-EXE – 2020
Python is an interpreted language, unlike FORTRAN, Pascal, and C++, which are primarily compiled languages.
Interpreted languages execute code line by line using an interpreter, while compiled languages translate the entire code into machine code before execution.
FORTRAN (Formula Translation), Pascal, and C++ are widely considered compiled languages. Python, while sometimes using compilation steps (like bytecode generation), is fundamentally executed through an interpreter. Other interpreted languages include Ruby, JavaScript, PHP, etc.

58. Convert F(A, B, C) = (A + $\bar{B}$) ($\bar{B}$ + C) into canonical Pr

Convert F(A, B, C) = (A + $\bar{B}$) ($\bar{B}$ + C) into canonical Product of Sum form.

(A + B + C) (A + B + $ar{C}$) (A + $ar{B}$ + C)
(A + B + C) ($ar{A}$ + B + $ar{C}$) ($ar{A}$ + $ar{B}$ + $ar{C}$)
(A + $ar{B}$ + C) (A + $ar{B}$ + $ar{C}$) ($ar{A}$ + B + $ar{C}$)
(A + B + $ar{C}$) ($ar{A}$ + $ar{B}$ + $ar{C}$) (A + $ar{B}$ + C)
This question was previously asked in
UPSC CISF-AC-EXE – 2020
The canonical Product of Sums (POS) form is a product of maxterms, where a maxterm is a sum containing every variable in either complemented or uncomplemented form. The maxterms included in the canonical POS form are those for which the function evaluates to 0.
The given function is $F(A, B, C) = (A + \bar{B}) (\bar{B} + C)$.
We can find the minterms where F is 0 by finding where $(A + \bar{B})=0$ OR $(\bar{B} + C)=0$.
$(A + \bar{B}) = 0$ if and only if $A=0$ AND $\bar{B}=0$, which means $A=0$ and $B=1$. For three variables, this corresponds to minterms 010 ($m_2$) and 011 ($m_3$).
$(\bar{B} + C) = 0$ if and only if $\bar{B}=0$ AND $C=0$, which means $B=1$ and $C=0$. For three variables, this corresponds to minterms 010 ($m_2$) and 110 ($m_6$).
So, F=0 for the union of these minterms: $\{m_2, m_3\} \cup \{m_2, m_6\} = \{m_2, m_3, m_6\}$.
The canonical POS form is the product of the corresponding maxterms $M_2, M_3, M_6$.
The maxterm $M_i$ corresponds to the binary representation of $i$, where a 0 corresponds to the uncomplemented variable and a 1 corresponds to the complemented variable in the sum term.
$M_2$ from 010: $(A + \bar{B} + C)$
$M_3$ from 011: $(A + \bar{B} + \bar{C})$
$M_6$ from 110: $(\bar{A} + \bar{B} + C)$
The canonical POS form is $(A + \bar{B} + C)(A + \bar{B} + \bar{C})(\bar{A} + \bar{B} + C)$.
Comparing this derived form to the options, Option C is $(A + \bar{B} + C) (A + \bar{B} + \bar{C}) (\bar{A} + B + \bar{C})$.
Option C has the first two terms correct (M2 and M3). However, the third term in Option C is $(\bar{A} + B + \bar{C})$, which is $M_5$ (from 101). The correct third term should be $(\bar{A} + \bar{B} + C)$, which is $M_6$ (from 110).
There appears to be an error in the provided options as none exactly matches the derived canonical POS form. However, option C contains two out of the three correct maxterms and is the closest match structurally. Assuming a likely typo in the third term of Option C, it is the most probable intended answer.
– Canonical POS is a product of maxterms.
– Maxterms correspond to the minterms where the function is 0.
– For a variable in a maxterm, it is uncomplemented if its value is 0 in the corresponding minterm binary representation, and complemented if its value is 1.
The original function simplifies to $\bar{B} + AC$. Its minterms are $\sum m(0, 1, 4, 5, 7)$, and maxterms are $\prod M(2, 3, 6)$. This confirms the derived maxterms.

59. Which OSI layer is *not* part of TCP/IP model ?

Which OSI layer is *not* part of TCP/IP model ?

Application layer
Session layer
Network layer
Physical layer
This question was previously asked in
UPSC CISF-AC-EXE – 2020
The OSI (Open Systems Interconnection) model has seven layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.
The TCP/IP model is typically described with four layers: Network Interface (or Link), Internet, Transport, and Application. Sometimes a five-layer model is used, splitting the Network Interface layer into Physical and Data Link.
Comparing the models:
– OSI Physical and Data Link correspond to TCP/IP Network Interface/Link (or Physical and Data Link).
– OSI Network corresponds to TCP/IP Internet.
– OSI Transport corresponds to TCP/IP Transport.
– OSI Application corresponds to TCP/IP Application, but the TCP/IP Application layer encompasses the functions of the OSI Session, Presentation, and Application layers.
The OSI Session layer and Presentation layer do not have distinct corresponding layers in the standard TCP/IP model; their functions are integrated into other layers (primarily the Application layer). Among the options provided, the Session layer is the one from the OSI model that is not a separate layer in the TCP/IP model.
– OSI has 7 layers, TCP/IP has 4 or 5 layers.
– TCP/IP combines functions of some OSI layers into its own layers.
– OSI Session and Presentation layers are not distinct layers in the TCP/IP model.
While TCP/IP is the dominant model for the internet, the OSI model is still valuable for understanding networking concepts and relationships between different functions.

60. On which storage device is track pattern spiral ?

On which storage device is track pattern spiral ?

Magnetic disk
Optical disk
Floppy disk
Pendrive
This question was previously asked in
UPSC CISF-AC-EXE – 2020
Optical storage devices such as CDs, DVDs, and Blu-ray discs store data along a single, continuous track that spirals outwards from the center of the disc. The read head follows this spiral track to access data sequentially or jump to specific locations.
Magnetic disks (like HDDs and floppy disks) use multiple concentric circular tracks on the surface of the platter(s).
Flash memory (like pendrives or SSDs) uses semiconductor memory chips and does not have a physical track pattern in the same sense as disk media.
– Optical disks use a single spiral track.
– Magnetic disks use concentric circular tracks.
– Flash memory uses solid-state storage without physical tracks.
The spiral track allows optical drives to read data in a continuous stream, which is efficient for audio or video playback. The concentric tracks on magnetic disks allow for faster random access using read/write heads that move radially across the platters.