পরীক্ষা আর্কাইভ

বিসিএস জব সল্যুশন [১০ম - ৫০তম বিসিএস]

পরীক্ষাবিসিএস জব সল্যুশন [১০ম - ৫০তম বিসিএস]তারিখ১ জানুয়ারি, ২০২৩সময়01 hr 30 mins১৯৯ বৈধ · অসম্পূর্ণ
মোট প্রশ্ন২০০
সিলেবাস
৪৯তম স্পেশাল বিসিএস [তথ্য ও যোগাযোগ প্রযুক্তি (২৮১)] মূল প্রশ্নপত্রের উপর Live পরীক্ষা।
ঘনত্ব
উত্তর
উত্তরিতবর্তমানপুনরায় দেখুনঅসম্পূর্ণ

বিসিএস জব সল্যুশন [১০ম - ৫০তম বিসিএস]

বিসিএস জব সল্যুশন [১০ম - ৫০তম বিসিএস] · ১ জানুয়ারি, ২০২৩ · ২০০ প্রশ্ন

.
The firewall works at the ______ layer of  OSI model.
  1. Network
  2. Physical
  3.  Data link
  4.  Presentation
ব্যাখ্যা

Answer: Network Layer (Layer 3)

Explanation:
A firewall mainly functions at the Network Layer of the OSI Model, filtering data packets based on IP addresses, protocols, and ports. This allows it to control traffic between trusted and untrusted networks.

According to Cisco and standard textbooks (Stallings, Forouzan), traditional firewalls work at Layer 3 (Network Layer) of the OSI model, though modern versions may inspect higher layers (Transport and Application)

Source:

Stallings, William. Network Security Essentials: Applications and Standards, 6th Edition, Pearson, 2020.
Forouzan, Behrouz A. Data Communications and Networking, 5th Edition, McGraw-Hill, 2012.
Cisco Networking Academy. Introduction to Networks (CCNA 1) – Chapter 11: Network Security Fundamentals.

.
_______complement method is predominantly used to represent negative numbers in computer systems. 
  1. 1's
  2.  2's
  3. 9's
  4. 10's
ব্যাখ্যা

Answer: Two’s complement

Explanation:
The Two’s complement method is the most widely used technique to represent negative integers in computer systems.
In this method:

The binary digits of the number are inverted (0 → 1 and 1 → 0).
Then 1 is added to the result.
This approach simplifies binary arithmetic (especially subtraction) because the same hardware can handle both positive and negative numbers uniformly.

Example:
To represent –5 in 8-bit two’s complement:

Write 5 in binary → 00000101
Invert bits → 11111010
Add 1 → 11111011
So, –5 = 11111011 in two’s complement.

Source:

Stallings, William. Computer Organization and Architecture, 11th Edition, Pearson, 2019.
Mano, M. Morris & Ciletti, Michael D. Digital Design, 6th Edition, Pearson, 2018.
Tanenbaum, Andrew S. Structured Computer Organization, 6th Edition, Pearson, 2013.

.
In a floating point representation, 'machine epsilon' refers to: 
  1. The largest representable number.
  2.  The smallest representable number.
  3. The difference between one and the next larger representable number.
  4. The rounding error in subtraction.
ব্যাখ্যা

The correct answer is:

গ) The difference between one and the next larger representable number.

Explanation: In floating-point representation, machine epsilon is defined as the smallest positive number ε such that 1 + ε is distinguishable from 1 in the floating-point system. It represents the difference between 1 and the next larger representable number, effectively indicating the precision of the floating-point arithmetic for a given system.

The other options are related but incorrect:

ক) The largest representable number is determined by the maximum exponent and mantissa bits, often called FLT_MAX or DBL_MAX.
খ) The smallest representable number (excluding zero) is determined by the minimum exponent and smallest mantissa, often called FLT_MIN or DBL_MIN.
ঘ) The rounding error in subtraction is a consequence of finite precision, but machine epsilon is the measure of that precision.

.
Spooling is generally used for:
  1. CPU scheduling 
  2. deadlock detection
  3. printer management
  4. memory allocation
ব্যাখ্যা

গ) printer management

স্পুলিং (Spooling - Simultaneous Peripheral Operations On-Line) সাধারণত প্রিন্টার ব্যবস্থাপনার (printer management) জন্য ব্যবহৃত হয়।

 ব্যাখ্যা

স্পুলিং একটি কৌশল যা একটি দ্রুত ডিভাইস (যেমন CPU) এবং একটি ধীর গতির পেরিফেরাল ডিভাইসের (যেমন প্রিন্টার) মধ্যে ডেটা আদান-প্রদান নিয়ন্ত্রণ করে।
যখন আপনি প্রিন্ট করার কমান্ড দেন, তখন আপনার কম্পিউটারকে প্রিন্টারের কাজ শেষ হওয়ার জন্য অপেক্ষা করতে হয় না। প্রিন্ট করার জন্য প্রয়োজনীয় ডেটা একটি বাফার বা কিউ (queue)-তে জমা হয়, যাকে প্রিন্টার স্পুলার বলা হয়।
কম্পিউটার তখন অন্য কাজ করতে পারে, আর স্পুলার ধীরে ধীরে সেই ডেটা প্রিন্টারে পাঠাতে থাকে।
এতে সিপিইউ-এর নিষ্ক্রিয়তা (idle time) কমে এবং সামগ্রিকভাবে সিস্টেমের দক্ষতা বাড়ে।

অন্যান্য বিকল্পগুলি:

ক) CPU scheduling (সিপিইউ শিডিউলিং): এটি সিপিইউকে প্রক্রিয়াগুলির মধ্যে ভাগ করে দেওয়ার পদ্ধতি। এটি স্পুলিং নয়।
খ) deadlock detection (ডেডলক ডিটেকশন): এটি একটি অপারেটিং সিস্টেমের প্রক্রিয়া, যা ডেডলক হয়েছে কিনা তা পরীক্ষা করে।
ঘ) memory allocation (মেমরি অ্যালোকেশন): এটি প্রোগ্রামগুলিকে প্রধান মেমরি সরবরাহ করার প্রক্রিয়া।

Source:

Silberschatz, Abraham, Galvin, Peter B., & Gagne, Greg. Operating System Concepts, 10th Edition, Wiley, 2018.
Stallings, William. Operating Systems: Internals and Design Principles, 10th Edition, Pearson, 2024.
Tanenbaum, Andrew S. Modern Operating Systems, 4th Edition, Pearson, 2015.

.
Which traversal will you perform to sort the elements of a binary search tree?
  1. Preorder 
  2. Postorder
  3. Inorder 
  4.  Level order
ব্যাখ্যা

গ) Inorder

The Inorder traversal of a Binary Search Tree (BST) visits the nodes in the following sequence:

Left Subtree→Root→Right Subtree
Due to the fundamental property of a Binary Search Tree—where the value of any node is greater than all values in its left subtree and smaller than all values in its right subtree—visiting the elements in this Left-Root-Right order guarantees that you will retrieve the elements in ascending sorted order.

Traversal Orders in a BST

Inorder (Left, Root, Right): Retrieves elements in ascending sorted order (e.g., 1,2,3,4,5).
Preorder (Root, Left, Right): Used to create a copy or clone of the tree structure.
Postorder (Left, Right, Root): Used for deleting the tree (since children are deleted before the parent) or evaluating expressions.
Level Order (Breadth-First): Visits nodes row by row (level by level) and does not produce a sorted sequence.

Source:
Cormen, Thomas H. et al. Introduction to Algorithms, 4th Edition, MIT Press, 2022.
Weiss, Mark Allen. Data Structures and Algorithm Analysis in C, 2nd Edition, Addison Wesley, 1997.
Goodrich, Michael T. et al. Data Structures and Algorithms in Java, 7th Edition, Wiley, 2021.

.
In the breadth-first search, which of the following should be used?
  1. Stack 
  2. Queue 
  3. Heap 
  4. Linked list
ব্যাখ্যা

সঠিক উত্তর: খ) Queue

Explanation:
Breadth-First Search (BFS) is a graph traversal algorithm that explores all the vertices of a graph level by level — starting from a source node and visiting all its neighbors before moving to the next level.

To achieve this level-order traversal, BFS uses a Queue (FIFO – First In, First Out) data structure.

Algorithm steps:

Start from a source node and enqueue it.
Dequeue a node, visit it, and enqueue all its unvisited neighbors.
Repeat until the queue becomes empty.
Example:
For a graph starting at node A:
A → B, C
B → D
C → E
BFS order: A, B, C, D, E
(using a queue).

Therefore:

In BFS, we use a Queue to manage nodes in the order they are discovered.

Source:

Cormen, Thomas H. et al. Introduction to Algorithms, 4th Edition, MIT Press, 2022.
Goodrich, Michael T., Tamassia, Roberto, & Goldwasser, Michael H. Data Structures and Algorithms in Java, 7th Edition, Wiley, 2021.
Weiss, Mark Allen. Data Structures and Algorithm Analysis in C, Addison Wesley, 1997.

.
If |A| = m, |B| = n, then the number of injective functions A → B (m ≤ n) is:
  1. P(n,m)
  2. C(n,m) 
  3. nm 
  4. m
ব্যাখ্যা

Answer:
ক) P(n, m)

Explanation:
If |A| = m and |B| = n (m ≤ n), then the number of injective (one-to-one) functions f: A → B is given by:
P(n, m) = n! / (n - m)!

Reasoning:
The first element of A can map to n choices in B.
 The second element to (n − 1) choices (since injective).
 Continue similarly for all m elements.

Hence, total number of injective mappings = n × (n−1) × (n−2) × ... × (n−m+1) = n! / (n−m)!

Sources:
Rosen, Kenneth H. Discrete Mathematics and Its Applications, 8th Edition, McGraw-Hill, 2019.
Liu, C. L. Elements of Discrete Mathematics, 2nd Edition, McGraw-Hill, 1985.
Grimaldi, Ralph P. Discrete and Combinatorial Mathematics, 5th Edition, Pearson, 2004.

.
Working principle of a Tunnel Diode:
  1. Quantum mechanical tunneling
  2. Zener breakdown
  3. Avalanche breakdown
  4. Ionization tunneling
ব্যাখ্যা

ক) Quantum mechanical tunneling

Explanation:
A Tunnel Diode operates based on the principle of quantum mechanical tunneling — a phenomenon where charge carriers (electrons) penetrate through a potential energy barrier even when they do not have enough energy to overcome it classically.

Because of heavy doping (about 1000 times more than a normal diode), the depletion layer becomes extremely thin, allowing tunneling to occur.
This gives the diode its characteristic negative resistance region in the V–I curve, which makes it useful in high-frequency oscillators and fast switching circuits.

Tunnel Diode works on the principle of Quantum Mechanical Tunneling.

Source:

Boylestad, Robert L., and Nashelsky, Louis. Electronic Devices and Circuit Theory, 11th Edition, Pearson, 2013.
Sedra, Adel S., and Smith, Kenneth C. Microelectronic Circuits, 8th Edition, Oxford University Press, 2020.
Millman, Jacob, and Halkias, Christos C. Electronic Devices and Circuits, McGraw-Hill, 2008.

.
Cascadeless schedules prevent:
  1. deadlocks 
  2. aborts 
  3. reading uncommitted data
  4. Long transactions
ব্যাখ্যা

 গ) reading uncommitted data 

Explanation:

A cascadeless schedule is a type of recoverable schedule in Database Management Systems (DBMS).

Definition: A schedule is cascadeless if, for every pair of transactions Ti​ and Tj​, if Tj​ reads a data item previously written by Ti​, then the commit operation of Ti​ must appear before the read operation of Tj​.
Prevention: By enforcing this rule, a cascadeless schedule directly prevents a transaction (Tj​) from reading data that has been modified by another transaction (Ti​) before Ti​ has committed. This is exactly what a dirty read (or reading uncommitted data) is.
Result: By preventing dirty reads, cascadeless schedules effectively avoid cascading rollbacks (or cascading aborts). Cascading rollbacks occur when a single transaction's failure leads to a chain reaction of dependent transactions having to abort because they read the failed transaction's uncommitted data.
The most fundamental action cascadeless schedules prohibit is reading uncommitted data, which is the root cause of the cascading abort problem.

Source:

Silberschatz, Abraham, Korth, Henry F., and Sudarshan, S. Database System Concepts, 7th Edition, McGraw-Hill, 2020.
Elmasri, Ramez & Navathe, Shamkant B. Fundamentals of Database Systems, 7th Edition, Pearson, 2017.
Date, C. J. An Introduction to Database Systems, 8th Edition, Addison Wesley, 2003.



১০.
Which one below is the most bandwidth-efficient digital modulation?
  1. BPSK 
  2. QPSK
  3. FSK 
  4. 16QAM
ব্যাখ্যা

সঠিক উত্তর: ঘ) 16QAM

Explanation:
Bandwidth efficiency (also called spectral efficiency) measures how effectively a modulation scheme uses available bandwidth to transmit data. It is expressed as bits per second per hertz (bps/Hz).
Explanation
ব্যান্ডউইথ দক্ষতা (bandwidth efficiency) বলতে একটি নির্দিষ্ট ব্যান্ডউইথে কত বেশি ডেটা বা বিট পাঠানো যায়, তা বোঝানো হয়। প্রদত্ত বিকল্পগুলোর মধ্যে, 16QAM সবচেয়ে বেশি ডেটা প্রতি সিম্বল (symbol) পাঠাতে পারে, যার ফলে এটি সবচেয়ে ব্যান্ডউইথ-দক্ষ। 
16QAM প্রতি সিম্বলে 4টি বিট পাঠায়, কারণ এটি 16টি ভিন্ন অবস্থা ব্যবহার করে (2^4 = 16)।
QPSK প্রতি সিম্বলে 2টি বিট পাঠায় (2^2 = 4 অবস্থা)।
BPSK প্রতি সিম্বলে 1টি বিট পাঠায় (2^1 = 2 অবস্থা)।
FSK সাধারণত প্রতি সিম্বলে 1টি বিট পাঠায় এবং এর জন্য BPSK বা QPSK-এর চেয়ে বেশি ব্যান্ডউইথ প্রয়োজন হয়। 

Why other options are incorrect
ক) BPSK: BPSK প্রতি সিম্বলে মাত্র 1 বিট পাঠায়, তাই এটি 16QAM-এর চেয়ে কম ব্যান্ডউইথ-দক্ষ।
খ) QPSK: QPSK প্রতি সিম্বলে 2 বিট পাঠায়, যা BPSK-এর চেয়ে বেশি দক্ষ হলেও 16QAM-এর চেয়ে কম দক্ষ।
গ) FSK: FSK-এর সাধারণত BPSK এবং QPSK-এর মতো ফেজ শিফট কিয়িং (PSK) কৌশলগুলোর চেয়ে বেশি ব্যান্ডউইথ প্রয়োজন হয়। 

16QAM (Quadrature Amplitude Modulation) combines both amplitude and phase variations, allowing each symbol to represent 4 bits (2⁴ = 16 possible symbols) — thus achieving higher data rates for the same bandwidth.

Source:

Proakis, John G., and Salehi, Masoud. Digital Communications, 5th Edition, McGraw-Hill, 2008.
Haykin, Simon. Communication Systems, 5th Edition, Wiley, 2009.
Sklar, Bernard. Digital Communications: Fundamentals and Applications, 2nd Edition, Prentice Hall, 2001.

১১.
In modulo-2 operation___________give the same result.
  1. Addition & division
  2. Addition & multiplication
  3. Multiplication & division
  4. Subtraction & addition
ব্যাখ্যা

ঘ) Subtraction & addition.

In modulo-2 arithmetic, the only possible numbers are 0 and 1. It is performed digit by digit on binary numbers with no carries for addition and no borrows for subtraction.

Modulo-2 Addition (⊕)

Modulo-2 addition is equivalent to the Exclusive OR (XOR) logical operation.
0⊕0=0
0⊕1=1
1⊕0=1
1⊕1=0 (since 1+1=2, and 2(mod2)=0)

Modulo-2 Subtraction (⊖)

Modulo-2 subtraction is also performed exactly like the XOR operation.
0⊖0=0
0⊖1=1 (since 0−1=−1, and −1(mod2)=1)
1⊖0=1
1⊖1=0
Since the results of A⊕B and A⊖B are identical for all combinations of binary inputs A and B, addition and subtraction give the same result in modulo-2 operation.
Explanatation: 2

In modulo-2 arithmetic, the elements are 0 and 1, and the operations are defined as follows:

Addition: 0 + 0 = 0, 0 + 1 = 1, 1 + 0 = 1, 1 + 1 = 0 (mod 2).
Subtraction: Since -1 ≡ 1 (mod 2), a - b ≡ a + (-b) ≡ a + b (mod 2). Thus, subtraction yields the same results as addition: 0 - 0 = 0, 0 - 1 = 1 (since -1 = 1), 1 - 0 = 1, 1 - 1 = 0 (mod 2).
Multiplication: 0 * 0 = 0, 0 * 1 = 0, 1 * 0 = 0, 1 * 1 = 1 (mod 2).
Division: In modular arithmetic, division by b is multiplication by the modular inverse of b (if it exists). In mod 2, only b = 1 has an inverse (which is 1 itself), so a / 1 ≡ a * 1 ≡ a (mod 2). Division by 0 is undefined.
To arrive at the solution:

Compare addition and subtraction: They produce identical results for all combinations of 0 and 1, as shown above.
Compare addition and multiplication: They differ (e.g., 1 + 1 = 0, but 1 * 1 = 1).
Compare multiplication and division: They are similar only when dividing by 1 (e.g., 1 / 1 = 1 ≡ 1 * 1), but division by 0 is undefined, so they do not always give the same result.
Compare addition and division: They differ (e.g., 1 + 1 = 0, but 1 / 1 = 1).
Thus, the operations that give the same result are subtraction and addition.

The correct option is:

ঘ) Subtraction & addition

Source:

Peterson, W. W., and Brown, D. T. Cyclic Codes for Error Detection, Proceedings of the IRE, 1961.
Forouzan, Behrouz A. Data Communications and Networking, 5th Edition, McGraw-Hill, 2012.
Stallings, William. Data and Computer Communications, 10th Edition, Pearson, 2014.

১২.
The main challenges of NLP is:
  1. ambiguity of sentences
  2. parts of speech tagging
  3. syntactic analysis
  4.  tokenization
ব্যাখ্যা

ক) Ambiguity of sentences

Explanation of Challenges
 

The core difficulty in Natural Language Processing (NLP) is the inherent complexity and ambiguity of human language. While the other options are also challenges or tasks, they are often sub-problems that arise from trying to deal with ambiguity.

Ambiguity of Sentences (Main Challenge): Human language is highly ambiguous, meaning a word, phrase, or sentence can have multiple possible meanings. Computers struggle to choose the correct interpretation without a massive amount of context and real-world knowledge. This includes:

Lexical Ambiguity: A single word having multiple meanings (e.g., "bank" can mean a river edge or a financial institution).
Syntactic Ambiguity: Sentence structure leading to multiple grammatical interpretations (e.g., "The man saw the girl with the telescope").
Semantic/Pragmatic Ambiguity: The intended meaning depends on context, tone, or external knowledge (e.g., sarcasm, idioms).
Parts of Speech (POS) Tagging and Syntactic Analysis (Parsing): These are fundamental steps used to help resolve ambiguity, but they are not the main challenge itself. The difficulty in POS tagging and syntactic analysis often comes from the ambiguity of the words/structures in the first place.
Tokenization: This is the process of breaking text into smaller units (tokens). While imperfect, it is a relatively well-solved, early-stage preprocessing task and is not considered the principal obstacle for NLP.

Source:
Jurafsky, Daniel, and Martin, James H. Speech and Language Processing, 3rd Edition (Draft), Pearson, 2023.
Bird, Steven, Klein, Ewan, and Loper, Edward. Natural Language Processing with Python, O’Reilly, 2009.
Manning, Christopher D., and Schütze, Hinrich. Foundations of Statistical Natural Language Processing, MIT Press, 1999. 

১৩.
The main drawback of hill climbing search is:
  1. high memory requirement
  2.  Can get stuck in local optima 
  3.  expands all nodes
  4. Requires heuristic functions
ব্যাখ্যা

The main drawback of hill climbing search is:

খ) Can get stuck in local optima

 
 

Explanation
 

Hill Climbing is a greedy local search algorithm that continuously moves from the current state to the best neighboring state with a higher value (or lower cost, depending on the problem) until it reaches a "peak" where no neighboring state is better.

The primary limitation of this greedy, short-sighted approach is:

Local Optima (Local Maxima/Minima): A local optimum is a state that is better than all of its immediate neighbors, but it is not the best state in the entire search space (the global optimum). Once the algorithm reaches a local optimum, it stops because it has no better neighboring move to make, believing it has found the best solution when a significantly better one might exist elsewhere.
Other related issues that cause the algorithm to get stuck are Plateaus (flat regions where movement direction is uncertain) and Ridges (narrow paths that require non-greedy zig-zag moves).

High memory requirement is typically a drawback of algorithms like A* or Breadth-First Search (BFS), not Hill Climbing, which only tracks the current state.
Expands all nodes is a characteristic of uninformed searches like BFS, not Hill Climbing, which is heuristic-guided and explores a minimal number of nodes.
Requires heuristic functions is a necessary feature of Hill Climbing, not a drawback, as the heuristic is what makes the search efficient.

১৪.
The phase difference between voltage and current in a series RLC circuit with R=100 Ω, XL=300 Ω, and XC=100 Ω is:

  1. 90°
  2. 45°
  3. 60°
ব্যাখ্যা





Explanatation: 2
Query successful
The phase difference (ϕ) between voltage and current in a series RLC circuit is determined by the relationship between the resistance (R) and the net reactance (X).

 

Calculation
The phase angle (ϕ) is calculated using the formula:

ϕ=arctan(RXL​−XC​​)
Given values:

Resistance, R=100 Ω
Inductive Reactance, XL​=300 Ω
Capacitive Reactance, XC​=100 Ω
 

Step 1: Calculate Net Reactance (X)
The net reactance is the difference between the inductive and capacitive reactances:

X=XL​−XC​
X=300 Ω−100 Ω
X=200 Ω
 

Step 2: Calculate the Phase Angle (ϕ)
Now, substitute the values into the phase angle formula:

ϕ=arctan(100 Ω200 Ω​)
ϕ=arctan(2)
Since arctan(1)=45∘ and arctan(3 ​)≈60∘, we know that arctan(2) must be greater than 60∘. We can use the code interpreter to get the precise value:

Python

import numpy as np

# Given values
R = 100
XL = 300
XC = 100

# Calculate the phase angle in degrees
phase_angle_radians = np.arctan((XL - XC) / R)
phase_angle_degrees = np.degrees(phase_angle_radians)

print(f"Phase Angle (degrees): {phase_angle_degrees}")


Code output
Phase Angle (degrees): 63.43494882292201

The calculated phase angle is approximately 63.43∘.

Since XL​>XC​, the circuit is net inductive, and the voltage leads the current. 

Conclusion
 Comparing the calculated value (63.43∘) to the given options: ক) 0∘ খ) 90∘ গ) 45∘ ঘ) 60∘

None of the options is exactly 63.43∘. However, in multiple-choice questions for electrical circuits, if the exact answer isn't listed, the closest possible answer is usually required, or the question may implicitly refer to a scenario where the ratio simplifies to a standard angle (like 45∘ where X=R, or 90∘ where R=0).

In this specific calculation:

arctan(2)≈63.4∘.
The closest available option is ঘ) 60∘, which corresponds to arctan(3 ​)≈59.9∘. Given the choices, 60∘ is the most plausible intended answer, despite the slight mismatch in the provided X/R ratio.

Therefore, the most appropriate choice from the given options is:

ঘ) 60 (The calculated value is 63.4, making 60∘ the nearest option).

১৫.
Strict two-phase locking (S2PL) holds ____________till commit.
  1.  All locks 
  2. Only read locks
  3. Only write locks
  4.  No locks
ব্যাখ্যা

ক) All locks

 
Explanation:
Strict Two-Phase Locking (S2PL) is a locking protocol used in database systems to ensure serializability and recoverability in transactions.

 
 How Two-Phase Locking Works
Two-Phase Locking (2PL) has two distinct phases:

Growing Phase:

Transaction may acquire locks (read/write).
No lock is released during this phase.
Shrinking Phase:

Transaction releases locks.
No new locks can be acquired after the first release.

In Strict 2PL, all locks (read + write) are held until the transaction commits → hence the correct option is “All locks.”

১৬.
Which of the following could be the correct interpretation of 10110011?
  1. 179 
  2. B3  
  3. -77
  4.  All of the above
ব্যাখ্যা

১৭.
The relation between α, ß in the transistor is:
  1.  ß  = α/(1+ α)
  2.  ß  = 1- α 
  3. α =  ß2
  4.  ß  = α/(1 - α)
ব্যাখ্যা

 Correct Answer:
ঘ) β = α / (1 − α)

 Step-by-Step Explanation:
Definitions:

1. α (alpha) = IC / IE → Current gain in Common Base (CB)
   - Typical range: 0.95–0.99

2. β (beta) = IC / IB → Current gain in Common Emitter (CE)
   - Typical range: 20–200

Relation between emitter, base, and collector currents:
IE = IB + IC

Dividing both sides by IB:
IE / IB = 1 + (IC / IB)
=> IE / IB = 1 + β

Now, α = IC / IE = (β × IB) / IE = β / (β + 1)

Solving for β:
α(β + 1) = β
αβ + α = β
β − αβ = α
β(1 − α) = α
β = α / (1 − α)

১৮.
Which mode in 8285 PPI allows handshake l/O?
  1. Mode-0
  2.  Mode-1
  3. Mode-2 
  4. None of the above
ব্যাখ্যা

The mode in the 8255 Programmable Peripheral Interface (PPI) that allows for handshake I/O is Mode 1.

The 8255 PPI has three main I/O modes of operation:

Mode 0 (Simple I/O): This is the basic input/output mode. Ports A, B, and C can be configured as simple input or output ports without any handshaking signals.

Mode 1 (Strobed I/O or Handshake I/O): This mode uses handshaking signals to synchronize data transfer between the 8255 and a slower peripheral device. In this mode, Port A and/or Port B are used for data, and the bits of Port C are used to provide the necessary control and status (handshake) signals (like STB, IBF, OBF, ACK).

Mode 2 (Bidirectional I/O): This mode also uses handshaking signals, but it is specifically for bidirectional data transfer on Port A. Port C bits are used for the handshaking and control signals.

১৯.
Which of the following is used to transfer an instruction from 8086 to 8087?
  1. INT 3
  2. JMP
  3. LOCK
  4. ESC
ব্যাখ্যা

Correct Answer: ঘ) ESC

Step-by-Step Explanation
Background:
The Intel 8086 microprocessor can work together with the Intel 8087 numeric co-processor (also called Math Co-processor or Floating Point Unit — FPU).
The 8087 performs floating-point arithmetic, trigonometric, and logarithmic operations faster than the 8086 could alone.

Communication between 8086 and 8087
The 8086 fetches ESC (Escape) instructions from memory.
When it encounters an ESC instruction, it passes that instruction to the 8087, not executing it itself.
The 8087 then decodes and executes the floating-point operation specified in that ESC instruction.

২০.
Which one corresponds to binding data and code together?
  1. Polymorphism 
  2. Abstraction
  3. Encapsulation
  4. Inheritance
ব্যাখ্যা

The term that corresponds to binding data and code (methods) together into a single unit is Encapsulation.

Encapsulation is a fundamental concept in Object-Oriented Programming (OOP). It bundles the data (attributes) and the methods (functions) that operate on the data into a single unit, called a class or object. It also often involves data hiding, which restricts direct access to some of an object's components, only allowing interaction through a well-defined interface (the object's methods).
The correct option is:

গ) Encapsulation

২১.
How will you declare an array (Arr) of four pointers to float?
  1. *float Arr[4]
  2. (float) Arr[*4]
  3.  float *Arr[4]
  4.  Ptr (float) Arr[4]
ব্যাখ্যা

The correct way to declare an array (Arr) of four pointers to float is:

গ) float *Arr[4]

Explanation
This declaration is parsed using the rule of thumb that "arrays of X" and "functions returning X" bind before the "pointer to" (*).

Arr[4]: Declares Arr as an array of 4 elements.
*Arr[4]: Declares the elements of the array as pointers (*).
float *Arr[4]: Declares the elements of the array as pointers to the data type float.
Therefore, Arr is an array that holds four elements, and each of those elements is a pointer capable of storing the address of a float value.

২২.
A programmable logic array is mainly used for:
  1. Custom sequential circuits.
  2. Memory.
  3. Custom combinational circuits.
  4. Fixed logic.
ব্যাখ্যা

The correct option is Custom combinational circuits.

A Programmable Logic Array (PLA) is a type of programmable logic device used to implement custom combinational logic functions.

PLA Structure and Function
A PLA consists of two main blocks of logic gates:

Programmable AND array: This array is programmed to generate a set of specific product terms (minterms or logic products of the input variables).
Programmable OR array: This array is programmed to sum the required product terms from the AND array to create the desired output functions.
Since both the AND array and the OR array are programmable, a PLA is highly versatile for realizing any sum-of-products form, which is the standard way to represent custom combinational logic.

Custom sequential circuits (k): These are typically implemented using more complex devices like CPLDs or FPGAs, which integrate flip-flops (sequential elements) along with logic arrays.
Memory (খ): Memory chips (like RAM or ROM) are designed for data storage, not for implementing arbitrary logic functions.
Fixed logic (ঘ): This refers to standard, off-the-shelf ICs (like 7400 series chips) whose logic function is permanently wired and cannot be changed.

২৩.
For velocity (v), frequency (f), and wavelength (λ), we have: 
  1. v = f/λ
  2. v = λ/f
  3.  v =fλ
  4. v =f + λ
ব্যাখ্যা

২৪.
____________algorithm requires policy.
  1. Supervised learning
  2.  Fuzzy logic
  3. Deep learning 
  4. Reinforcement learning
ব্যাখ্যা

ঘ) Reinforcement learning 
Explanation:
Reinforcement Learning (RL) is a type of machine learning where an agent learns to make decisions by interacting with an environment to achieve a goal.

In RL, the agent follows a policy — a rule or strategy that determines what action to take in each state.

২৫.
Which one below declares a function pointer (f) pointing to a function taking an int and a float and returning a double? 
  1. double *f (int, float)
  2. double (*f) (int, float) 
  3. (*double) f (int, float)
  4.  double f* (int, float)
ব্যাখ্যা

খ) double (*f) (int, float)

২৬.
The main goal of project scheduling is to:
  1. minimize coding error
  2. allocate resources & set deadlines
  3. test software early
  4. improve documentation quality
ব্যাখ্যা

The main goal of project scheduling is to allocate resources & set deadlines.

Explanation
Project scheduling is the process of defining the order of work activities and estimating their durations, then assigning resources (like personnel, equipment, and budget) to those activities, and finally establishing a timeline for their completion.

The primary purpose is to:

Allocate Resources: Determine who (or what) will do the work and when.
Set Deadlines: Establish realistic start and finish dates for each task and the overall project.
While the other options are important goals in software development, they are not the main goal of scheduling:

Minimize coding error (ক): This is the goal of activities like code review, testing, and good programming practices.
Test software early (গ): This is a principle of good software development (like continuous integration), but it is part of the schedule, not its main goal.
Improve documentation quality (ঘ): This is the goal of documentation and quality assurance efforts.

২৭.
In a hospital, a patient file stores name, disease, date of admission, room number, bed number, as information. Which should be the primary key in this case? 
  1. Name 
  2. Date of admission
  3. Disease 
  4.  None of the above
ব্যাখ্যা

The most appropriate choice for the primary key, given only the options provided, is None of the above.

The information provided (name, disease, date of admission, room number, bed number) does not include a suitable primary key.

Why the Other Options are Incorrect

Name (ক): Two different patients can have the exact same name. Names are not unique, so they cannot be a primary key.
Date of admission
(খ): Many patients can be admitted on the same day. This is a very poor choice for a primary key as it is far from unique.
Disease
(গ): Many patients in the hospital will have the same disease. This is also a very poor choice for a primary key as it is not unique.

The Correct Approach in a Hospital System

In a real-world database design, a primary key must uniquely identify every record (patient file). A hospital database would use a surrogate key or a combination of identifiers:

Patient ID (Most Common): A unique system-generated identifier (e.g., Patient_ID or File_Number). This is the best practice.
Room Number + Bed Number (Composite Key): This combination is unique at a specific point in time for currently admitted patients, but since a bed can be occupied by many different patients over time, it cannot uniquely identify a single file or patient record across all history.
Patient ID + Date of Admission (Alternative Composite Key): This is often used to uniquely identify a specific admission event, but the primary key for the patient file itself should still be the simple Patient_ID.
Since the list of options does not contain a unique identifier like Patient ID or File Number, None of the above is the correct answer among the choices given.

২৮.
The number of edges in a complete bipartite graph, Km,n is:
  1. mn 
  2.  m + n
  3. m2 + n2
  4. m! n!
ব্যাখ্যা

The number of edges in a complete bipartite graph, Km,n​, is mn.

ক) mn

Explanation
A complete bipartite graph, denoted as Km,n​, is a graph whose vertices can be divided into two disjoint and independent sets, V1​ and V2​, such that:

Set V1​ has m vertices.
Set V2​ has n vertices.
Every vertex in V1​ is connected to every vertex in V2​.
There are no edges within V1​ or within V2​.
To find the total number of edges, you multiply the number of vertices in the first set by the number of vertices in the second set, as each of the m vertices is connected to all n vertices.

Total Edges=(Number of vertices in V1​)×(Number of vertices in V2​)=m×n=mn

২৯.
______________algorithm is best for time-series dat.
  1. CNN
  2. RNN
  3. DNN
  4. ANN
ব্যাখ্যা

The algorithm generally considered best for time-series data among the choices provided is RNN (Recurrent Neural Network), specifically its variants like LSTM (Long Short-Term Memory) and GRU (Gated Recurrent Unit).

খ) RNN

Explanation
Time-series data is characterized by its dependence on the sequence and order of observations. The key feature is the temporal relationship between data points.

RNN (Recurrent Neural Network): RNNs are specifically designed to handle sequential data. They have a built-in "memory" that allows information to persist from one step in the sequence to the next, making them highly effective at modeling temporal dependencies and patterns in time-series data (e.g., stock prices, weather, sensor data).
CNN (Convolutional Neural Network): CNNs are primarily designed for spatial data (like images) but can be adapted for time-series data by using 1D convolutions to extract local features across the time dimension. While often effective, they are generally considered supplementary to or combined with RNNs/LSTMs for sequence-to-sequence problems.
DNN (Deep Neural Network) & ANN (Artificial Neural Network): These terms refer to generic feedforward networks. While they can process time-series data, they treat each time step as an independent input feature. They lack the inherent ability to model sequential dependence or "memory" across time steps, which is a crucial requirement for most time-series forecasting and classification tasks.

৩০.
Which one is used for Software development project scheduling?
  1. Pie chart 
  2. Bar chart
  3. Gantt chart
  4. All of the above
ব্যাখ্যা

The most commonly used tool specifically for Software development project scheduling is the Gantt chart.

গ) Gantt chart

Explanation

Gantt Chart (Correct Answer): A Gantt chart is a bar chart that illustrates a project schedule. It lists tasks vertically and time horizontally. The bars show the start and end dates of each task, making it excellent for tracking progress, managing task dependencies, and clearly visualizing the project timeline and deadlines. It is the industry standard for detailed project scheduling.

Bar Chart (Related): A Gantt chart is a type of bar chart. While a general bar chart can show task duration, it lacks the specific time-based structure and dependency visualization that makes the Gantt chart the superior tool for scheduling.
 
Pie Chart: A pie chart is used to show proportions or percentages (e.g., breakdown of project budget by phase) and is not used for scheduling or timeline management.
All of the above: Incorrect, as the pie chart is not used for scheduling.

৩১.
Which one is not a focus of white box testing method? 
  1. Code coverage.
  2. Data flow and variable.
  3. User perspective.
  4. Code logic and flow.
ব্যাখ্যা

The correct answer is User perspective.

White Box Testing Focus
White Box Testing (also known as clear box, glass box, or structural testing) is a testing method that examines a system's internal structure, design, and coding.

The focus is entirely on the internal workings of the software:

৩২.
What gate voltage needs to be applied to Enhancement-type N-channel MOSFET?
  1. + VDD
  2. - VDD
  3. 0
  4. None of the above
ব্যাখ্যা

The gate voltage that needs to be applied to an Enhancement-type N-channel MOSFET (E-MOSFET) to turn it ON is a positive voltage.

Therefore, out of the given options, the most appropriate is:

ক) + VDD
 
Explanation: 
Enhancement-type (Normally OFF): An Enhancement-type MOSFET is naturally OFF when the gate-to-source voltage (VGS​) is zero (VGS​=0). There is no conductive channel between the source and the drain.
N-channel Operation: To create a conductive channel (made of electrons, which are negative carriers) in an N-channel device, a positive voltage must be applied to the gate terminal.
Positive Gate Voltage (+VGS​): Applying a positive voltage at the gate attracts electrons from the substrate and source/drain regions towards the gate oxide layer, forming a thin conducting layer—the N-channel.
Threshold Voltage (VT​): The applied positive gate voltage must be greater than the threshold voltage (VGS​>VT​) to induce this channel and allow current to flow from drain to source.
+VDD as an option: In standard digital circuits, VDD​ (the positive supply voltage) is typically used as the high logic level. Since a positive voltage is required, and +VDD is the only positive option provided, it represents the correct bias to turn the transistor ON.

৩৩.
What is the value of maximum efficiency of a transformer-coupled class-A power amplifier? 
  1. 25%
  2. 30%
  3. 50%
  4. 78%
ব্যাখ্যা

The maximum theoretical efficiency of a transformer-coupled Class-A power amplifier is 50%.
গ) 50%
 
Explanation: 
The maximum efficiency is a theoretical value calculated under ideal conditions.

Class-A Operation: A Class-A amplifier operates with the transistor conducting for the entire 360∘ of the input signal cycle. This continuous conduction keeps the transistor ON at all times, even when no signal is present.
DC Power Consumption: Because the transistor is always ON and biased at a Q-point in the middle of the load line, it constantly draws a large amount of DC power (PDC​) from the supply, even with zero input signal. This leads to high power dissipation in the transistor and low efficiency.
Transformer Coupling: Using a transformer for coupling allows the load line to be effectively steeper than the DC load line. This allows the voltage and current swing to be maximized, reducing the DC power loss across the transistor collector-emitter junction (VCE(Q)​). Under the most ideal conditions (where VCE​ can swing from 0 to 2VCE(Q)​), the maximum ratio of AC output power to DC input power is 50%.



৩৪.
Write-ahead logging requires:
  1. Data first, log later.
  2. No redo phase.
  3. log record flushed before data page.
  4. None of the above.
ব্যাখ্যা

The correct requirement for Write-Ahead Logging (WAL) is:

গ) log record flushed before data page.

Explanation: 
Write-Ahead Logging (WAL) is a standard technique used in database systems to ensure atomicity (all-or-nothing transactions) and durability (changes survive system failure). The core principle is codified by this rule:

Log First: Any changes to data must first be recorded in the log buffer (memory).
Flush Log Before Data: The log record for a change must be written (flushed) from the log buffer to stable storage (disk) before the corresponding modified data page is written to disk.
This sequence guarantees that if the system crashes, the database can use the log records on stable storage to either redo (complete) or undo (reverse) any incomplete transactions, ensuring data integrity.

Log record flushed before data page (গ): This is the WAL principle.
Data first, log later (ক): This violates the WAL principle and leads to a loss of durability if a crash occurs.
No redo phase (খ): WAL often requires both redo and undo phases to recover the database state after a failure.

৩৫.
In NLP, which one is used to convert words into numerical vectors that capture semantic meaning?
  1. Tokenization.
  2. Word embeddings.
  3. Stemming.
  4. POS tagging.
ব্যাখ্যা

The technique used in NLP to convert words into numerical vectors that capture semantic meaning is Word embeddings.

খ) Word embeddings.

Explanation: 
Word embeddings (like Word2Vec, GloVe, or FastText) are dense, low-dimensional vector representations of words. Their main feature is that they map words with similar meanings to vectors that are close together in the vector space. This allows machine learning models to understand the semantic and contextual relationships between words.

The other options are fundamental but serve different purposes:

Tokenization (ক): The process of breaking down text into smaller units (tokens), which are usually words or subwords. It's the first step before embedding.
Stemming (গ): A process that reduces words to their root or stem (e.g., "running" → "run"), often resulting in an actual word. Its primary goal is to reduce inflected forms of a word.
POS tagging (ঘ): (Part-of-Speech Tagging) The process of marking up a word in a text as corresponding to a particular part of speech (e.g., noun, verb, adjective). It focuses on syntactic, not semantic, meaning.

৩৬.
In software testing, which technique is called structural testing?
  1. Black box
  2. Regression 
  3. System 
  4. White box
ব্যাখ্যা

The software testing technique that is called structural testing is White box testing.

ঘ) White box
 
Explanation: 
White Box Testing (or Structural Testing): This method examines the internal structure and logic of the code. The term "structural" refers to the focus on the code's structure, flow, and internal design. Testers have full visibility into the code and aim to cover internal paths, loops, and conditions.
Black Box Testing: This is also known as functional testing. It focuses on the external behavior of the software from the user's perspective, without any knowledge of the internal code structure.
Regression Testing: This is a type of testing (not a technique name) used to ensure that a recent code change has not adversely affected existing features.
System Testing: This is a level of testing where the entire integrated system is tested to verify it meets the specified requirements.

৩৭.
Convert 101.1012 into a decimal number.
  1. 4.525 
  2. 4.535 
  3. 5.515 
  4. 5.625
ব্যাখ্যা

৩৮.
The characteristic polynomial of adjacency matrix is used to study:
  1. chromatic number directly
  2. Graph spectra
  3. connectivity only 
  4. planarity
ব্যাখ্যা

The characteristic polynomial of adjacency matrix is used to study Graph spectra.

খ) Graph spectra

৩৯.
The number of states in a 4-bit BCD ripple counter is:
  1. 4
  2. 10
  3. 16
  4. 5
ব্যাখ্যা

খ) 10

Explanation: 
BCD (Binary-Coded Decimal) Counter: A BCD counter is a specialized type of counter designed to count from 0 (binary 0000) to 9 (binary 1001) and then immediately reset back to 0. This means it cycles through the 10 decimal digits.
Number of States: The number of states in a counter is the total number of unique binary patterns (counts) it cycles through before repeating. For a BCD counter, this is 10.
Ripple Counter: The "ripple" term simply describes the type of internal clocking used (asynchronous), but it doesn't change the count sequence or the number of states.
Comparison to a standard 4-bit counter: A standard 4-bit binary counter has 24=16 states (counting from 0 to 15). The BCD counter is modified with extra logic (like feedback to clear the flip-flops) to skip the 6 states from 10 to 15.

৪০.
A Hamiltonian Cycle must visit:
  1. all edges once
  2. some vertices 
  3. only leaves
  4. All vertices once
ব্যাখ্যা

A Hamiltonian Cycle must visit All vertices once.

ঘ) All vertices once

Explanation: 
A Hamiltonian Cycle in a graph G (V, E) is a cycle that visits every vertex in the graph exactly once, except for the starting and ending vertex, which are the same.
Hamiltonian Path refers to a path that visits every vertex exactly once (but does not return to the start).
Eulerian Cycle (often confused with Hamiltonian Cycle) is a cycle that visits every edge exactly once.

৪১.
How many address lines are multiplexed with the data lines in Intel 8086
  1. 8
  2. 32
  3. 64
  4. 16
ব্যাখ্যা

The number of address lines multiplexed with the data lines in the Intel 8086 microprocessor is 16.

ঘ) 16

Explanation
The Intel 8086 microprocessor has a 20-bit address bus and a 16-bit data bus.

To save pins on the chip, some of the lower-order address lines are multiplexed (share the same physical pins) with the data lines:

Data lines: D0​ to D15​ (16 bits)
Multiplexed Address lines: A0​ to A15​ (16 bits)
These 16 pins (AD0​ to AD15​) serve a dual purpose: they carry the lower 16 bits of the memory address during the first part of a bus cycle, and then carry the 16 bits of data during the later part of the cycle.

The remaining 4 high-order address lines (A16​ to A19​) are multiplexed with status signals, but the question specifically asks about the address lines multiplexed with the data lines.

৪২.
____________gate is known as "Anticoincidence".
  1. NOR
  2. XNOR
  3. XOR
  4. OR
ব্যাখ্যা

The “Anticoincidence” gate is the XOR (Exclusive OR) gate.

কারণ —

XOR গেট তখনই আউটপুট 1 দেয়, যখন দুটি ইনপুট ভিন্ন হয়।
অর্থাৎ, ইনপুট দুটি “coincide” না করলে আউটপুট 1 হয় — তাই একে বলে Anti-coincidence gate।

৪৩.
Which C operator below has right-to-left associativity? 
  1. *
  2. +
  3. ?
  4. =
ব্যাখ্যা

The C operators below that have right-to-left associativity are the conditional operator (?:) and the assignment operator (=).

Since you must choose one from the options:

The assignment operator is:

ঘ) =
The conditional operator is:

গ) ?
Both (ternary conditional) and = (simple assignment) have right-to-left associativity. Since both (g) and (gh) are correct, and this appears to be a multiple-choice question where only one answer can be selected, I'll provide the associativity for all options for clarity. In many contexts, assignment operators are the most common examples of right-to-left associativity.

Also, precedence note: ?: has higher precedence than =, so a = b? c : d means a = (b ? c : d).

৪৪.
A símple connected planar graph with V≥ 3 vertices, E edges, and F faces satisfies: 
  1. E ≤ 3V - 6
  2.  E ≥ 3V 
  3. V + E = F
  4. F ≤ V - 2
ব্যাখ্যা

৪৫.
In Java, which keyword prevents a method from being overridden?
  1. const 
  2. final 
  3. static 
  4. synchronized
ব্যাখ্যা

The keyword in Java that prevents a method from being overridden is final.

খ) final

৪৬.
Which principle is followed during user interface design?
  1. High coupling
  2. User-centered design
  3. Sequential processing
  4. Cost optimization
ব্যাখ্যা

The main principle followed during user interface (UI) design is User-centered design.

খ) User-centered design

Understanding User-Centered Design (UCD)
User-centered design (UCD) is an iterative design philosophy that places the user and their needs at the center of the development process. The primary goal is to create highly usable and accessible $\text{UI}$s by deeply understanding who the users are, what their goals are, and the context in which they will use the product.

This principle contrasts with the other options:

High coupling (ক): This is a term from software engineering that refers to dependencies between components. In design, high coupling is usually a negative trait, making systems rigid and difficult to maintain.
Sequential processing (গ): This describes how a computer executes tasks (one after the other). It is an implementation detail, not a design philosophy for the user interface.
Cost optimization (ঘ): While important for business, cost optimization is a business goal, not the primary principle guiding the quality and effectiveness of the UI itself. A good UI is a result of UCD, even if it may impact cost.

৪৭.
Which one describes a pure virtual function in C++?
  1.  virtual void f() = 0
  2.  virtual void f();
  3. void f()=0;
  4.  pure virtual f();
ব্যাখ্যা

The correct syntax that describes a pure virtual function in C++ is:

ক) virtual void f() = 0;

Pure Virtual Functions in C++
A pure virtual function is a virtual function in a base class that is declared by using the special syntax = 0 instead of defining a function body.

virtual: Declares the function as virtual, enabling dynamic dispatch (polymorphism).
void f(): The function's signature.
= 0: The key part that makes it pure virtual. This signifies that the function has no implementation in the base class and must be defined (overridden) by any concrete derived class.

Key Consequence
Any class that contains at least one pure virtual function is considered an abstract class. An abstract class cannot be instantiated (you cannot create objects of that class).

The other options are incorrect:

খ) virtual void f();: This is a virtual function, but it is not pure. It must still have an implementation defined somewhere (either in the base class or a derived class, though the base class version is rarely called).
গ) void f()=0;: This is missing the crucial virtual keyword. Without virtual, the = 0 syntax is meaningless and would result in a compiler error.
ঘ) pure virtual f();: This is not valid C++ syntax.

৪৮.
Von Neumann architecture uses__________memory for data and instructions.
  1. separate 
  2. same 
  3. no 
  4. None of the above
ব্যাখ্যা

he Von Neumann architecture uses same memory for data and instructions.

খ) same

Von Neumann Architecture: 
The Von Neumann architecture, also known as the stored-program concept, is defined by its use of a single, shared memory space for both program instructions and the data that those instructions operate on.

Key Feature (The Bottleneck): This design is characterized by the Von Neumann bottleneck, where the CPU must use the same single bus to fetch both an instruction and data from memory, which can limit the system's processing speed.
Contrast: It contrasts with the Harvard architecture, which uses separate memory spaces and separate buses for instructions and data, allowing simultaneous fetching.

৪৯.
Bitmap indexes are particularly well-suited for:
  1. High-cardinality columns
  2. Low-cardinality columns
  3.  large text fields
  4. JSON
ব্যাখ্যা

Bitmap indexes are particularly well-suited for:

খ) Low-cardinality columns
 
Why Bitmap Indexes Excel on Low Cardinality Columns
Cardinality refers to the number of distinct values in a column relative to the number of rows.

A low-cardinality column is one with a small, fixed number of distinct values, such as:
Gender (M, F, Other)
Marital Status (Single, Married, Divorced)
Boolean Flags (True, False)

The Mechanism
For a low-cardinality column, a bitmap index creates a separate bit vector (or bitmap) for each unique value.

Bitmaps: Each bit in the vector corresponds to a row in the table.

A '1' at position n means the nth row has that value.
A '0' means the nth row does not have that value.
Bitwise Operations: When a query involves multiple conditions (e.g., WHERE Gender = 'F' AND Status = 'Married'), the database can combine the relevant bitmaps using extremely fast bitwise AND and OR operations. This process quickly identifies the resulting set of rows without having to scan large portions of the data.

Limitations for Other Columns
High-cardinality columns (ক): If a column has many unique values (like a username or a primary key ID), the bitmap index would require a vast number of individual bitmaps—one for every distinct value. This would make the index extremely large and inefficient in terms of both space and query performance. B-tree indexes are better suited for high-cardinality data.
Large text fields (গ): This type of data (like articles or product descriptions) requires full-text indexes for efficient searching. Bitmap indexes are designed for categorical filtering, not free-form text search.
JSON (ঘ): JSON data is typically indexed using specialized JSON indexes that parse and index key/value pairs within the JSON structure.

৫০.
A tree with K leaves has at least___________ vertices.
  1. K
  2. K-1
  3. K+1
  4. 2K
ব্যাখ্যা

A tree with K leaves has at least K+1 vertices.

গ) K+1
 
Explanation
The minimum number of vertices a tree can have for a given number of leaves occurs when the tree is a path graph (a straight line of vertices).

In a path graph:

The vertices at the two ends are the leaves.
The internal vertices are non-leaves.
If a path graph has V vertices, it will have exactly 2 leaves (unless V=1, which has 1 leaf).

To have a tree with K leaves, the smallest number of vertices V is achieved by ensuring that K−2 of the leaves are "extra" branches off a main path, or by minimizing the non-leaf nodes.

Consider the minimum case, the star graph SK​, which has one central vertex connected to K other vertices.

Leaves: K (the outer vertices).
Non-Leaves (Center): 1 (the central vertex).
Total Vertices: K+1.
Since a tree must have at least two leaves (unless it is a single vertex), the relationship is always:

V≥L+1
Where:

V is the number of vertices.
L is the number of leaves.
Thus, a tree with K leaves has at least K+1 vertices.

৫১.
Which case a suffix tree is useful for?
  1.  Fast string search
  2.  Minimum cut 
  3. Sorting numbers
  4.  Graph coloring
ব্যাখ্যা

The case where a suffix tree is particularly useful is:

ক) Fast string search
Suffix Tree Utility 
A suffix tree is a highly efficient data structure used in computer science for processing strings. It is a tree where all suffixes of a given string are explicitly stored and indexed.

Core Use Case
Its primary advantage lies in performing fast string search and pattern matching, specifically in these areas:

Substring Search: Finding all occurrences of a pattern string P within a text T in time complexity that is proportional only to the length of the pattern (i.e., O(∣P∣)), independent of the size of the text T.
Longest Repeated Substring: Identifying the longest substring that occurs at least twice in the string.
Longest Common Substring: Finding the longest substring common to two or more strings.
Shortest Unique Substring: Determining the shortest substring that appears only once in a string.

Why the Other Options are Incorrect
Minimum cut (খ): This is a problem in graph theory typically solved using algorithms like the Max-Flow Min-Cut theorem (e.g., Edmonds-Karp or Dinic's algorithm), not suffix trees.
Sorting numbers (গ): This is handled by standard sorting algorithms like Merge Sort, Quick Sort, or specialized sorts like Radix Sort.
Graph coloring (ঘ): This is a combinatorial optimization problem in graph theory, often solved using backtracking, heuristics, or specialized polynomial-time algorithms for specific graph classes.

৫২.
The size of the IPV6 address is: 
  1. 128 bits
  2. 4 bits
  3. 32 bits
  4. None of the above
ব্যাখ্যা

The size of the IPv6 address is:

ক) 128 bits
IPv6 vs. IPv4 Size

The Internet Protocol version 6 (IPv6) uses a 128-bit address space. This is a massive increase in size compared to its predecessor, IPv4, which uses a 32-bit address.

৫৩.
__________acts as an active component in a circuit.
  1. Register 
  2. Transistor 
  3. Inductor
  4. Capacitor
ব্যাখ্যা

The component that acts as an active component in a circuit is the Transistor.

খ) Transistor

Active vs. Passive Components

Electronic components are broadly classified into two categories based on their function in a circuit:

1. Active Components
These components can control, generate, or amplify electrical power (voltage or current). They require an external power source to function and are responsible for the main processing of signals.

Transistor: The classic example. It can amplify a weak signal or act as a high-speed electronic switch.

2. Passive Components
These components cannot introduce net power gain into a circuit. They can only store, dissipate, or process energy (like resistance, capacitance, or inductance) without control.

Resistor (Register): Dissipates energy (heat).
Inductor: Stores energy in a magnetic field.
Capacitor: Stores energy in an electric field.

৫৪.
___________is not used as a performance metric for a regression model.
  1. R2
  2. RMSE 
  3. Recall 
  4. MAE
ব্যাখ্যা

Recall
 
Performance Metrics in Machine Learning

Regression Model Metrics 

Regression models predict a continuous numerical value (e.g., house price, temperature). Their metrics measure the difference or error between the predicted value and the actual value.

R2 (Coefficient of Determination) (क): Measures the proportion of the variance in the dependent variable that is predictable from the independent variables. A value closer to 1.0 is better.
RMSE (Root Mean Square Error) (ख): Measures the average magnitude of the errors, where the errors are first squared before averaging. This penalizes large errors more heavily.
MAE (Mean Absolute Error) (घ): Measures the average magnitude of the errors without considering their direction. It is the average of the absolute differences between prediction and actual observation.

৫৫.
_______________ algorithm is the most prominent method to avoid deadlock.
  1. Banker's 
  2. Elevator 
  3. Karin's 
  4. None of the above
ব্যাখ্যা

ক) Banker’s

Banker's Algorithm Explained 
The Banker's algorithm is a deadlock avoidance algorithm used in operating systems. It was developed by Edsger Dijkstra and works by controlling resource allocation to ensure the system remains in a safe state.

How it Works
Safety Check: Before granting a process's request for resources, the algorithm simulates the allocation.
Safe State: It checks if, after the allocation, there is a safe sequence—a sequence of all processes that allows every process to finish execution (by getting its remaining needed resources) without causing a deadlock.
Decision: The request is only granted if the resulting state is guaranteed to be a safe state. If granting the request leads to an unsafe state (where a deadlock might occur), the process is forced to wait.
This method requires that each process declare the maximum resources it may ever need before it begins execution

৫৬.
The average search time for a hash table using separate chaining with a load factor α is..
  1.  O(1+α) 
  2. O(α2
  3.  O(log α)
  4.  O(α)
ব্যাখ্যা

ক) O(1 + α)
To determine the average search time for a hash table using separate chaining with a load factor α, let's analyze the problem step-by-step:

Separate Chaining: In a hash table with separate chaining, collisions are resolved by storing elements that hash to the same slot in a linked list (or similar structure) at that slot.
Load Factor α: The load factor is defined as α = n/m, where n is the number of elements stored in the hash table, and m is the number of slots (or buckets) in the table.
Average Search Time: The search time depends on the time to locate the appropriate slot (via the hash function) and the time to traverse the linked list at that slot to find the desired element (or confirm it’s not there).

Analysis:
Hash Function: Assuming a good hash function with uniform distribution, the expected number of elements in each slot is n/m = α, since n elements are distributed across m slots.
Search in a Slot:In separate chaining, each slot contains a linked list. The average number of elements per list is α.
For a successful search (finding an element), the expected number of comparisons is proportional to the average length of the list, which is α. Specifically, in a linked list of length k, the average number of comparisons is approximately k/2 for a successful search.
For an unsuccessful search (element not in the table), you may need to traverse the entire list, which has an expected length of α.
In both cases, the dominant factor is the list length, so the average number of comparisons is O(α).
Hashing Overhead: Computing the hash function and accessing the slot is typically O(1), assuming the hash function is efficient and the table is array-based.
Total Time: The total average search time is O(1) (for hashing to the slot) plus O(α) (for traversing the linked list), which simplifies to O(1 + α).
Simplification:
When α is small (e.g., α < 1), the search time is close to O(1), as lists are short.
When α is large, the O(α) term dominates, but the expression O(1 + α) captures both the constant hashing time and the list traversal time.
Comparing Options:
ক) O(1 + α): This matches our analysis, as it accounts for the constant-time hash computation and the linear dependence on α for list traversal.
খ) O(α²): This would imply quadratic growth, which doesn’t align with separate chaining, as the list traversal is linear in α, not quadratic.
গ) O(log α): Logarithmic time might apply to balanced tree-based structures, but separate chaining uses linked lists, so this is incorrect.
ঘ) O(α): This omits the constant hashing time. While O(α) may dominate for large α, O(1 + α) is more precise for all cases, especially when α is small.
Conclusion:
The average search time for a hash table using separate chaining with load factor α is O(1 + α), as it captures both the hashing step and the expected list traversal time.

The correct option is:

ক) O(1 + α)



৫৭.
Which of the following is not a main component of a CPU?
  1. Control unit
  2. ALU
  3. Cache 
  4. Registers
ব্যাখ্যা

The component that is not a main component of the Central Processing Unit (CPU) is Cache.

গ) Cache

Components of a CPU vs. Memory Hierarchy

While Cache memory is crucial for the CPU's performance and is physically very close to the CPU core, it's technically part of the computer's memory hierarchy, whereas the other three are the fundamental operational units within the CPU's core:

৫৮.
Which of the following is true for the Superposition Theorem?
  1. Duality 
  2. Linearity 
  3. Reciprocity 
  4. Non linearity
ব্যাখ্যা

The property that must be true for the Superposition Theorem is Linearity.


 

খ) Lineariy
 
 

Explanation of Superposition Theorem
 

The Superposition Theorem is a core principle in circuit analysis that simplifies circuits with multiple independent sources.

Requirement: The theorem is only applicable to linear circuits (circuits containing only linear elements like resistors, capacitors, and inductors, and linear sources).
Principle: It states that the current or voltage at any point in a linear circuit is the sum of the currents or voltages produced by each independent source acting alone. To find this sum, you turn off all but one independent source at a time (voltage sources are replaced by short circuits, and current sources are replaced by open circuits).
The term Linearity fundamentally underpins the entire theorem, as it allows the effects of multiple sources to be algebraically added. Circuits containing non-linear elements (like diodes or transistors) cannot be analyzed using this theorem.

The property that must hold true for the Superposition Theorem is Linearity.

খ) Linearity
 
 

Superposition Theorem and Linearity
 

The Superposition Theorem states that in any linear circuit having more than one independent source, the current or voltage through any element is the algebraic sum of the currents or voltages produced by each independent source acting alone (with all other independent sources turned off).

 

Key Point
 

Linearity is the necessary and sufficient condition for the Superposition Theorem to be applicable. A circuit is linear if it is composed of only linear components (resistors, linear capacitors, and linear inductors) and linear dependent sources.
Linear components are those where the relationship between voltage (V) and current (I) can be described by a straight line passing through the origin (e.g., Ohm's Law: V=IR).
 

Why the Other Options are Incorrect
 

Duality (ক): A concept where a circuit can be transformed into another with dual quantities (e.g., voltage and current). It's a circuit property, not a prerequisite for Superposition.
Reciprocity (গ): A theorem that applies to certain linear networks where the ratio of voltage in one part to the current in another remains the same when their positions are swapped. It requires linearity but is a separate theorem.
Non-linearity (ঘ): If a circuit contains non-linear components (like diodes or transistors), the Superposition Theorem cannot be used.

৫৯.
__________ is the modulation technique used in the GSM system.
  1. MSK 
  2. FSK 
  3. ASK 
  4. GMSK
ব্যাখ্যা

ঘ) GMSK

Gaussian Minimum Shift Keying (GMSK)
 

GMSK stands for Gaussian Minimum Shift Keying. It is a form of digital frequency modulation and is the standard modulation scheme used in 2G GSM cellular networks.

Key Characteristics:
 

Constant Envelope: GMSK is a constant-envelope modulation technique, meaning the amplitude of the carrier wave remains constant.
Power Efficiency: This constant envelope allows for the use of highly efficient, non-linear power amplifiers in the mobile phone, which is a major reason why GSM cell phones had good battery life.
Spectral Efficiency: It is derived from Minimum Shift Keying (MSK) but uses a Gaussian filter to smooth the phase transitions. This smoothing reduces the signal's spectral side-lobes, which minimizes interference with signals in adjacent frequency channels. This property makes GMSK highly spectrally efficient, crucial for cellular systems.


 The other options are related but incorrect:

MSK (Minimum Shift Keying): GMSK is based on MSK, but MSK itself is not used in GSM because it produces wider side-lobes (more out-of-band energy) than GMSK.
FSK (Frequency Shift Keying): GMSK is a special, filtered type of FSK (specifically, Continuous Phase Frequency Shift Keying, CPFSK), but the specific GSM technique is GMSK.
ASK (Amplitude Shift Keying): This is a simple, older modulation technique that is not used in GSM.

৬০.
______ ensures that data cannot be altered in a blockchain.
  1. Consensus mechanism.
  2. Smart contract.
  3. Immutability.
  4. Distributed ledger.
ব্যাখ্যা

গ) Immutability
To determine what ensures that data cannot be altered in a blockchain, let’s analyze the options based on the fundamental properties of blockchain technology:

Blockchain Overview: A blockchain is a decentralized, distributed ledger that records transactions in a series of blocks, linked cryptographically. A key feature is that once data is added to the blockchain, it is extremely difficult to alter, ensuring data integrity.
Evaluating the Options:ক) Consensus Mechanism: The consensus mechanism (e.g., Proof of Work, Proof of Stake) is the process by which nodes in the blockchain network agree on the validity of transactions and the state of the ledger. It ensures that only valid transactions are added and prevents double-spending. While critical for maintaining the integrity of new data, it does not directly prevent alteration of existing data in the blockchain.
খ) Smart Contract: Smart contracts are self-executing programs stored on the blockchain that automate transactions based on predefined rules. They facilitate trustless agreements but do not inherently prevent data alteration. They operate on top of the blockchain’s data structure and rely on its security properties.
গ) Immutability: Immutability refers to the property that once data is written to the blockchain (i.e., a block is added and confirmed), it cannot be changed without altering subsequent blocks and gaining consensus from the network. This is achieved through cryptographic hashing (each block contains a hash of the previous block) and the distributed nature of the ledger, making unauthorized changes computationally infeasible. Immutability is the direct mechanism that ensures data cannot be altered.
ঘ) Distributed Ledger: A distributed ledger means the blockchain is stored across many nodes, ensuring no single point of failure or control. While this contributes to security and transparency, it is not the primary mechanism preventing data alteration. It supports immutability by requiring network-wide agreement to change data, but immutability itself is the core property.
Reasoning:Immutability is ensured by:Cryptographic Hashing: Each block’s hash depends on its data and the previous block’s hash. Changing a block’s data would require recomputing its hash and the hashes of all subsequent blocks, which is computationally expensive.
Consensus: Altering a block requires convincing the majority of the network (e.g., 51% in Proof of Work), which is impractical in large, decentralized blockchains like Bitcoin or Ethereum.
Distributed Nature: The ledger’s copies across nodes make it difficult to alter data without network-wide agreement.
While the consensus mechanism and distributed ledger support immutability, immutability is the specific property that ensures data cannot be altered once recorded.
Smart contracts are unrelated to preventing data alteration; they use the blockchain’s immutability to ensure reliable execution.
Thus, the correct option is:

গ) Immutability

৬১.
Which key is known as the minimal super key? 
  1.  Primary key
  2.  Secondary key
  3. Foreign key
  4. Candidate key
ব্যাখ্যা

সঠিক উত্তর: ঘ) Candidate key
A super key is any set of attributes that can uniquely identify a record.
A minimal super key is a super key with no unnecessary attributes — i.e., removing any attribute makes it lose its uniqueness.

That minimal super key is called a candidate key.

সঠিক উত্তর:
ঘ) Candidate key

৬২.
In the worst case, the number of comparisons in the Insertion sort algorithm is:
  1. n(n+1)
  2. n log n
  3. n(n-1)/2 
  4. n(n-1)/4
ব্যাখ্যা

To determine the worst-case number of comparisons in the Insertion Sort algorithm, let’s analyze the algorithm and compute the comparisons systematically.

Insertion Sort Overview: Insertion Sort builds a sorted portion of the array one element at a time. For each element, it compares it with elements in the sorted portion (from right to left) to find its correct position, shifting larger elements as needed. The algorithm processes elements from index 1 to n-1, where n is the array size.
Worst Case: The worst case occurs when the array is in reverse order (e.g., [n, n-1, ..., 2, 1]). In this scenario, each element must be compared with all elements in the sorted portion before it is inserted at the beginning.
Step-by-Step Analysis:For the element at index 1 (second element), it is compared with the element at index 0 (1 comparison).
For the element at index 2, it is compared with elements at indices 1 and 0 (2 comparisons).
For the element at index 3, it is compared with elements at indices 2, 1, and 0 (3 comparisons).
...
For the element at index n-1, it is compared with elements at indices n-2, n-3, ..., 0 (n-1 comparisons).
 

৬৩.
There are 32 kilo lines of code of an organic software. The normal development time (in months) using COCOMO model:
  1. 6
  2. 7
  3. 14
  4. 21
ব্যাখ্যা







৬৪.
A zombie process in Unix is:
  1. a process whose parent has not acknowledged its exit status
  2. a process waiting for l/O 
  3. A process stuck In deadlock 
  4. A process in an infinite loop
ব্যাখ্যা

Explanation
The correct answer is ক) a process whose parent has not acknowledged its exit status.

A zombie process (sometimes called a defunct process) is a process that has completed its execution (terminated), but still has an entry in the process table because its parent process hasn't executed the wait() system call to read its exit status.
The parent process needs to perform this action, often called "reaping," to fully clean up the terminated child process's entry from the process table.
Once the exit status is read, the zombie process is completely removed from the system.

Why the other options are incorrect:
খ) a process waiting for I/O: This is typically a process in a blocked or waiting state, not a zombie state.
গ) A process stuck in deadlock: A process in deadlock is waiting indefinitely for a resource held by another process; this is a separate issue from a zombie state.
ঘ) A process in an infinite loop: This is a running process that is consuming CPU resources, but it has not terminated and thus is not a zombie.

৬৫.
If x, y, z are inputs to a Full Adder, the logic expression of carry out is: 
  1.  x + y + z 
  2.  xy + xz + yz
ব্যাখ্যা

The logic expression for the Carry Out (Cout​) of a Full Adder with inputs x, y (the bits to be added) and z (Cin​, the carry-in) is:

Cout​=xy+xz+yz

Explanation

The Carry Out (Cout​) bit in a full adder is a '1' whenever an addition of the three input bits (x,y,z) results in a value of 2 or 3 (i.e., when at least two of the three inputs are 1).

The expression can be read as:

A carry is generated if x AND y are both 1 (xy), OR
x AND z are both 1 (xz), OR
y AND z are both 1 (yz).
This is the standard, simplified Sum-of-Products form (derived from a Karnaugh map or Boolean algebra simplification of the truth table minterms).

৬৬.
Which cryptographic algorithm is asymmetric? 
  1. DES 
  2. AES 
  3. Triple DES
  4. RSA
ব্যাখ্যা

orrect Answer: ঘ) RSA

 
Explanation:
Cryptographic algorithms are of two main types:

Symmetric Key Cryptography:

Uses one key for both encryption and decryption.
The sender and receiver share the same secret key.
Examples:

DES (Data Encryption Standard)
AES (Advanced Encryption Standard)
Triple DES (3DES)
Asymmetric Key Cryptography:

Uses two keys:

A public key (for encryption)
A private key (for decryption)
Even if someone knows the public key, they cannot decrypt without the private key.
Example:

RSA (Rivest–Shamir–Adleman) algorithm
 
 Source / Reference:
Book: William Stallings, "Cryptography and Network Security," 8th Edition
NIST (National Institute of Standards and Technology) Cryptographic Algorithm Summary:
 https://nvlpubs.nist.gov/nistpubs/FIPS/NIST.FIPS.197.pdf
RSA original paper: Rivest, Shamir, Adleman (1978) — “A Method for Obtaining Digital Signatures and Public-Key Cryptosystems”

৬৭.
The execution time (in sec) to execute 10^9 instructions with CPI = 2 and clock frequency = 1GHz is:
  1. 0.5
  2. 1
  3. 2
  4. 3
ব্যাখ্যা

Correct Answer:
গ) 2 seconds

 Step-by-Step Explanation:
Given:
- Number of instructions = 10^9
- CPI = 2
- Clock frequency = 1 GHz = 10^9 cycles/sec

Step 1: Total number of clock cycles
= Number of Instructions × CPI
= 10^9 × 2 = 2 × 10^9 cycles

Step 2: Execution Time
= Total Cycles / Clock Frequency
= (2 × 10^9) / (10^9) = 2 seconds

Concept Recap:
CPI (Clock Cycles Per Instruction): average number of cycles each instruction takes.

Execution Time Formula:
CPU Time = (Instruction Count × CPI) / Clock Rate

 Source / Reference:

- David A. Patterson and John L. Hennessy, "Computer Organization and Design," 5th Edition
- Formula: CPU Time = (IC × CPI) / Clock Rate

৬৮.
Process control block includes:
  1.  Process ID
  2.  Process state
  3. program counter
  4. all of the above
ব্যাখ্যা

ঘ) all of the above

The Process Control Block (PCB) in an operating system contains information about a process, including:

Process ID: A unique identifier for the process.
Process state: The current state of the process (e.g., ready, running, waiting).
Program counter: The address of the next instruction to be executed.
Thus, the PCB includes all of these components.

৬৯.
IfA ⊆ B, then A∩B:
  1. A
  2. B
  3. A∪B
  4. Ø
ব্যাখ্যা

The correct option is ক) A.

If A⊆B (A is a subset of B), then the intersection of A and B, denoted as A∩B, is equal to the set A.

 

Explanation

Definition of Subset (A⊆B): This means that every element in set A is also an element in set B.
Definition of Intersection (A∩B): The intersection is the set of all elements that are common to both set A and set B.
Result: Since every element of A is also in B (by the subset condition), the elements common to both sets are simply all the elements of A.
If A={1,2,3} and B={1,2,3,4,5}
A⊆B is true.
A∩B={1,2,3}=A

৭০.
Basic difference between combinational and sequential circuits lies in:
  1. Feedback used
  2. Logic gates used
  3. Inputs
  4. None of the above
ব্যাখ্যা

he basic difference between combinational and sequential circuits lies in क) Feedback used.

Difference Between Combinational and Sequential Circuits

The most fundamental distinction between the two types of digital circuits is the presence of memory. This memory is implemented through a feedback path.

Combinational Circuits 

Output: Depends only on the current input values. 
Memory: No memory elements (no ability to store past states). 
Feedback: No feedback loop from output to input. 
Examples: Adders, Multiplexers, Decoders.
 
Sequential Circuits 

Output: Depends on both the current input values and the past input/output state (history). 
Memory: Contains memory elements (Flip-flops or Latches). 
Feedback: Uses a feedback path to send the current state (previous output) back to the input of the combinational part, which creates the memory function. 
Examples: Flip-flops, Counters, Registers.


The memory in a sequential circuit, which allows it to depend on its past state, is structurally created by routing the output back as an input—this is the feedback mechanism.

৭১.
Which of the following runs the fastest?
  1. O(log n) 
  2. O(n) 
  3. O(n log n)
  4. O(√n)
ব্যাখ্যা

Answer : ক) O(log n)
To determine which algorithm runs the fastest, we compare the time complexities provided in the options:

ক) O(log n): Logarithmic time complexity, which grows very slowly as n n n increases. It is typical for algorithms like binary search.
খ) O(n): Linear time complexity, where the runtime grows proportionally with n n n. Examples include linear search.
গ) O(n log n): Linearithmic time complexity, common in efficient sorting algorithms like QuickSort or MergeSort. It grows faster than linear but slower than quadratic.
ঘ) O(√n): Square root time complexity, which grows slower than linear but faster than logarithmic. It is less common but appears in algorithms like some number theory problems.


৭২.
___________ equation describes the wave nature of particles.
  1. Schrödinger 
  2. Maxwell's 
  3. Newton's wave 
  4. Gauss-Jordan
ব্যাখ্যা

ক) Schrödinger

The Schrödinger equation describes the wave nature of particles in quantum mechanics. It is a fundamental equation that governs how the wave function of a quantum system evolves over time, capturing the wave-particle duality of matter.

Maxwell's equations describe electromagnetic waves and fields, not the wave nature of particles.
Newton's wave is not a standard term in physics; Newton's laws describe classical mechanics.
Gauss-Jordan refers to a method for solving linear equations, not related to wave-particle duality.

৭৩.
Calculate the physical address in 8086 with segment and offset addresses 2000H and 0020H, respectively: 
  1. 200200H 
  2. 20020H × 16 
  3. 20020H
  4. 20020H + 0020H
ব্যাখ্যা

Answer:
গ) 20020H
The correct physical address in the 8086 microprocessor is calculated by using the formula:

Physical Address=(Segment Address×10H)+Offset Address
This is equivalent to shifting the 16-bit Segment Address left by four bits and then adding the 16-bit Offset Address.

Given:

Segment Address (SG) = 2000H
Offset Address (OA) = 0020H
Calculation:

Shift the Segment Address:
2000H×10H=20000H
(Note: Multiplying by 10H is the same as appending a '0' to the hexadecimal number, which is a 4-bit left shift).

Add the Offset Address:

Physical Address=20000H+0020H
Perform Hexadecimal Addition:

20000H
+ 0020H
20020H
The physical address is 20020H.

৭৪.
Identify wrong one w.r.t. IEEE standards.
  1. 802.5 [Ethernet]
  2. 802.11 [WLAN]
  3. 802.16 [WiMAX]
  4. 802.15.4 [LR-WPAN]
ব্যাখ্যা

The incorrect option with respect to IEEE standards is:

ক) 802.5 [Ethernet]

Explanation:
IEEE 802.5: This standard defines Token Ring networks, not Ethernet. Ethernet is defined by the IEEE 802.3 standard. Therefore, associating 802.5 with Ethernet is incorrect.
IEEE 802.11: Correctly associated with WLAN (Wireless Local Area Network), commonly known as Wi-Fi.
IEEE 802.16: Correctly associated with WiMAX (Worldwide Interoperability for Microwave Access), a broadband wireless access technology.
IEEE 802.15.4: Correctly associated with LR-WPAN (Low-Rate Wireless Personal Area Network), used in protocols like Zigbee.

৭৫.
Key disadvantage of the sequential waterfall model is:
  1. Lack of documentation
  2. Overlapping phases
  3. Lack of client feedback
  4. Too many prototypes
ব্যাখ্যা

The key disadvantage of the sequential waterfall model among the choices provided is (গ) Lack of client feedback.

Explanation
The sequential waterfall model is a linear approach where each phase must be completed and locked down before the next phase begins.

Lack of client feedback (ג): This is a major drawback because the client or end-user typically doesn't see a working version of the product until late in the development cycle (often near or at the end of the project). If requirements have changed or the client realizes the product isn't what they truly need, making late-stage changes is difficult, expensive, and time-consuming due to the rigid, sequential nature of the model.

Lack of documentation (ক): This is not a disadvantage; the waterfall model is actually characterized by its strong emphasis on creating comprehensive documentation (e.g., requirements, design documents) at the end of each phase.

Overlapping phases (খ): This is not a disadvantage; in the classic waterfall model, phases are strictly sequential and do not overlap. The lack of phase overlap is often cited as a contributing factor to the model's rigidity.

Too many prototypes (ঘ): This is not a disadvantage; the waterfall model typically does not involve multiple prototypes. Prototyping is characteristic of other models like the Prototyping Model or is used heavily in iterative methods like Agile.

৭৬.
Frequency range of the VHF band is:
  1. 3-30 MHz
  2. 30-300 MHz
  3. 300 MHz - 3 GHZ 
  4. 3 GHz - 30 GHz
ব্যাখ্যা

The frequency range of the VHF (Very High Frequency) band is:

খ) 30-300 MHz

৭৭.
Which one of the following is true for Entropy?
  1. Σi, Pi log2 Pi
  2. i, log2 Pi
  3. - Σi, Pi log2 Pi
  4. Σi, Pi logPi ⁄ (1+Pi)
ব্যাখ্যা

The correct formula for entropy (in the context of information theory, as introduced by Shannon) is:

গ) - Σi, Pi log2 Pi



৭৮.
After RESET, 8086 starts from memory location:
  1. FFFF0H 
  2. 0FFFFH 
  3. 00000H 
  4. 00001H
ব্যাখ্যা

The correct answer is ক) FFFF0H.

Explanation 

After a hardware RESET signal, the Intel 8086 microprocessor initializes its segment and offset registers to specific values to determine the starting physical address (the Reset Vector): 

Code Segment Register (CS) is set to FFFFH.
Instruction Pointer (IP) is set to 0000H.


The correct answer is ক) FFFF0H.

Explanation
After a hardware RESET signal, the Intel 8086 microprocessor initializes its segment and offset registers to specific values to determine the starting physical address (the Reset Vector):

Code Segment Register (CS) is set to FFFFH.
Instruction Pointer (IP) is set to 0000H.

The 8086 calculates the 20-bit Physical Address by combining the segment and offset using the formula:

Physical Address=(Segment Register×10H)+Offset Register
Applying the reset values:

CS×10HSegment Base+IPPhysical Address​FFFFH×10HFFFF0H+0000HFFFF0H​​
Thus, the 8086 begins executing instructions from the physical memory location FFFF0H, which is 16 bytes below the maximum address (FFFFFH) of its 1MB address space. This location is typically where the System BIOS/ROM is mapped. 

৭৯.
A system has 4 processes and 3 resources. To avoid deadlock, the maximum number of processes that can be simultaneously executed is: 
  1. 3
  2. 2
  3. 1
  4. 4
ব্যাখ্যা

খ) 2

Explanation:
In operating systems, for a system with identical resources (assuming 3 instances of the same resource type) and processes that may each require up to 2 resources (a common assumption in such problems for worst-case deadlock analysis), deadlock can be guaranteed to be avoided if the number of resources r r r satisfies r≥n+1 , where n is the number of processes.

This comes from the worst-case scenario where each process holds 1 resource and waits for 1 more. To prevent a deadlock (where no resources are left to satisfy any process), there must be at least one extra resource available after each process holds 1.
Rearranging: n≤r−1 
Here, r=3  so n≤2 
If 3 or more processes are executed simultaneously, it's possible for each to hold 1 resource, leaving 0 remaining, resulting in a deadlock. Thus, the maximum to avoid deadlock is 2.

Why the other options are incorrect:
ক) 3: With 3 processes, each could hold 1 resource and wait for another, exhausting all 3 resources and causing deadlock.
গ) 1: This avoids deadlock but is not the maximum possible.
ঘ) 4: Even more prone to deadlock than 3 processes.

৮০.
As per maximum power transfer theorem, maximum power transfer occurs when:
  1. RL=0
  2. RL= RS
  3. RL= ∞
  4. RL=0 or ∞
ব্যাখ্যা

খ) RL​=RS​
The maximum power transfer theorem states that, for a DC voltage source with fixed internal resistance (RS​), maximum power is delivered to an external load (RL​) when the load resistance is equal to the source resistance.

Therefore, maximum power transfer occurs when:

 RL​=RS​

Why the other options are incorrect:
ক) RL = 0: If the load resistance is zero (short circuit), the power delivered to the load is zero because no voltage develops across a short circuit (P = V^2/RL ​).
গ) RL = ∞: If the load resistance is infinite (open circuit), no current flows, so the power delivered to the load is zero ( P = I^2 RL ​).
ঘ) RL = 0 or ∞: Both extremes result in zero power transfer, as explained above, so they cannot be conditions for maximum power transfer.
Thus, the correct condition is খ) RL = RS.

৮১.
Which one of the following is not a command /keyword in SQL?
  1. REMOVE 
  2. ORDER BY
  3. SELECT 
  4. WHERE
ব্যাখ্যা

The keyword that is not a standard command/keyword in SQL is ক) REMOVE.

REMOVE is not a valid SQL keyword.
To delete data or objects in SQL, the standard commands are:

DELETE (to remove rows from a table).
DROP (to remove an entire table, index, or database).
The other options are standard SQL keywords:

ORDER BY is used to sort the result-set of a query.
SELECT is used to retrieve data from a database.
WHERE is used to filter records and extract only those that fulfill a specified condition.

৮২.
The main disadvantage of TDM over FDM is:
  1. Higher BW requirement
  2. Noise immunity
  3. Complex Synchronization
  4. Limited frequency usage
ব্যাখ্যা

The main disadvantage of Time Division Multiplexing (TDM) over Frequency Division Multiplexing (FDM) is the requirement for Complex Synchronization. 

গ) Complex Synchronization

Explanation
TDM (Time Division Multiplexing) divides the total time available on a single channel into time slots, and each source gets the entire bandwidth for a specific, short duration. 

For the receiver to correctly separate and reconstruct the original signals, it must know exactly when each source's time slot starts and ends. This requires extremely precise and complex synchronization between the sender and the receiver's clocks. If synchronization is lost for even a moment (due to timing jitter or clock drift), the data stream can become completely garbled.

FDM (Frequency Division Multiplexing) divides the total available bandwidth into non-overlapping frequency bands, and each source gets its dedicated frequency band all the time. 

FDM relies on separating signals by frequency, which is an inherent property of the signal. It does not require the precise clock synchronization between the sender and receiver that TDM does.

Why the other options are incorrect:
Higher BW requirement (क): TDM is generally more bandwidth-efficient than FDM because it uses the entire channel bandwidth for a short period, and it doesn't waste bandwidth on guard bands (which FDM requires to prevent adjacent channel interference).
Noise immunity (খ): TDM is generally used for digital signals, which inherently offer better noise immunity than the analog signals typically used in FDM.
Limited frequency usage (घ): This is a confusing term. If it means TDM uses a single carrier frequency (which it does), that's not a disadvantage but part of its design. The total number of channels is limited by time, not frequency.

৮৩.
Channel capacity (in kbps) of band limited Gaussian channel (SNR=15,bandwidth=16 kHz) is:
  1. 32
  2. 64
  3. 18
  4. 128
ব্যাখ্যা

খ) 64 kbps




Verification:
The SNR is given as 15 (not in dB, as the options suggest a linear ratio since typical dB conversions yield much higher capacities).
log⁡2(16)=4  is exact, and multiplying by the bandwidth (16,000 Hz) gives 64,000 bps, which is 64 kbps.
Checking the Options:
ক) 32: Too low; does not match the calculation.
খ) 64: Matches the calculated value of 64 kbps.
গ) 18: Too low; does not match.
ঘ) 128: Too high; would require a higher SNR or bandwidth.
Thus, the channel capacity is:

খ) 64 kbps

৮৪.
____________method is often used to prove lower bounds in sorting. 
  1.  Recursion tree
  2. Master theorem
  3. Decision tree 
  4. Dynamic programming
ব্যাখ্যা

গ) Decision tree

Explanation:
To prove lower bounds in sorting algorithms, particularly comparison-based sorting algorithms, the decision tree method is commonly used. Here's why:

Decision Tree: In the context of comparison-based sorting, a decision tree models the sequence of comparisons made by an algorithm to sort a set of n n n elements. Each internal node represents a comparison between two elements, and the leaves represent the possible permutations of the input. The height of the decision tree gives the worst-case number of comparisons required. Since there are n! n! n! possible permutations for n  elements, the tree must have at least n!  leaves. The minimum height of a binary tree with n! n! n! leaves is ⌈log2​(n!)⌉, which is approximately Ω(nlog⁡n)  using Stirling's approximation. This establishes the lower bound for comparison-based sorting algorithms, proving that no such algorithm can sort in fewer than Ω(nlog⁡n) comparisons in the worst case.

৮৫.
For the symbol times of QPSK (TQ) and BPSK (TB), we have 
  1. TQ = 0.25TB 
  2. TQ = 4TB 
  3. TQ = 0.5TB
  4. TQ = 2TB
ব্যাখ্যা

ঘ) TQ​=2TB​

Explanation
The relationship between the symbol time of Quadrature Phase-Shift Keying (QPSK) and Binary Phase-Shift Keying (BPSK) is determined by the number of bits each modulation scheme transmits per symbol. The fundamental assumption is that both systems are transmitting at the same bit rate (Rb​).

Bits per Symbol (k):
BPSK (M=2 phases): It transmits kB​=log2​(2)=1 bit per symbol.

QPSK (M=4 phases): It transmits kQ​=log2​(4)=2 bits per symbol.

Symbol Rate (Rs​) vs. Bit Rate (Rb​): The relationship between the symbol rate (symbols/second) and the bit rate (bits/second) is:

Rb​=Rs​×k
For BPSK: Rb​=RsB​×1⟹RsB​=Rb​
For QPSK: Rb​=RsQ​×2⟹RsQ​=2Rb​​
Symbol Time (T) vs. Symbol Rate (Rs​): Symbol time is the reciprocal of the symbol rate: T=1/Rs​.

For BPSK: TB​=RsB​1​=Rb​1​

For QPSK: TQ​=RsQ​1​=Rb​/21​=Rb​2​

Conclusion: Substituting TB​ into the TQ​ equation:

TQ​=2×Rb​1​=2TB​
This means that to transmit the same number of bits per second, the symbol time of QPSK is twice that of BPSK because each QPSK symbol carries twice as much information (2 bits).

৮৬.
The power factor of a purely resistive load is:
  1. 1
  2. 0
  3. -1

ব্যাখ্যা

৮৭.
Which ML model employs backpropagation?
  1. MLP
  2. CNN 
  3. RNN
  4. All of the above
ব্যাখ্যা

ঘ) All of the above

Explanation:
Backpropagation (short for "backward propagation of errors") is a key algorithm used to train neural networks by computing gradients of a loss function with respect to the model's weights and updating them to minimize the loss. It is employed by several types of neural networks, including:

ক) MLP (Multilayer Perceptron): MLPs are fully connected feedforward neural networks with multiple layers. They rely heavily on backpropagation to adjust weights across all layers during training, making it a fundamental component of their learning process.
খ) CNN (Convolutional Neural Network): CNNs, designed for processing structured grid-like data (e.g., images), use backpropagation to update the weights of convolutional filters, pooling layers, and fully connected layers. The gradients are computed and propagated backward through the network to optimize performance.
গ) RNN (Recurrent Neural Network): RNNs, used for sequential data (e.g., time series or natural language), employ a variant called backpropagation through time (BPTT). This extends backpropagation to handle the temporal dependencies in sequences, updating weights based on gradients computed across time steps.
Since all these neural network architectures (MLP, CNN, and RNN) use backpropagation (or its variants) as their primary training mechanism, the correct answer is ঘ) All of the above. 

৮৮.
Which one below retrieves emails from a server?
  1. SMTP 
  2. SNMP 
  3. RIP 
  4. POP3
ব্যাখ্যা

ঘ) POP3

Explanation:
ঘ) POP3 (Post Office Protocol version 3): This is a protocol specifically designed to retrieve emails from a mail server to a client device. It allows users to download emails and, typically, store them locally, often removing them from the server (unless configured otherwise).
Why the other options are incorrect:
ক) SMTP (Simple Mail Transfer Protocol): SMTP is used for sending emails from a client to a server or between servers. It is not used for retrieving emails.
খ) SNMP (Simple Network Management Protocol): SNMP is used for managing and monitoring network devices (e.g., routers, switches). It has no role in email retrieval.
গ) RIP (Routing Information Protocol): RIP is a routing protocol used to exchange routing information between routers in a network. It is unrelated to email operations.
Thus, POP3 is the protocol for retrieving emails from a server.

৮৯.
Random search is____________algorithm
  1.  a greedy 
  2. a local optimization 
  3. an optimal
  4.  a global optimization
ব্যাখ্যা

ঘ) a global optimization

Here's why:

Global Optimization: The goal of Random Search (or Pure Random Search) is to find the global optimum across the entire search space. It randomly samples points within the defined boundaries, giving it a theoretical chance (with enough samples) to find the best solution, even if the objective function has many local peaks (local optima).
Contrast with Local Optimization: A strictly local optimization algorithm (like basic Hill Climbing) starts at one point and only looks at its immediate neighbors to find a better point. It is guaranteed to stop at the nearest local optimum, which may not be the global best.
While there are local variants of random search, when the term "Random Search" is used on its own, especially when contrasted with deterministic or local methods, it typically refers to the pure, unguided sampling method designed for global exploration.

৯০.
Thrashing occurs when: 
  1. Too many processes wait for I/O 
  2. CPU isunder-utilized 
  3. Processes spend more time swapping pages than executing instructions.
  4. Memory is fragmented.
ব্যাখ্যা

Thrashing occurs when:

গ) Processes spend more time swapping pages than executing instructions.

Explanation
Thrashing is a severe performance degradation state in an operating system that uses virtual memory (paging). It is essentially a vicious cycle:

Insufficient Memory: The combined working sets (the minimum set of pages a process needs to execute without frequent page faults) of all running processes exceed the available physical memory (RAM).

Excessive Paging/Swapping: The CPU tries to access a page that isn't in RAM, causing a page fault. To load the required page, the OS must swap another page out to disk.

Vicious Cycle: Since every page is actively needed, the swapped-out page is often needed immediately, causing another page fault and another swap.

Low Throughput: The system gets stuck constantly moving pages between RAM and the slow disk (swapping), spending little or no time on productive work (executing instructions). The CPU utilization drops because the CPU is constantly waiting for the disk I/O to complete the swaps. This is the definition of thrashing.

৯১.
The class in C++ contains:
  1.  data only
  2.  function only 
  3.  data and function both
  4. None of the above.
ব্যাখ্যা

The class in C++ contains:

গ) data and function both

In C++, a class is a user-defined blueprint from which objects are created. It serves to bind the data (known as member variables or attributes) and the functions (known as member functions or methods) that operate on that data into a single, cohesive unit. This is the core concept of encapsulation in Object-Oriented Programming (OOP).

৯২.
MOV AX, BX:
  1.  copies content of AX to BX 
  2. copies content of BX to AX
  3.  erases content of both AX and BX 
  4.  is a wrong instruction
ব্যাখ্যা

The correct option is:

খ) copies content of BX to AX

Explanation

In assembly language (specifically x86 architecture, which uses instructions like MOV with registers like AX and BX):

The MOV instruction stands for MOVE (or more accurately, COPY).
The general format is usually: MOV destination, source
The operation performs a copy:  . The content of the source operand is copied to the destination operand.
Therefore, MOV AX, BX copies the value stored in the BX register (the source) into the AX register (the destination). The original content of BX remains unchanged, but the original content of AX is overwritten.

৯৩.
__________is the mostly used multiple access technique in WLAN.
  1. OFDMA
  2. TDMA
  3. CDMA
  4. TDA+CDMА
ব্যাখ্যা

The mostly used multiple access technique in standard commercial WLAN (Wireless Local Area Network), particularly in Wi-Fi (IEEE 802.11 standards up to and including Wi-Fi 5/802.11ac), is a variation of CSMA/CA.

However, among the given choices, the modern technique adopted by the latest Wi-Fi standard (Wi-Fi 6/802.11ax) to significantly enhance efficiency and handle high density is OFDMA.1

Given the classic multiple-choice options for access techniques in wireless networking:

OFDMA is the technique that is now the most advanced and is heavily used in Wi-Fi 6 (802.11ax) to achieve true multiple access for both uplink and downlink.
The fundamental Wi-Fi access mechanism is CSMA/CA (Carrier-Sense Multiple Access with Collision Avoidance), which isn't listed.2

If the question is implicitly asking for the most relevant technique for the latest standards to achieve simultaneous access, the answer is:

ক) OFDMA
Explanation of Wi-Fi Access Techniques: 
Technique
Description
Role in Wi-Fi
CSMA/CA
Carrier-Sense Multiple Access with Collision Avoidance
This is the fundamental access method for all Wi-Fi networks (802.11a/b/g/n/ac). It's a "listen before you talk" protocol, but it's not a true simultaneous multiple access technique; it's a contention-based method where only one device transmits at a time.

OFDMA (Orthogonal Frequency Division Multiple Access)
Allows multiple users to transmit simultaneously over different sub-channels of the same frequency spectrum.
This is the key multiple access technology in Wi-Fi 6 (802.11ax). It partitions the channel bandwidth into smaller resource units (RUs) and assigns different RUs to different clients, enabling parallel data transmission, which is true multiple access.

TDMA (Time Division Multiple Access)
Divides the channel into time slots; users transmit in sequence.
Not the primary technique in Wi-Fi; it's common in cellular systems (e.g., 2G GSM).

CDMA (Code Division Multiple Access)
Allows multiple users to transmit simultaneously over the same frequency by using unique spreading codes.
Not used in modern Wi-Fi; it was common in cellular systems (e.g., 2G/3G standards).
In modern, high-efficiency WLANs (Wi-Fi 6), OFDMA is the feature that allows the access point to schedule multiple concurrent transmissions, making it the most accurate answer for a multiple access technique among the choices.

৯৪.
___________mapping is not a useful cache mapping technique. 
  1. Direct
  2. Set associative
  3. Fully associative
  4. Random
ব্যাখ্যা

The mapping that is not a standard, useful cache mapping technique is:

ঘ) Random 

Explanation of Cache Mapping Techniques

The three primary and highly useful cache mapping techniques are:

Direct Mapping (Useful): Simple and fast, but suffers from high conflict misses because each main memory block can only go into one specific cache line.1 
Fully Associative Mapping (Useful): Very flexible as a main memory block can go into any cache line, resulting in the lowest miss rate.2 However, it's the most expensive and slowest because it requires searching all cache lines simultaneously (using a dedicated comparator for every line). 
Set Associative Mapping (Most Common and Useful): A compromise between the other two. Each main memory block can go into any line within a specific set of cache lines. It provides better performance than Direct Mapping at a lower cost and complexity than Fully Associative Mapping.
Random Mapping (Not Useful/Standard):

Random Mapping is not a mapping technique itself, but rather a replacement policy. When a cache set is full and a new block needs to be brought in, a replacement policy decides which existing block to kick out.3 
A replacement policy like Random (or LRU, FIFO, etc.) is used within Set Associative or Fully Associative caches. It is not a method for mapping memory addresses to cache locations. Therefore, "Random" is fundamentally different from the first three and is not considered a primary mapping technique.

৯৫.
Which one below is not an AI technique?
  1. Gradient descent 
  2. Genetic algorithm 
  3. Deep leaming 
  4. Reinforcement learning
ব্যাখ্যা

The answer is all of the options are considered AI techniques or are fundamental components used within modern AI.

However, in the context of differentiating between broad learning paradigms (like b, c, and d) and a specific optimization algorithm (like a), Gradient Descent is the most likely intended answer for "not an AI technique" in a classic computer science examination question.

The most accurate option to single out based on common classification is:

ক) Gradient descent

Explanation of AI Techniques
Gradient Descent (Optimization Algorithm):

It is an optimization algorithm (a mathematical technique) used to minimize the cost or error function.
It is the engine that drives the learning in most Deep Learning and other Machine Learning models (including Reinforcement Learning).
While absolutely essential to modern AI, it is a tool used within the learning process, not a broad AI or machine learning paradigm itself.
Genetic Algorithm (AI Technique/Search Paradigm):

This is a search and optimization technique inspired by natural selection and genetics.
It is a major technique in the field of Evolutionary Computation, which is a recognized branch of Artificial Intelligence used for problem-solving, optimization, and search.
Deep Learning (AI Paradigm/Field):

This is a specific sub-field of Machine Learning that uses artificial neural networks with multiple layers (deep neural networks) to learn complex patterns.
It is a widely recognized and dominant AI technique today.
Reinforcement Learning (AI Paradigm/Field):

This is a sub-field of Machine Learning where an agent learns to make decisions by performing actions in an environment to maximize a cumulative reward (e.g., training a self-driving car).
It is a distinct and major AI technique or learning paradigm.
Because Gradient Descent is a low-level mathematical method of optimization, while the others are high-level paradigms or classes of algorithms within AI, it is the one that is conventionally treated as different.

৯৬.
Which sorting algorithm below is not comparison-based?
  1. Merge sort 
  2. Heap sort 
  3. Counting sort 
  4. Quick sort
ব্যাখ্যা

The sorting algorithm that is not comparison-based is:

গ) Counting sort

Explanation
Sorting algorithms are generally divided into two main categories:

Comparison Sorts: These algorithms determine the order of elements by performing comparisons (e.g., 1 , 2 ) between them.3 The time complexity of any general-purpose comparison sort is bounded by 4 .5

Merge sort, Heap sort, and Quick sort all rely on comparing elements to determine their relative order.
Non-Comparison Sorts (Linear Time Sorts): These algorithms do not use comparisons.6 Instead, they rely on assumptions about the nature of the input data (usually integers with a limited range) to sort them in linear time, 7 , or 8  where 9  is the range.10

Counting sort works by counting the frequency of each unique element in the input array.11 It then uses this count information to place the elements directly into the correct output positions without ever comparing two input elements against each other.12 Other examples include Radix Sort and Bucket Sort.13

৯৭.
Which of the following offers a higher slope-overload and granular noise?
  1. DPCM
  2. DM
  3. APM
  4. PCM
ব্যাখ্যা

The communication system that exhibits both a higher potential for slope-overload distortion and significant granular noise is:

খ) DM (Delta Modulation)

Explanation: 
Delta Modulation (DM) is a simplified version of Differential Pulse Code Modulation (DPCM).1 It uses a 1-bit quantizer to approximate the input signal by a staircase function.2

Slope-Overload Distortion (Higher):

DM uses a fixed step size (3 ).4 If the input analog signal changes too rapidly (i.e., has a high slope) and the fixed step size is too small to track this change, the staircase approximation lags behind the signal. This failure to follow the input signal's steep ascent or descent is called slope-overload distortion or slope error . Because the step size is fixed and small (only one bit), DM is highly susceptible to this type of distortion.

Granular Noise (Higher):

When the input signal's slope is small or zero (i.e., the signal is relatively flat), the staircase function will still step up and down by the fixed step size ( ) around the true signal value. This constant hunting around the true signal is known as granular noise or idling noise. Because the step size is fixed and cannot be reduced when the signal is flat, DM experiences significant granular noise.5

The other options have different characteristics:

DPCM (Differential PCM): Uses more than 1 bit for quantization, allowing it to adapt to signal changes better than DM. It reduces both slope overload (by using more bits) and granular noise compared to DM.
PCM (Pulse Code Modulation): Quantizes the absolute amplitude of the signal, not the difference. It does not suffer from slope-overload or granular noise; its primary source of error is quantization noise (which is uniform across the signal's range).
APM (Adaptive Pulse Modulation) / Generally APCM: This is not a standard, commonly used term, but if it refers to Adaptive PCM, it would be designed to minimize both granular and slope-overload noise. More commonly, ADM (Adaptive Delta Modulation) exists, which adjusts the step size (6 ) dynamically to reduce both types of noise.

৯৮.
The impedance of a series RLC circuit.
  1. R + f(XL + XC)
  2. R - f(XL + XC)
  3. √R2 + (XL - XC)2
  4. √R2 + (XL + XC)2
ব্যাখ্যা







৯৯.
The relationship between line voltage (VL)and phase voltage (VP) is: 
  1. VL= VP
  2. VL= √3VP
  3. VL= VP/√3 
  4. VL= 3VP
ব্যাখ্যা

VL= √3VP


১০০.
If the carrier and modulating signal frequencies are 1MHz and 10kHz, respectively, what is the required bandwidth for amplitude-modulated signal?
  1. 5 kHz
  2. 10 kHz
  3. 20 kHz
  4.  2 MHz
ব্যাখ্যা

১০১.
'পরিবার থেকেই শিক্ষার শুরু'-এখানে 'থেকে' শব্দের সাথে যুক্ত 'ই'-এর ব্যাকরণিক পরিচয় কী?
  1. উপসর্গ
  2. প্রত্যয়
  3. ধাতু
  4. বলক
ব্যাখ্যা

সঠিক উত্তর হলো: ঘ) বলক।
--------------
• বাংলা ব্যাকরণে, শব্দ গঠনের বিভিন্ন উপাদান রয়েছে, যেমন উপসর্গ, প্রত্যয়, ধাতু, এবং বলক। প্রশ্নে দেওয়া বাক্য ‘পরিবার থেকেই শিক্ষার শুরু’-এর মধ্যে ‘থেকে’ শব্দের সঙ্গে যুক্ত ‘ই’ শব্দটির ব্যাকরণিক পরিচয় হলো- বলক।

• বলক:

যেসব শব্দাংশ পদের সঙ্গে যুক্ত হলে বক্তব্য জোরালাে হয়, সেগুলােকে বলক বলে।
যেমন -
'তখনই' বা ‘এখনও' পদের 'ই' বা ‘ও’ হলাে বলকের উদাহরণ।

অন্য অপশন,

উপসর্গ:
- যেসব অর্থহীন শব্দাংশ অন্য শব্দের শুরুতে বসে নতুন শব্দ গঠন করে, সেগুলােকে উপসর্গ বলে।
যেমন-
- অজানা (অ + জানা), অভিযােগ (অভিযােগ), বেতার (বে+তার) প্রভৃতি শব্দের ‘অ’, ‘অভি’, ‘বে’ হলাে উপসর্গ।

• প্রত্যয়:
- শব্দ ও ধাতুর পরে অর্থহীন যেসব শব্দাংশ যুক্ত হয়ে নতুন শব্দ তৈরি হয়, সেগুলোকে প্রত্যয় বলে।
যেমন -
→ বাঘ + আ = বাঘা।
→ দিন + ইক = দৈনিক।
উপরের উদাহরণে 'আ' ও 'ইক' তদ্ধিত প্রত্যয় এবং 'বাঘা' ও 'দৈনিক' হলো তদ্ধিতান্ত শব্দ।

ধাতু বা ক্রিয়ামূল:
বাংলা ভাষায় বহু ক্রিয়াপদ রয়েছে। এসকল ক্রিয়াপদের মূল অংশকে বলা হয় ধাতু বা ক্রিয়ামূল।
যেমন: ‘লিখ্‌ + আ = লিখা; এখানে, লিখ্‌ হলো ধাতু।

উৎস: বাংলা ভাষার ব্যাকরণ ও নির্মিতি- নবম ও দশম শ্রেণি (২০২২ সংস্করণ)।

১০২.
আহমদ শরীফের মতে মধ্যযুগে চণ্ডীদাস নামে কতজন কবি ছিলেন?




ব্যাখ্যা

সঠিক উত্তর হলো- খ) ৩

ব্যাখ্যা:
আহমদ শরীফের গবেষণা অনুসারে, মধ্যযুগে চণ্ডীদাস নামে তিনজন কবি ছিলেন।
যথা:
১। অনন্ত বড়ু চণ্ডীদাস- সর্বপ্রাচীন চণ্ডীদাস,
২। চণ্ডীদাস- চৈতন্য পূর্বকালের বা জ্যেষ্ঠ সমসাময়িক এবং
৩। দীন চণ্ডীদাস- আঠারো শতকের শেষার্ধ।

এই তিনজনের রচিত পদাবলীতে রাধা-কৃষ্ণের প্রেমকাহিনী এবং বৈষ্ণব ভক্তির প্রতিফলন ঘটেছে।

• আহমদ শরীফের গবেষণাগ্রন্থ (যেমন: "বাঙালী ও বাংলা সাহিত্য") অনুসারে,


উৎস: বাংলাপিডিয়া এবং আহমদ শরীফের গবেষণাগ্রন্থ (যেমন: "বাঙালী ও বাংলা সাহিত্য")।

১০৩.
মধুসূদন দত্তের পূর্ববর্তী গুরুত্বপূর্ণ কবি কে?
  1. রবীন্দ্রনাথ ঠাকুর
  2. কায়কোবাদ
  3. ঈশ্বরচন্দ্র গুপ্ত
  4. ইসমাইল হোসেন সিরাজী
ব্যাখ্যা

সঠিক উত্তর হলো: গ) ঈশ্বরচন্দ্র গুপ্ত।

ব্যাখ্যা:
মধুসূদন দত্ত (১৮২৪-১৮৭৩) বাংলা সাহিত্যের একজন গুরুত্বপূর্ণ কবি, যিনি বিশেষত তাঁর ‘মেঘনাদবধ কাব্য’ এবং আধুনিক বাংলা সনেটের জন্য বিখ্যাত। তিনি বাংলা সাহিত্যে আধুনিকতার সূচনা করেন। তাঁর পূর্ববর্তী গুরুত্বপূর্ণ কবি কে ছিলেন, তা নির্ধারণ করতে আমাদের সময়কাল এবং সাহিত্যে অবদান বিবেচনা করতে হবে।

অপশনগুলোর বিশ্লেষণ:

ক) রবীন্দ্রনাথ ঠাকুর (১৮৬১-১৯৪১):
রবীন্দ্রনাথ ঠাকুর মধুসূদন দত্তের — পরবর্তী কালের কবি। তিনি জন্মগ্রহণ করেন মধুসূদনের মৃত্যুর কাছাকাছি সময়ে এবং তাঁর সাহিত্যকর্ম মধুসূদনের পরে বিকশিত হয়। তাই তিনি মধুসূদনের পূর্ববর্তী কবি হতে পারেন না।

খ) কায়কোবাদ (১৮৫৭-১৯৫১):
কায়কোবাদ একজন উল্লেখযোগ্য কবি, যিনি তাঁর — ‘মহাশ্মশান কাব্য’ এর জন্য পরিচিত। কিন্তু তিনি মধুসূদনের — পরবর্তী সময়ে সাহিত্যকর্ম শুরু করেন। তাঁর জন্মও মধুসূদনের সক্রিয় সাহিত্যজীবনের পরে। সুতরাং, তিনি পূর্ববর্তী কবি নন।

গ) ঈশ্বরচন্দ্র গুপ্ত (১৮১২-১৮৫৯):
ঈশ্বরচন্দ্র গুপ্ত ছিলেন মধুসূদন দত্তের — পূর্ববর্তী এবং সমসাময়িক কালের একজন গুরুত্বপূর্ণ কবি ও সাংবাদিক। তিনি ‘সংবাদ প্রভাকর’ পত্রিকার সম্পাদক হিসেবে এবং তাঁর সামাজিক ও ব্যঙ্গাত্মক কবিতার জন্য বিখ্যাত। তিনি বাংলা সাহিত্যে মধুসূদনের আগে গুরুত্বপূর্ণ অবদান রেখেছিলেন এবং তাঁর কাজ মধুসূদনের সময়ে প্রভাব বিস্তার করেছিল। তাই তিনি মধুসূদনের পূর্ববর্তী গুরুত্বপূর্ণ কবি হিসেবে বিবেচিত হন।

ঈশ্বরচন্দ্র গুপ্ত সম্পর্কিত আরো কিছু গুরুত্বপূর্ণ তথ্য:
- ঈশ্বরচন্দ্র গুপ্ত ছিলেন একজন কবি, সাংবাদিক।
- 'ভ্রমণকারী বন্ধু' ছিলো তাঁর ছদ্মনাম।
- ঈশ্বরচন্দ্র গুপ্ত বাংলা সাহিত্যের ইতিহাসে যুগসন্ধির (মধ্যযুগ ও আধুনিক যুগের মিলনকারী) কবি হিসেবে পরিচিত।
- ঈশ্বরচন্দ্র গুপ্ত প্রথম বাংলা দৈনিক পত্রিকা ‘সংবাদ প্রভাকর’ সম্পাদনা করেন।
- তাঁর অন্যতম শ্রেষ্ঠ কীর্তি হলো কবিয়ালদের লুপ্তপ্রায় জীবনী উদ্ধার করে প্রকাশ করা।
- ঈশ্বরচন্দ্র সংবাদ প্রভাকর ছাড়াও সংবাদ রত্নাবলী, পাষন্ডপীড়ন ও সংবাদ সাধুরঞ্জন পত্রিকাও সম্পাদনা করেন।

ঘ) ইসমাইল হোসেন সিরাজী (১৮৮০-১৯৩১):
ইসমাইল হোসেন সিরাজী মধুসূদনের — পরবর্তী কালের কবি। তিনি তাঁর জাতীয়তাবাদী ও মুসলিম সাহিত্যের জন্য পরিচিত। তাঁর জন্ম ও সাহিত্যকর্ম মধুসূদনের মৃত্যুর পরে শুরু হয়, তাই তিনি পূর্ববর্তী কবি হতে পারেন না।

তাই বলা চলে, মধুসূদন দত্তের পূর্ববর্তী গুরুত্বপূর্ণ কবি হলেন — ঈশ্বরচন্দ্র গুপ্ত।

উৎস: বাংলা সাহিত্যের ইতিহাস (ড. সুকুমার সেন), বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা, বাংলাপিডিয়া।

১০৪.
'এ কাজ করতে আমি বদ্ধ পরিকর'- এখানে 'পরিকর' শব্দের অর্থ কী?
[মূল প্রশ্নে 'পরিবার' লেখা ছিল]
  1. শ্বাস
  2. প্রতিজ্ঞা
  3. কোমর
  4. প্রতিশ্রুত
ব্যাখ্যা

সঠিক উত্তর: গ) কোমর।
-------------------
প্রথমে শব্দের অর্থগুলো জেনে নিই-

• বদ্ধ শব্দের অর্থ- বাঁধা; আবদ্ধ; বাঁধানো।
• পরিকর অর্থ- কটিবন্ধ।
• বাংলা একাডেমি আধুনিক বাংলা অভিধান অনুসারে,




ব্যাখ্যা:
বাক্যটি — “এ কাজ করতে আমি বদ্ধ পরিকর” — এখানে ‘পরিকর’ শব্দের অর্থ কোমর।
‘বদ্ধ পরিকর’ মানে কোমর বেঁধে প্রস্তুত হওয়া বা দৃঢ় সংকল্প করা।

অর্থাৎ বাক্যটির ভাবার্থ —
“এ কাজটি করতে আমি দৃঢ়ভাবে প্রস্তুত।”

উৎস: বাংলা একাডেমি আধুনিক বাংলা অভিধান; Accessible Dictionary by Bangla Academy.
---------------------

সংস্কৃত ‘বদ্ধ’ এবং ‘পরিকর’ শব্দ সহযোগে গঠিত শব্দ হলো বদ্ধপরিকর। এটি বিশেষণ পদ। বদ্ধপরিকর শব্দের আভিধানিক অর্থ হলো, দৃঢ়প্রতিজ্ঞ, কঠোর প্রতিজ্ঞা, দৃঢ়সংকল্প, কোনো কাজ করার জন্য উঠেপড়ে লেগেছে এমন বোঝায় প্রভৃতি। ব্যুৎপত্তিগতভাবে ‘বদ্ধ’ শব্দের অর্থ হলো, ‘বাঁধা’ আর ‘পরিকর’ শব্দের একাধিক অর্থের মধ্যে একটি অর্থ হলো, কোমর বা কটিবন্ধ, কোমরবন্ধনী। ইংরেজিতে যেটিকে আমরা বলি বেল্ট। সেই হিসেবে বদ্ধপরিকর শব্দের আক্ষরিক অর্থ হয় কোমর বা কটিবন্ধ বাঁধা। সংস্কৃত থেকে জাত কোমরবন্ধনী বাঁধা প্রসঙ্গটিই কালক্রমে দৃঢ়প্রতিজ্ঞ অর্থরূপে পরিগ্রহ করেছে।

সূত্র: 'আজকের পত্রিকা'র রিপোর্ট - "শব্দের আড়ালে গল্প: বদ্ধপরিকর", লেখক: রাজীব কুমার সাহা, আভিধানিক ও প্রাবন্ধিক।
----------------------

অতিরিক্ত আলোচনা:
এই প্রশ্নের উত্তর বিশ্লেষণের জন্য আমরা বিগত ৪৩তম বিসিএস প্রিলিমিনারি পরীক্ষার একটি প্রশ্ন যদি পর্যালোচনা করি।

'গড্ডালিকা প্রবাহ' বাগ্‌ধারায় 'গড্ডল' শব্দের অর্থ কী?
ক) গরু
খ) ছাগল
গ) ভেড়া
ঘ) মহিষ

• ‘গড্ডলিকা প্রবাহ’ বাগ্‌ধারার অর্থ - অন্ধভাবে অনুসরণ। কিন্তু এখানে আক্ষরিক অর্থে 'গড্ডল' শব্দের অর্থ 'ভেড়া' হয়েছে।

একইভাবে, এখানেও 'এ কাজ করতে আমি বদ্ধ পরিকর'- বাক্যে পরিকর শব্দের আক্ষরিক অর্থ ধরলে সেটার অর্থ হয় কটি বা কোমর।

১০৫.
'শিক্ষককে বুঝতে হবে শিক্ষার্থী কী চায়'- এই বাক্যে শিক্ষক ও শিক্ষার্থীর প্রয়োগ হয়েছে-
  1. একবচন বোঝাতে
  2. বহুবচন বোঝাতে
  3. একবচন ও বহুবচন উভয়ই বোঝাতে
  4. প্রথমটি একবচন, পরেরটি বহুবচন বোঝাতে
ব্যাখ্যা

সঠিক উত্তর হলো: গ) একবচন ও বহুবচন উভয়ই বোঝাতে।

ব্যাখ্যা:
বাংলা ব্যাকরণে, ‘শিক্ষক’ এবং ‘শিক্ষার্থী’ শব্দ দুটি লিঙ্গ-নিরপেক্ষ এবং বচন-নিরপেক্ষ (singular and plural neutral) শব্দ, যা প্রেক্ষাপটের উপর নির্ভর করে একবচন (singular) বা বহুবচন (plural) উভয়ই বোঝাতে পারে।

বাক্যটি বিশ্লেষণ করা যাক:
বাক্য: “শিক্ষককে বুঝতে হবে শিক্ষার্থী কী চায়। ”এখানে ‘শিক্ষক’ এবং ‘শিক্ষার্থী’ শব্দ দুটির সঙ্গে কোনো বচন নির্দেশক শব্দ (যেমন: ‘একজন’, ‘সকল’, ‘অনেক’) যুক্ত নেই। ফলে এগুলো প্রেক্ষাপটের উপর নির্ভর করে একজন শিক্ষক বা একাধিক শিক্ষক এবং একজন শিক্ষার্থী বা একাধিক শিক্ষার্থী উভয়কেই বোঝাতে পারে।

‘শিক্ষককে’ এবং ‘শিক্ষার্থী’ শব্দের বিভক্তি (‘-কে’ এবং বিভক্তিহীন রূপ) কোনো নির্দিষ্ট বচন নির্দেশ করে না। বাংলায় এই ধরনের শব্দ সাধারণত একবচন এবং বহুবচন উভয় অর্থেই ব্যবহৃত হতে পারে।

তাই বালা যায়, ‘শিক্ষক’ এবং ‘শিক্ষার্থী’ শব্দ দুটির প্রয়োগ একবচন ও বহুবচন উভয়ই বোঝাতে ব্যবহৃত হয়েছে।

উৎস: বাংলা ভাষার ব্যাকরণ, নবম-দশম শ্রেণি (২০১৯ সংস্করণ), ভাষা শিক্ষা- ড. হায়াৎ মামুদ; বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা।

১০৬.
'তিনি কথা শুনে ঘুমাতে পারলেন না' - বাক্যটির অস্তিবাচক রূপ কী হবে?
  1. তিনি কথা না শুনে ঘুমাতে পারলেন না
  2. তিনি কথা না শুনে ঘুমাতে পারলেন
  3. তিনি জেগে রইলেন কথা না শুনে
  4. তিনি কথা শুনে জেগে রইলেন
ব্যাখ্যা

সঠিক উত্তর: ঘ) তিনি কথা শুনে জেগে রইলেন।

ব্যাখ্যা:
বাক্যটি — “তিনি কথা শুনে ঘুমাতে পারলেন না” — এটি একটি নেতিবাচক (Negative) বাক্য।
এর অস্তিবাচক (Affirmative) রূপ করতে হলে “না” বাদ দিয়ে অর্থ বজায় রেখে ইতিবাচকভাবে প্রকাশ করতে হয়।

এখানে,
“ঘুমাতে পারলেন না” = “জেগে রইলেন” (অর্থ একই থাকে)।

অতএব, অস্তিবাচক রূপ হবে —
“তিনি কথা শুনে জেগে রইলেন।”

অন্যদিকে,
অন্যান্য অপশনগুলোতে নেতিবাচক 'না' শব্দটি রয়েছে; যা নেতিবাচক বাক্যের উদাহরণ।

উৎস: বাংলা ভাষার ব্যাকরণ, নবম-দশম শ্রেণি (২০১৯ সংস্করণ), ভাষা শিক্ষা- ড. হায়াৎ মামুদ; বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা।

১০৭.
কোন্ ধ্বনি পরিবর্তনটি যথাযথ নয়?
  1. ক্রন্দন > কাঁদা
  2. অঞ্চল > আঁচল
  3. সংগীত > গীতিকা
  4. দন্ত > দাঁত
ব্যাখ্যা

সঠিক উত্তর: গ) সংগীত > গীতিকা।

ব্যাখ্যা:
বাংলা ভাষায় ধ্বনি পরিবর্তনের মাধ্যমে শব্দের রূপান্তর ঘটে, যা প্রায়শই তৎসম, তদ্ভব বা দেশি শব্দ গঠনের ক্ষেত্রে দেখা যায়। ধ্বনি পরিবর্তনের ক্ষেত্রে সাধারণ নিয়ম অনুসারে, তৎসম শব্দ থেকে তদ্ভব শব্দে রূপান্তরের সময় ধ্বনিগত পরিবর্তন ঘটে, যেমন স্বরধ্বনি বা ব্যঞ্জনধ্বনির পরিবর্তন।

চলুন অপশন বিশ্লেষণ করি —
ক) ক্রন্দন → কাঁদা:
এটি ধ্বনি-পরিবর্তনের মাধ্যমে গঠিত। তৎসম শব্দ ‘ক্রন্দন’ (অর্থ: কান্না) থেকে তদ্ভব শব্দ ‘কাঁদা’ (ক্রিয়া, অর্থ: কাঁদা বা কান্না করা) গঠিত হয়েছে।

খ) অঞ্চল → আঁচল:
এটি ধ্বনি-পরিবর্তনের উদাহরণ। তৎসম শব্দ ‘অঞ্চল’ (অর্থ: কাপড়ের প্রান্ত বা অঞ্চল) থেকে তদ্ভব শব্দ ‘আঁচল’ (অর্থ: শাড়ির প্রান্ত) গঠিত হয়েছে।

গ) সংগীত → গীতিকা:
‘সংগীত’ থেকে ‘গীতিকা’ গঠনের জন্য কোনো সরাসরি ধ্বনিগত পরিবর্তন নেই। বরং এটি অন্য একটি শব্দগঠন (প্রত্যয়যুক্ত রূপ)। ‘গীতিকা’ একটি তৎসম শব্দ, যা ‘গীত’ (গান) শব্দের সঙ্গে ‘-ইকা’ প্রত্যয় যোগ করে গঠিত। 'গীতিকা' সংগীতের একটি রূপ বা ছোট গান বোঝায়, কিন্তু ‘সংগীত’ থেকে ধ্বনি পরিবর্তনের মাধ্যমে এটি উৎপন্ন হয় না।

ঘ) দন্ত → দাঁত:
এটি স্পষ্ট ধ্বনি-পরিবর্তনের উদাহরণ (স্বরবিকৃতি ও উচ্চারণগত পরিবর্তন)। তৎসম শব্দ ‘দন্ত’ (অর্থ: দাঁত) থেকে তদ্ভব শব্দ ‘দাঁত’ গঠিত হয়েছে।

অতএব, যথাযথ নয় — গ) সংগীত > গীতিকা।

উৎস: বাংলা একাডেমি আধুনিক বাংলা অভিধান; বাংলা ভাষার ব্যাকরণ, নবম-দশম শ্রেণি (২০১৯ সংস্করণ), ভাষা শিক্ষা- ড. হায়াৎ মামুদ; বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা।

১০৮.
কাজী নজরুল ইসলামের কোন উপন্যাসের কেন্দ্রীয় চরিত্র জাহাঙ্গীর-
  1. বাঁধন-হারা
  2. মৃত্যুক্ষুধা
  3. কুহেলিকা
  4. শিউলিমালা
ব্যাখ্যা

• কাজী নজরুল ইসলামের উপন্যাস ‘কুহেলিকা’ (প্রকাশকাল: ১৯৩১ খ্রি.)-এর কেন্দ্রীয় চরিত্র হলো — জাহাঙ্গীর।
এই উপন্যাসে তিনি একজন শিক্ষিত, দেশপ্রেমিক, বিপ্লবী চরিত্র — যিনি সমাজ ও রাষ্ট্রের অন্ধকার দূর করে আলোর পথ খুঁজছেন।
---------------
• 'কুহেলিকা' উপন্যাস সম্পর্কিত আরো কিছু তথ্য:
কাজী নজরুল ইসলামের উপন্যাস ‘কুহেলিকা’ ১৩৩৪ বঙ্গাব্দে 'নওরোজ' পত্রিকায় 'কুহেলিকা' উপন্যাস প্রকাশ আরম্ভ হয়। গ্রন্থাকারে প্রথম প্রকাশ পায় ১৩৩৮ বঙ্গাব্দে (১৯৩১)।

- এ উপন্যাসে রাজনৈতিক প্রসঙ্গ এসেছে অত্যন্ত বড় ক্যানভাসে।
- উপন্যাসের নায়ক জাহাঙ্গীর বিপ্লবী স্বদেশি দলের সঙ্গে যুক্ত।
- কিন্তু তার যে প্রেমের সম্পর্ক ও নারী সম্পর্কে ধারণা তা যথেষ্ট ঋণাত্মক।

এই উপন্যাসের অন্যান্য চরিত্রগুলো হচ্ছে:
- কুহেলিকা,
- তাহমিনা,
- চম্পা,
- ফিরদৌস বেগম।

- নারী সম্পর্কে এ উপন্যাসে বলা হয়েছে:
‘ইহারা মায়াবিনীর জাত। ইহারা সকল কল্যাণের পথে মায়াজাল পাতিয়া রাখিয়াছে। ইহারা গহন-পথের কণ্টক, রাজপথের দস্যু।'

-----------------
কাজী নজরুল ইসলাম সম্পর্কে কিছু সংক্ষিপ্ত তথ্য:

- বাংলাদেশের জাতীয় কবি এবং অবিভক্ত বাংলার সাহিত্য, সমাজ ও সংস্কৃতি ক্ষেত্রের অন্যতম শ্রেষ্ঠ ব্যক্তিত্ব।
- তিনি ১৩০৬ বঙ্গাব্দের ১১ জ্যৈষ্ঠ (২৪ মে ১৮৯৯) পশ্চিমবঙ্গের বর্ধমান জেলার চুরুলিয়া গ্রামে জন্মগ্রহণ করেন।
- তাঁর ডাক নাম ছিলো ‘দুখু মিয়া’।
- বাংলা সাহিত্যের ইতিহাসে তিনি ‘বিদ্রোহী কবি’ এবং আধুনিক বাংলা গানের জগতে ‘বুলবুল’ নামে খ্যাত।

• কাজী নজরুল ইসলাম রচিত উপন্যাস:
- বাঁধন-হারা,
- মৃত্যুক্ষুধা,
- কুহেলিকা।

উৎস:
১) বাংলা ভাষা সাহিত্য জিজ্ঞাসা।
২) বাংলাপিডিয়া।

১০৯.
'উৎক্ষেপণ' শব্দের 'উৎ' উপসর্গ কোন্ অর্থ ধারণ করছে?
  1. জোর
  2. ঊর্ধ্ব
  3. আড়াল
  4. গতি
ব্যাখ্যা

সঠিক উত্তর: খ) ঊর্ধ্ব।

----------------
ব্যাখ্যা:
‘উৎক্ষেপণ’ শব্দটি গঠিত হয়েছে —
উৎ (উপসর্গ) + ক্ষেপণ (মূল শব্দ)

এখানে ‘উৎ’ উপসর্গের অর্থ হলো ঊর্ধ্ব বা উপরের দিকে।
অর্থাৎ, উৎক্ষেপণ মানে হচ্ছে উপরের দিকে নিক্ষেপ করা বা উচ্চে ছোড়া।

যেমন: রকেটের উৎক্ষেপণ (রকেটকে আকাশে ঊর্ধ্বে পাঠানো)।

উল্লেখ্য,
- ’উৎ’ একটি তৎসম (সংস্কৃত) উপসর্গ।

’উৎ’ উপসর্গটি অন্য যেসব অর্থে ব্যবহৃত হয়-
• ’ঊর্ধ্বমুখিতা" অর্থে- উদ্যম, উন্নতি, উৎক্ষিপ্ত, উদগ্রীব, উত্তোলন।
• ’আতিশয্য’ অর্থে- উচ্ছেদ, উত্তপ্ত, উৎফুল্ল, উৎসুক, উৎপীড়ন।
• ’প্রস্তুতি’ অর্থে- উৎপাদন, উচ্চারণ।
• ’অপকর্ষ’ অর্থে- উৎকোচ, উচ্ছৃঙ্খল, উৎকট।

উৎস: ভাষা শিক্ষা- ড. হায়াৎ মামুদ এবং মাধ্যমিক বাংলা ভাষার ব্যাকরণ ও নির্মিতি (২০২২ সংস্করণ)।

১১০.
রবীন্দ্রনাথ ঠাকুর শব্দের শুরুতে মাত্রাযুক্ত এ-কার ব্যবহার করতেন কেন?
  1. এ-কার মাত্রা যুক্ত বলে
  2. 'এ' মাত্রাহীন বর্ণ বলে
  3. 'এ' উচ্চারণ বোঝাতে
  4. 'অ্যা' উচ্চারণ বোঝাতে
ব্যাখ্যা

সঠিক উত্তর: ঘ) 'অ্যা' উচ্চারণ বোঝাতে।

• ‘এ’ এবং 'অ্যা' - এর উচ্চারণ:
‘এ’- কারের উচ্চারণ ভিন্নতা (‘এ’ এবং 'অ্যা') নির্দেশকল্পে রবীন্দ্রনাথ ‘এ’-কারের মুদ্রণে মাত্রাযুক্ত ও মাত্রাহীন ব্যবহার প্রচলন করেন; যা নির্দেশ করে ধ্বনির পার্থক্য—‘এ’ এবং ‘অ্যা’। শব্দের শুরুতে মাত্রাহীন ‘এ’-কার থাকলে উচ্চারণ সংবৃত হয়, অর্থাৎ স্বাভাবিকভাবে ‘এ’ ধ্বনি উচ্চারিত হয়। উদাহরণস্বরূপ, ‘মেলা’ শব্দটি যদি মাত্রাহীন ‘এ’-কার দিয়ে লেখা হয়, তার উচ্চারণ হবে স্বাভাবিক ‘মেলা’, যা ‘গেলা’ শব্দের ‘এ’ ধ্বনির অনুরূপ। এ ধরনের উচ্চারণের আরও উদাহরণ হলো: দেবী, সেরা, সেই, বেদনা, মেয়ে, গেলা, জেলা ইত্যাদি।

অপরদিকে, শব্দের আদিতে মাত্রাযুক্ত ‘এ’-কার থাকলে উচ্চারণ বিবৃত হয়, অর্থাৎ ‘অ্যা’ ধ্বনি প্রকাশ পায়। যেমন, ‘মেলা’-র উচ্চারণ হবে ‘ম্যালা’, যা ‘ঠেলা’ শব্দের ‘এ’ ধ্বনির অনুরূপ। তদ্রূপ, কেমন, যেমন, যেন, ফেনা প্রভৃতি শব্দেও এই ধ্বনির ব্যবহার লক্ষ্য করা যায়।

উৎস: ভাষা শিক্ষা- ড. হায়াৎ মামুদ; বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা এবং বাংলাপিডিয়া।

১১১.
কোন শব্দটি প্রত্যয়যোগে গঠিত?
  1. ডাক্তারখানা
  2. হাসপাতাল
  3. আকাশছোঁয়া
  4. গুণমান
ব্যাখ্যা

• ডাক্তারখানা - শব্দটি বিদেশি তদ্ধিত প্রত্যয়যোগে গঠিত।

ব্যাখ্যা:
বাংলা ব্যাকরণে, প্রত্যয় হলো এমন শব্দাংশ যা কোনো শব্দের শেষে যুক্ত হয়ে নতুন শব্দ গঠন করে বা শব্দের অর্থ বা ভাব পরিবর্তন করে।

প্রশ্নে দেওয়া অপশনগুলো বিশ্লেষণ করা হলো:

ক) ডাক্তারখানা:
এটি প্রত্যয়যোগে গঠিত। ‘ডাক্তার’ শব্দটির সঙ্গে ‘-খানা’ প্রত্যয় যুক্ত হয়ে ‘ডাক্তারখানা’ গঠিত হয়েছে। ‘খানা’ একটি প্রত্যয়, যা স্থান বোঝাতে ব্যবহৃত হয়। এখানে ‘ডাক্তারখানা’ মানে ডাক্তারের চিকিৎসার স্থান বা হাসপাতাল। এটি স্পষ্টভাবে প্রত্যয়যোগে গঠিত শব্দ।

খ) হাসপাতাল:
এটি প্রত্যয়যোগে গঠিত নয়। ‘হাসপাতাল’ ইংরেজি hospital শব্দ থেকে এসেছে। এটি একটি সম্পূর্ণ শব্দ, যার কোনো অংশ বাংলায় প্রত্যয় হিসেবে যুক্ত হয়নি। এটি প্রত্যয়যোগে গঠিত নয়।

গ) আকাশছোঁয়া:
এটি প্রত্যয়যোগে গঠিত নয়। ‘আকাশছোঁয়া’ একটি সমাসবদ্ধ শব্দ এটি সমাসের মাধ্যমে গঠিত, প্রত্যয়ের মাধ্যমে নয়।

ঘ) গুণমান: এটি সঠিক শব্দ নয়। এর শুদ্ধ শব্দ হবে ‘গুণবান’।

তাই, ডাক্তারখানা শব্দটি প্রত্যয়যোগে গঠিত।

উৎস: বাংলা একাডেমি আধুনিক বাংলা অভিধান; বাংলা ভাষার ব্যাকরণ, নবম-দশম শ্রেণি (২০১৯ সংস্করণ), ভাষা শিক্ষা- ড. হায়াৎ মামুদ; বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা।

১১২.
'সত্যকে স্বীকার করতে অনেক ব্যক্তিরাই চায়না।'- এখানে ভুল ঘটেছে-
  1. বানান ও প্রত্যয়ের
  2. অর্থ ও বচনের
  3. অর্থ ও প্রত্যয়ের
  4. বানান ও বচনের
ব্যাখ্যা

সঠিক উত্তর হলো: ঘ) বানান ও বচনের।

ব্যাখ্যা:
বাক্যটি হলো: “সত্যকে স্বীকার করতে অনেক ব্যক্তিরাই চায়না।” এই বাক্যে দুটি প্রধান ভুল রয়েছে: বানান এবং বচন (number) সংক্রান্ত।

বানানের ভুল:
বাক্যে “চায়না” লেখা হয়েছে, যা ভুল। বাংলা বানানের প্রমিত রূপে সঠিক শব্দটি হলো “চায় না”।
“চায়না” একটি অপ্রমিত রূপ, যা কথ্য ভাষায় ব্যবহৃত হলেও আনুষ্ঠানিক লেখায় গ্রহণযোগ্য নয়। বাংলা একাডেমির প্রমিত বানান নিয়ম অনুসারে ক্রিয়াপদ ‘চাওয়া’ এর নেতিবাচক রূপে ‘চায় না’ লেখা হয়। উদাহরণ: “সে যেতে চায় না।”

বচনের ভুল:
বাক্যে “অনেক ব্যক্তিরাই” ব্যবহৃত হয়েছে, যা বচনের দিক থেকে ভুল।
"অনেক" শব্দটি ইতিমধ্যে বহুবচন বোঝায়। তাই আবার "রা" (বহুবচন চিহ্ন) যোগ করার দরকার নেই। এক্ষেত্রে "ই" (বলক) যোগ করলে হবে: অনেক ব্যক্তিই। অথবা "অনেক" ছাড়া হবে: ব্যক্তিরাই।

বাক্যটির সঠিক রূপ হবে: “সত্যকে স্বীকার করতে অনেক ব্যক্তিই চায় না।”

উৎস: বাংলা একাডেমি আধুনিক বাংলা অভিধান; বাংলা ভাষার ব্যাকরণ, নবম-দশম শ্রেণি (২০১৯ সংস্করণ), ভাষা শিক্ষা- ড. হায়াৎ মামুদ; বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা।

১১৩.
পরিভাষিক শব্দ বলতে বুঝায়-
  1. ইংরেজি শব্দের বাংলা রূপান্তর
  2. বিদেশি শব্দের অনুবাদ
  3. বিষয়গত সুনির্দিষ্ট অর্থবোধক শব্দ
  4. ব্যবহারিক প্রয়োজনে নবনির্মিত শব্দ
ব্যাখ্যা

সঠিক উত্তর হলো: গ) বিষয়গত সুনির্দিষ্ট অর্থবোধক শব্দ।

ব্যাখ্যা:
পরিভাষিক শব্দ বলতে এমন শব্দ বোঝায় যা কোনো নির্দিষ্ট বিষয়, পেশা, শাস্ত্র, বা ক্ষেত্রের (যেমন: বিজ্ঞান, চিকিৎসা, আইন, সাহিত্য) সঙ্গে সম্পর্কিত এবং সেই ক্ষেত্রে সুনির্দিষ্ট অর্থ প্রকাশ করে। এই শব্দগুলো সাধারণত একটি বিশেষ প্রেক্ষাপটে ব্যবহৃত হয় এবং তাদের অর্থ সাধারণ ব্যবহারের থেকে আলাদা বা সীমিত হতে পারে। উদাহরণ: ‘পরিবাহক’ (conductor, বিদ্যুৎ পরিবহনের প্রেক্ষাপটে), ‘শিক্ষাতত্ত্ব’ (pedagogy, শিক্ষাবিজ্ঞানে)।

অন্যান্য অপশনগুলোর বিশ্লেষণ:

ক) ইংরেজি শব্দের বাংলা রূপান্তর: ভুল।
পরিভাষিক শব্দ শুধু ইংরেজি শব্দের বাংলা রূপান্তর নয়। এটি যেকোনো বিষয়ের সঙ্গে সম্পর্কিত হতে পারে এবং তৎসম, তদ্ভব, বা নতুন গঠিত শব্দ হতে পারে। উদাহরণ: ‘অণুজীব’ (microbe) ইংরেজি থেকে এলেও, এটি বিজ্ঞানের পরিভাষা হিসেবে সুনির্দিষ্ট।

খ) বিদেশি শব্দের অনুবাদ: ভুল।
পরিভাষিক শব্দ বিদেশি শব্দের অনুবাদের মধ্যে সীমাবদ্ধ নয়। এগুলো স্থানীয়ভাবে গঠিত বা বিষয়ভিত্তিক শব্দও হতে পারে। উদাহরণ: ‘গ্রন্থাগার’ (library) বিদেশি শব্দের অনুবাদ, কিন্তু পরিভাষা হিসেবে এটি গ্রন্থ সংরক্ষণের ক্ষেত্রে সুনির্দিষ্ট।

ঘ) ব্যবহারিক প্রয়োজনে নবনির্মিত শব্দ: আংশিকভাবে সঠিক, কিন্তু পূর্ণাঙ্গ নয়।
কিছু পরিভাষিক শব্দ নতুন করে গঠিত হতে পারে (যেমন: ‘দূরদর্শন’ বা ‘টেলিভিশন’), কিন্তু সব পরিভাষিক শব্দ নবনির্মিত নয়। অনেক পরিভাষা তৎসম বা প্রচলিত শব্দ থেকেও আসে (যেমন: ‘শিক্ষাতত্ত্ব’ বা ‘অর্থনীতি’।

উৎস: বাংলাপিডিয়া।

১১৪.
'মৃগয়া' শব্দের মৃগ বলতে কি বোঝানো হয়?
  1. বানর
  2. সিংহ
  3. পশু
  4. বন
ব্যাখ্যা

• 'মৃগয়া' শব্দের 'মৃগ' বলতে 'পশু' বোঝানো হয়।

• উল্লেখ্য,
'মৃগ' শব্দের অর্থ - হরিণ, পশু।
'মৃগয়া' শব্দের অর্থ - হরিণ শিকার; বন্য পশুপাখি শিকার।

অন্যদিকে,
• 'বানর' শব্দের অর্থ - বাঁদরসুলভ স্বভাববিশিষ্ট, শাখামৃগ, মর্ব।
• 'সিংহ' শব্দের অর্থ - মৃগেন্দ্র, স্ত্রী. সিংহী /শিংহি।
• 'বন' শব্দের অর্থ - অরণ্য, জঙ্গল, কানন, কুঞ্জ, গহন, বিপিন।

উৎস: বাংলা একাডেমি, আধুনিক বাংলা অভিধান।

১১৫.
কোন শব্দটি বিসর্গসন্ধির মাধ্যমে গঠিত?
  1. নীরব
  2. উজ্জ্বল
  3. মানোত্তীর্ণ
  4. সংগ্রাম
ব্যাখ্যা

• বিসর্গসন্ধির মাধ্যমে গঠিত শব্দটি হলো - নীরব।
শব্দটির সঠিক সন্ধিবিচ্ছেদ, নিঃ + রব = নীরব।

অন্যদিকে,
- ব্যঞ্জনে + ব্যঞ্জনে = ব্যঞ্জনসন্ধি - আগে ৎ বা দ্ এবং পরে চ্ বা ছ্‌ থাকলে ৎ বা দ্‌ স্থানে চ হয়। এবং ৎ বা দ্‌ -এর পরে জ্‌ বা ঝ্‌ থাকলে ত্ দ্‌ স্থানে জ্‌ হয়। যেমন - উৎ + জ্বল = উজ্জ্বল।

- ব্যঞ্জনে + ব্যঞ্জনে = ব্যঞ্জনসন্ধি - ম্-এর পর অন্তঃস্থ ধ্বনি য, র, ল, ব, কিংবা শ, ষ, স, হ থাকলে, ম্ স্থলে অনুস্বার হয়। যেমন- সম্ + সার = সংসার, সম্ + গ্রাম = সংগ্রাম।

- প্রথম পদের শেষের অ-ধ্বনি বা আ-ধ্বনির সঙ্গে দ্বিতীয় পদের প্রথম হ্রস্ব-উ ধ্বনি বা দীর্ঘ-উ ধ্বনির যোগে ও-ধ্বনি হয়। বানানে তা ও-কারের রূপ নিয়ে আগের বর্ণে যুক্ত হয়। যেমন: কাল + উত্তীর্ণ = কালোত্তীর্ণ, মান + উত্তীর্ণ = মানোত্তীর্ণ।

বিসর্গ সন্ধি:
- পূর্বপদের শেষে বিসর্গ (ঃ) থাকলে এবং পরপদের প্রথমে চ্ বা ছ্‌ থাকলে বিসর্গ পরিবর্তিত হয়ে শ্, ট্‌ বা ঠ্‌ থাকলে ষ্‌; ত থাকলে স্ হয় এবং পরবর্তী ব্যঞ্জনে তা যুক্ত হয়।

যেমন:
- নিঃ + চয় = নিশ্চয়,
- দুঃ + চিন্তা = দুশ্চিন্তা,
- নিঃ + ছিদ্র = নিশ্ছিদ্র,
- শিরঃ + ছেদ = শিরশ্ছেদ ।

উৎস: ভাষা-শিক্ষা, ড. হায়াৎ মামুদ এবং বাংলা ভাষার ব্যাকরণ ও নির্মিতি, নবম-দশম শ্রেণি (২০১৯-সংস্করণ)।

১১৬.
ভাষার অর্থযুক্ত ক্ষুদ্রতম একক কোনটি?
  1. অক্ষর
  2. রূপমূল
  3. শব্দ
  4. বর্গ
ব্যাখ্যা

সঠিক উত্তর: খ) রূপমূল।

----------------------
• শব্দ ও রূপমূল:

শব্দকে আরও ক্ষুদ্রতর অংশে বিভক্ত করলে এমন উপাদান পাওয়া যায় যা অর্থ প্রকাশে অংশগ্রহণ করে। ভাষার এই ক্ষুদ্রতম অর্থযুক্ত একককে বলা হয় রূপমূল। অর্থাৎ, রূপমূল হলো ভাষার ক্ষুদ্রতম উপাদান যাদের সুস্পষ্ট অর্থ থাকবে বা অন্ততপক্ষে অর্থের কোনো যৌক্তিক ইঙ্গিত থাকবে।

আমরা জানি, ভাষার সবচেয়ে ক্ষুদ্রতম উপাদান হলো ধ্বনিমূল, তবে ধ্বনিমূলের মধ্যে কোনো অর্থ বহন করার ক্ষমতা নেই। অন্যদিকে, রূপমূল সর্বদা কোনো না কোনোভাবে অর্থসংশ্লিষ্ট থাকে।

উদাহরণ:
• শব্দ: অবোধ।
• রূপমূল বিশ্লেষণ: অ + বোধ,

এখানে,
• ‘অ’ → উপসর্গ হিসেবে ব্যবহৃত, স্বাধীনভাবে অর্থ প্রকাশ করতে না পারলেও অভাব বোঝায়।
• ‘বোধ’ → স্বাধীনভাবে অর্থ প্রকাশ করতে পারে।

রূপমূলের শ্রেণীবিন্যাস:
- মুক্ত রূপমূল (Free Morpheme): স্বাধীনভাবে অর্থ প্রকাশ করতে পারে।
উদাহরণ: বোধ, গান, মাটি।

- বদ্ধ রূপমূল (Bound Morpheme): স্বাধীনভাবে অর্থ প্রকাশ করতে পারে না, অন্য রূপমূলের সঙ্গে যুক্ত হয়ে অর্থ বোঝায়।
উদাহরণ: ‘অ’ (অবোধে), ‘উৎ’ (উৎক্ষেপণে)।

উৎস: উচ্চমাধ্যমিক বাংলা ২য় পত্র, বাংলাদেশ উন্মুক্ত বিশ্ববিদ্যালয়

১১৭.
ধ্বনি ও বর্ণের পার্থক্য কোথায়?
  1. লেখার ধরনে
  2. উচ্চারনের বিশিষ্টতায়
  3. সংখ্যাগত পরিমানে
  4. ইন্দ্রিয় গ্রাহ্যে
ব্যাখ্যা

সঠিক উত্তর হলো: ঘ) ইন্দ্রিয় গ্রাহ্যে।

-------------
ব্যাখ্যা:

বাংলা ব্যাকরণে ধ্বনি এবং বর্ণ দুটি ভিন্ন ধারণা, এবং এদের মধ্যে পার্থক্য প্রধানত তাদের প্রকৃতি এবং ইন্দ্রিয়গ্রাহ্যতার মধ্যে নিহিত। নিচে এই পার্থক্য বিশ্লেষণ করা হলো:

ধ্বনি:
ধ্বনি হলো মুখ থেকে উচ্চারিত শব্দ বা কথনের একক, যা কান দিয়ে শোনা যায়। এটি একটি শ্রুতিগ্রাহ্য (auditory) উপাদান। ধ্বনি ভাষার মৌখিক রূপের অংশ এবং এটি উচ্চারণের মাধ্যমে প্রকাশ পায়। উদাহরণ: ‘ক’ ধ্বনি বা ‘আ’ ধ্বনি উচ্চারণের সময় শোনা যায়। ধ্বনির সংখ্যা ভাষার উচ্চারণ প্রক্রিয়ার উপর নির্ভর করে।

বর্ণ:
বর্ণ হলো ধ্বনির লিখিত রূপ বা চিহ্ন, যা চোখ দিয়ে দেখা যায়। এটি একটি দৃষ্টিগ্রাহ্য (visual) উপাদান। বাংলা বর্ণমালায় স্বরবর্ণ (যেমন: অ, আ, ই) এবং ব্যঞ্জনবর্ণ (যেমন: ক, খ, গ) রয়েছে, যা ধ্বনিকে লিখিত আকারে প্রকাশ করে।

উদাহরণ: যখন আমরা ‘ক’ উচ্চারণ করি, তখন তা ধ্বনি হিসেবে শোনা যায়, কিন্তু যখন লিখি ‘ক’, তখন তা বর্ণ হিসেবে দেখা যায়।

উৎস: বাংলা একাডেমি আধুনিক বাংলা অভিধান; বাংলা ভাষার ব্যাকরণ, নবম-দশম শ্রেণি (২০১৯ সংস্করণ), ভাষা শিক্ষা- ড. হায়াৎ মামুদ; বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা।

১১৮.
চর্যাপদের খণ্ডিত পদগুলো তিব্বতি থেকে প্রাচীন বাংলায় রূপান্তর করেন-
  1. সুনীতিকুমার চট্টোপাধ্যায়
  2. হরপ্রসাদ শাস্ত্রী
  3. রাজেন্দ্রলাল মিত্র
  4. সুকুমার সেন
ব্যাখ্যা

সঠিক উত্তর হলো: ঘ) সুকুমার সেন।

ব্যাখ্যা:
চর্যাপদ হলো বাংলা সাহিত্যের প্রাচীনতম নিদর্শন, যা ৮ম থেকে ১২শ শতাব্দীর মধ্যে রচিত বৌদ্ধ সহজিয়া পদাবলী। এই পদগুলো মূলত প্রাচীন বাংলা, মৈথিলি, ওড়িয়া, এবং অসমীয়ার মতো পূর্ব ভারতীয় ভাষার মিশ্রণে রচিত। চর্যাপদের পাণ্ডুলিপি প্রথম আবিষ্কৃত হয় তিব্বতে, এবং এগুলো তিব্বতি ভাষায় অনুবাদিত বা টীকাকৃত আকারে পাওয়া যায়।
-------------
প্রেক্ষাপট:
• প্রশ্নটি স্পষ্টভাবে জিজ্ঞাসা করছে যে চর্যাপদের খণ্ডিত পদগুলো (২৩, ২৪, ২৫, এবং ৪৮ নং) তিব্বতি অনুবাদ থেকে প্রাচীন বাংলায় কে রূপান্তর করেছেন। বাংলা সাহিত্যের ইতিবৃত্ত, (অসিতকুমার বন্দ্যোপাধ্যায়) অনুসারে, এই কাজটি করেছেন সুকুমার সেন। তিনি আনুমানিকভাবে প্রাচীন বাংলায় রূপান্তর করেছেন।

• ১৯০৭ সালে হরপ্রসাদ শাস্ত্রী নেপালের রাজদরবারের গ্রন্থাগার থেকে চর্যাপদের পাণ্ডুলিপি আবিষ্কার করেন। এই পাণ্ডুলিপিতে ২৩ এর খণ্ডিত, ২৪, ২৫, এবং ৪৮ নং পদগুলো ছিল না।

• অসিতকুমার বন্দ্যোপাধ্যায়ের বাংলা সাহিত্যের ইতিবৃত্ত অনুসারে,
মূল পুথির চারখানা পাতা লুপ্ত। এই চর্যাটির শেষ চার পঙ্‌ক্তি ও টীকা, ২৪ নং চর্যার সমস্ত অংশ ও টীকা এবং তার পরের অর্থাৎ ২৫ নং চর্যার মূল ও টীকার প্রথম অংশ বিনষ্ট। তবে এই চর্যাগুলির তিব্বতী অনুবাদ পাওয়া গিয়েছে। ডক্টর প্রবোধচন্দ্র বাগচী সেই অনুবাদ প্রকাশ করেন ১৯৪২ সালে। সেই অনুবাদ অবলম্বনে এই চর্যাগুলির মূল কী ছিল তা অনুমান করে একটি পাঠ-পরিকল্পনা দিয়েছেন ডক্টর হুকুমার সেন তাঁর 'চর্যাীতি পদাবলী' গ্রন্থের ৭৬ থেকে ৭৯ পৃষ্ঠায়।


অপশনগুলোর বিশ্লেষণ:
ক) সুনীতিকুমার চট্টোপাধ্যায়: ভুল।
তিনি তাঁর ভাষাতাত্ত্বিক গবেষণার মাধ্যমে চর্যাপদের ভাষাকে প্রাচীন বাংলা হিসেবে চিহ্নিত করেন এবং এর সাহিত্যিক ও ভাষাগত গুরুত্ব বিশ্লেষণ করেন। তাঁর গবেষণা, বিশেষ করে The Origin and Development of the Bengali Language এবং চর্যাপদের ভাষাতাত্ত্বিক বিশ্লেষণ, এই কাজের জন্য উল্লেখযোগ্য।

খ) হরপ্রসাদ শাস্ত্রী: ভুল।
হরপ্রসাদ শাস্ত্রী ১৯০৭ সালে চর্যাপদের মূল পাণ্ডুলিপি আবিষ্কার করেন, কিন্তু তিনি তিব্বতি অনুবাদ আবিষ্কার বা রূপান্তরের সঙ্গে যুক্ত ছিলেন না। তিব্বতি অনুবাদ ১৯৫৬ সালে প্রবোধচন্দ্র বাগচী ও শান্তিভিক্ষু শাস্ত্রীর সম্পাদনায় বিশ্বভারতী থেকে প্রকাশিত হয়।

গ) রাজেন্দ্রলাল মিত্র: ভুল।
রাজেন্দ্রলাল মিত্র (১৮২৪-১৮৯১) চর্যাপদ আবিষ্কারের (১৯০৭) অনেক আগে মারা যান। তিনি সংস্কৃত সাহিত্য ও পুরাতত্ত্ব নিয়ে কাজ করলেও চর্যাপদের সঙ্গে তাঁর কোনো সম্পর্ক নেই।

ঘ) সুকুমার সেন: সঠিক।
অসিতকুমার বন্দ্যোপাধ্যায়ের বাংলা সাহিত্যের ইতিবৃত্ত অনুসারে, সুকুমার সেন প্রবোধচন্দ্র বাগচীর সংস্কৃত অনুবাদের ভিত্তিতে চর্যাপদের খণ্ডিত পদগুলো প্রাচীন বাংলায় রূপান্তর করেন এবং তা প্রকাশ করেন।
--------------------
--------------------
'চর্যাপদ' সম্পর্কিত আরো কিছু তথ্য:

• বাংলা সাহিত্যের প্রাচীনযুগের একমাত্র নিদর্শন চর্যাচর্যবিনিশ্চয় বা চর্যাগীতিকোষ বা চর্যাগীতি বা চর্যাপদ।
• ড. হরপ্রসাদ শাস্ত্রী ১৯০৭ সালে নেপালের রাজ দরবার গ্রন্থাগার থেকে এটি আবিষ্কার করেন।
• চর্যাপদের পদ সংখ্যা: চর্যাপদের পদ সংখ্যা ৫০টি। তবে সুকুমার সেন মনে করেন পদসংখ্যা ৫১টি।
• উদ্ধারকৃত পদের সংখ্যা: চর্যাপদের সাড়ে ৪৬টি পদ পাওয়া যায়।

• অনুদ্ধারকৃত/বিলুপ্ত পদের সংখ্যা: সাড়ে ‍৩টি। প্রাপ্ত সাড়ে ৪৬টি পদের মধ্যে ভুসুকুপা রচিত ২৩নং পদটি খণ্ডিত আকারে পাওয়া গেছে। পদটির ৬টি পদ পাওয়া গেছে কিন্তু বাকি ৪টি পদ পাওয়া যায়নি।
• এছাড়াও চর্যাপদের ২৪নং (কাহ্নপা রচিত), ২৫নং (তন্ত্রীপা রচিত) এবং ৪৮নং (কুক্কুরীপা রচিত) পদগুলো পাওয়া যায়নি।

• চর্যাপদ তিব্বতি ভাষায় অনুবাদ করেন কীর্তিচন্দ্র।
• ১৯৩৮ সালে প্রবোধচন্দ্র বাগচী চর্যাপদের তিব্বতি ভাষার অনুবাদ আবিষ্কার করেন।
• সংস্কৃত ভাষায় মুনিদত্ত চর্যাপদের ব্যাখ্যা করেন। তিনি ১১নং পদের ব্যাখ্যা করেননি।

উৎস: বাংলা সাহিত্যের ইতিবৃত্ত - অসিতকুমার বন্দ্যোপাধ্যায়; চর্যাগীতি_পরিক্রমা- ড. নির্মল দাশ; বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা, এবং বাংলা সাহিত্যের ইতিহাস, মাহবুবুল আলম; বাংলা সাহিত্যের ইতিহাস- সুকুমার সেন, Buddhist Mystic Songs- মুহম্মদ শহীদুল্লাহ, এবং বাংলাপিডিয়া।

১১৯.
'স্বাধীন' শব্দের ব্যাসবাক্য কোনটি?
  1. স্বীয়-এর অধীন
  2. সত্ত্বার অধীন
  3. স্ব-এর অধীন
  4. স্বত্তের-অধীন
ব্যাখ্যা

• সঠিক উত্তর - স্ব-এর অধীন। এটি একটি ষষ্ঠী তৎপুরুষ সমাস।

ষষ্ঠী তৎপুরুষ সমাস:
- পূর্বপদে যষ্ঠী বিভক্তির (র, এর) লোপ হয়ে যে সমাস হয়, তাকে ষষ্ঠী তৎপুরুষ সমাস বলে।

যথা:
- চায়ের বাগান = চাবাগান,
- রাজার পুত্র = রাজপুত্র,
- খেয়ার ঘাট = খেয়াঘাট।
- স্ব-এর অধীন = স্বাধীন।

উৎস: বাংলা ভাষার ব্যাকরণ- ৯ম ও ১০ম শ্রেণি (২০১৮ সংস্করণ) এবং বাংলা একাডেমি, অভিগম্য অভিধান।

১২০.
ফররুখ আহমদের গ্রন্থ কোনটি?
  1. হরফের ছড়া
  2. বর্ণশিক্ষা
  3. বর্ণপরিচয়
  4. সহজ ছড়া
ব্যাখ্যা

সঠিক উত্তর হলো: ক) হরফের ছড়া।

------------------
‘হরফের ছড়া’ গ্রন্থ:

‘হরফের ছড়া’ ফররুখ আহমদের লেখা একটি বর্ণশিক্ষার বই, যা শিশুদের জন্য ছড়ার মাধ্যমে বাংলা বর্ণমালা শেখানোর উদ্দেশ্যে রচিত। এটি ১৯৭০ সালে প্রকাশিত হয়।

অন্যদিকে,

ঈশ্বরচন্দ্র বিদ্যাসাগর: তিনি ‘বর্ণপরিচয়’ নামে বিখ্যাত বর্ণশিক্ষার বই লিখেছেন। শিশুদের বাংলা ভাষা শিক্ষা দেওয়ার উদ্দেশ্যে বিজ্ঞানসম্মত উপায়ে রচিত গ্রন্থসমূহের মধ্যে এটিই প্রথম।

রবীন্দ্রনাথ ঠাকুর: রবীন্দ্রনাথ ঠাকুর ‘সহজ পাঠ’ নামে শিশুসাহিত্য রচনা করেছেন।
‘বর্ণশিক্ষা’ বলতে কোনো গ্রন্থ পাওয়া যায়নি।

----------------
ফররুখ আহমদ এর জীবিনী ও সাহিত্যকর্ম:

- ফররুখ আহমদ ১৯১৮ সালের ১০ জুন মাগুরা জেলার শ্রীপুর থানার মাঝাইল গ্রামে জন্মগ্রহণ করেন।
- তিনি ছিলেন মুসলিম পুনর্জাগরণবাদী কবি।
- ‘সাত সাগরের মাঝি’ ফররুখ আহমদ রচিত শ্রেষ্ঠ এবং প্রথম প্রকাশিত কাব্যগ্রন্থ।
- ১৯৪৪ সালে কলকাতার দুর্ভিক্ষের পটভূমিতে ‘লাশ’ কবিতা লিখে তিনি প্রথম খ্যাতি অর্জন করেন।
- ফররুখ আহমদ তাঁর বিখ্যাত কাহিনী কাব্য 'হাতেমতায়ী' এর জন্য ১৯৬৬ সালে আদমজি পুরস্কার লাভ করেন।
- ১৯৬৬ সালেই 'পাখির বাসা' শিশুতোষের জন্য ইউনেস্কো পুরস্কার লাভ করেন।
- ‘মুহূর্তের কবিতা’ ফররুখ আহমদ রচিত একটি সনেট সংকলন।

তাঁর শিশু-কিশোরদের জন্য রচিত গ্রন্থ:
- পাখির বাসা,
- হরফের ছড়া,
- নতুন লেখা,
- ছড়ার আসর,
- চিড়িয়াখানা,
- কিস্‌সা কাহিনী,
- মাহফিল ১ম ও ২য় খণ্ড,
- ফুলের জলসা।

উৎস:
১. বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা।
২. বাংলাপিডিয়া।
৩. ‘হরফের ছড়া’ রচনা।

১২১.
Pick the correctly spelt word:
  1. Conscintious
  2. Consientious
  3. Concientious
  4. Conscientious
ব্যাখ্যা

• The correctly spelt word: Conscientious.

• Conscientious (adjective):
- English Meaning: Meticulous, careful; Feeling a moral responsibility to do your work carefully and to be fair to others.
- Bangla Meaning: বিবেকবান; বিবেকবুদ্ধিসম্পন্ন।

• Example:
- A conscientious public servant.
- She has always been a very conscientious worker.

Source:
1. Accessible Dictionary by Bangla Academy.
2. Merriam-Webster Dictionary.

১২২.
They talked about going on a vacation'. Here 'going' is a/an-
  1. participle
  2. infinitive
  3. verbal noun
  4. gerund
ব্যাখ্যা

• They talked about going on a vacation.
- Here 'going' is a gerund.

- Here, “going” comes after the preposition “about”, so it must function as a noun.
- প্রদত্ত বাক্যে, going (verb+ing)- preposition “about” -এর object হিসেবে বসে noun -এর কাজ করেছে তাই এটি gerund.
- অর্থাৎ, 'going' এখানে যাওয়ার কাজ (an act or instance of going) বুঝাচ্ছে।
- এটি participle নয়, কারণ এই বাক্যে এটি কোনো noun/pronoun কে modify করেনি।

• Gerund:
- Verb -এর সাথে ing যোগ হয়ে যদি noun -এর কাজ করে অর্থাৎ, একই সাথে Verb ও noun -এর কাজ করে, তখন তাকে Gerund বলে।
- সহজে → Gerund = Verb + ing = noun = Verb + noun -এর কাজ করে।
- Gerunds don’t describe action—they act as nouns.

• Functions of the Gerund:
1. As a subject of a verb: Rising early is a good habit.
2. As an object of a verb: I like reading poetry.
3. As an object of a preposition: I am tired of waiting.
4. As a complement of a verb: Seeing is believing.
5. As absolutely (part of a compound noun): This is my writing table.

অন্যদিকে,
• Present participle:
- Verb -এর সাথে ing যোগ হয়ে যদি adjective -এর কাজ করে অর্থাৎ, একই সাথে Verb ও adjective -এর কাজ করে, তাহলে তাকে present participle বলে।
- সহজ ভাষায় → present participle হলো Verb + ing = adjective = Verb + adjective কাজ করে।
- Present participle দ্বারা চলমান sense বোঝায়।
- যেমন: Everything was in going order.

• Infinitive:
- Infinitive হচ্ছে verb এর base form অথবা to + base form.
- যেমন: go, to go.

• Infinitive দুই রকম হতে পারে। যেমন:
- To -যুক্ত infinitive এবং
- To -বিহীন infinitive বা Bare Infinitive.

• Verbal Noun:
- কোন বাক্যের Verb + ing - এর পূর্বে the এবং পরে of থাকলে তাকে Verbal Noun বলে।
- The + verb+ing + of = verbal noun.
- যেমন: The making of the plan is in hand.

Source:
1. High School English Grammar and Composition by Wren And Martin.
2. A Passage to the English Language by S.M. Zakir Hussain.

১২৩.
The novel 'Wuthering Heights' was penned by the author under the penname-
  1. Ellise Bellet
  2. Ellis Belle
  3. Ellis Bell
  4. Una Elis
ব্যাখ্যা

• The novel 'Wuthering Heights' was penned by the author under the pen name Ellis Bell.

• Wuthering Heights:

- Emily Bronte রচিত এই উপন্যাসটি ১৮৪৭ সালে Ellis Bell ছদ্মনামে প্রকাশিত হয়।
- 'Heathcliff' এই উপন্যাসের কেন্দ্রীয় চরিত্র একজন এতিম বালক।
- অন্যের আশ্রয়ে থাকে এবং পরবর্তীতে আশ্রয়দাতার কন্যা Catherine Earnshaw -এর সাথে তার মনের মিলন ঘটে, দুইজন দুইজনকে ভালোবেসে ফেলে।
- কিন্তু Catherine প্রতিশ্রুতি ভঙ্গ করে অন্যত্র বিয়ে করলে Heathcliff নিরুদ্দেশ হয়ে যায়।
- যখন ফিরে আসে তখন সে অঢেল অর্থ বিত্তের মালিক।
- কাহিনীর এ পর্যায়ে তাকে তার মালিকের বাড়ি Wuthering Heights কিনে নেয়ার পাশাপাশি প্রাক্তন প্রেমিকা Catherine -এর ননদের সাথে প্রেমের অভিনয় করে সম্পত্তির লোভে তাকে বিয়ে করতে দেখা যায়।
- পরবর্তীতে এই বিয়েটা ভেঙে যায় এবং এরপর Catherine মারা যায়। তার ভাই Hindley ও মারা যায়। কিন্তু তাদের সন্তানরা ধীরে ধীরে বড় হতে থাকে।
- Heathcliff -এর সন্তানও এদের সাথে যোগ দেয়। এভাবে কাহিনী এক প্রজন্ম থেকে পরের প্রজন্মের মাঝে এগিয়ে চলে।
- এটি ইংরেজি সাহিত্যের অন্যতম শ্রেষ্ঠ রোমান্টিক ট্র্যাজেডি এবং Gothic Novel -এর একটি অন্যতম উদাহরণ।

• Main characters:
- Catherine Earnshaw,
- Cathy Linton,
- Edgar Linton,
- Heathcliff (The central character)
- Lockwood, etc.

• Emily Bronte (1818-1848):
- Emily Bronte ছিলেন একজন ইংরেজ লেখিকা ও কবি।
- তার পুরো নাম Emily Jane Bronte, তার ছদ্মনাম Ellis Bell.
- তিনি Charlotte Bronte -এর ছোট বোন।
- “Wuthering Heights” উপন্যাসকে ঘিরেই মূলত তার পরিচতি।
- মাত্র ত্রিশ বছর বয়সেই এই উপন্যাসিক মৃত্যু বরণ করেন।

• Notable Works:
- Poems by Currer, Ellis and Acton Bell,
- Wuthering Heights, etc.

Source: Britannica.

১২৪.
Which gender is the noun 'neighbour'?
  1. Masculine
  2. Feminine
  3. Neuter
  4. Common
ব্যাখ্যা

• 'Neighbour' is a Common gender.

• Neighbour (noun, adjective, verb)
- English Meaning: one living or located near another.
- Bangla Meaning: প্রতিবেশী; প্রতিবাসী; পড়শি।

- The noun "neighbour" refers to a person (male or female) who lives near or next to another.

• Common gender:
- A noun that denotes either a male or female is said to be of the common gender.
- অর্থাৎ, Noun টি পুংবাচক বা স্ত্রীবাচক উভয়কেই বুঝালে তা Common Gender হয়।
- যেমন: Infant (শিশু), Deer (হরিণ), student (ছাত্র/ছাত্রী), lawyer (উকিল), Neighbor (প্রতিবেশী), orphan (এতিম), parent (মা, বাবা), spouse (দম্পতি) etc.

Source:
1. Accessible Dictionary by Bangla Academy.
2. High School English Grammar and Composition by Wren And Martin.

১২৫.
'Someone sneezed loudly at the back of the hall'.
In this sentence the verb 'sneezed' is-
  1. causative
  2. intransitive
  3. transitive
  4. factitive
ব্যাখ্যা

• 'Someone sneezed loudly at the back of the hall'.
- In this sentence, the verb 'sneezed' is intransitive.

- "sneezed" এখানে Intransitive verb কারণ এটি কোনো Direct object গ্রহণ করেনি।
- Intransitive verb হলো এমন Verb যা কোন Direct object ছাড়াই সম্পূর্ণ অর্থ প্রকাশ করে।
-
The verb "sneezed" does not take a direct object - it expresses an action that does not pass over to an object.
- অর্থাৎ এটি কেবল subject -এর কাজ বোঝাচ্ছে, sneezed কোনো বস্তু বা ব্যক্তিকে (object) প্রভাবিত করছে না।

• Intransitive verb:
- An intransitive verb is a verb that denotes an action which does not pass over to an object, or which expresses a state or being.
- অর্থাৎ, intransitive verb হলো subject নিজের দ্বারাই যে কাজ সম্পন্ন হয়, action (কাজ) সম্পন্ন হওয়ার জন্য object -এর দ্বারস্থ হতে হয় না।
- যে verb -এর কর্ম (direct object) নেই তাকে Intransitive verb বলে।
- এই verb কে 'কি' বা 'কাকে' দ্বারা প্রশ্ন করলে উত্তর পাওয়া যায় না। Direct object থাকে না বলে প্রশ্ন করলে উত্তর পাওয়া যায় না।
- সাধারণত verb-এর পরে কোনো word না থাকলে অথবা verb-এর পরে adverb/preposition থাকলে সেটি Intransitive verb হবে।

• More Examples:
- The glass broke.
- We shall stop here a few days.
- The leaves fall in winter.

অন্যদিকে,
• Causative Verb:
- Subject যখন নিজে কাজ না করে অন্যকে দিয়ে কাজ করিয়ে নেয় তখন এই অর্থে causative verb ব্যবহৃত হয়।
- Help, Get, Have, Let, Make ইত্যাদি বহুল প্রচলিত causative verb.
- Make, have, get প্রভৃতি যোগে অনেক verb- কে causative verb এ পরিণত করা যায়।
- যেমন: He always has me do his work. (সে সব সময় আমাকে দিয়ে তার কাজ করিয়ে নেয়।)

• Transitive verb:
- যে verb এর object আছে তাকে transitive verb বলে৷
- Transitive verbs এর সাধারণ Structure হচ্ছে: subject + verb + object.
- Object সর্বদাই Noun অথবা Pronoun হয়।
- তাই বাক্যে verb এর পরে Noun অথবা Pronoun থাকলে verb টি সাধারণত transitive verb হবে।
- আবার intransitive verb এর শেষে preposition + object যুক্ত করেও তাকে transitive verb এ পরিণত করা যায়।
- যেমন: He writes a letter. write হলো transitive verb, কারণ এর object হলো a letter.

• Factitive Verb:
- যে Verb এর Object বসানোর পরও Objective Complement ছাড়া বাক্যের অর্থ সম্পূর্ণ হয় না, তাকে Factitive Verb বলে।
- Factitive Verb হলো এমন ক্রিয়া যা দুটি object নেয় - একটি direct object এবং একটি object complement।
- এই verb direct object কে object complement হিসেবে বর্ণিত অবস্থায় পরিণত করে বা নিয়োগ দেয়।
- কিছু factitive verbs হলো: Elect, Select, Make, Appoint, Call, Name, etc.

- যেমন: The manager appointed him secretary.
- উল্লিখিত বাক্যে secretary হচ্ছে Objective Complement Factitive Object.
- "The manager appointed him" দ্বারা বাক্য সম্পন্ন হচ্ছে না, তাই Objective Complement হিসেবে secretary বসানোর পর বাক্যটি সম্পন্ন হয়েছে।
- যেহেতু Object (him) বসানোর পরও Objective Complement ছাড়া বাক্যের অর্থ সম্পূর্ণ হয়নি তাই এটি Factitive Verb.

Source:
1. High School English Grammar and Composition by Wren And Martin.
2. A Passage to the English Language by S.M. Zakir Hussain.

১২৬.
A person who leaves his/her own country to settle permanently in another is called a/an-
  1. immigrant
  2. expatriate
  3. emigrant
  4. migrant
ব্যাখ্যা

• A person who leaves his/her own country to settle permanently in another is called an emigrant.

• Emigrant (Noun, Adjective)
- English Meaning: A person who leaves his/her own country to settle permanently in another country.
- Bangla Meaning: স্বদেশত্যাগী; বাস্তুত্যাগী বা দেশান্তরী (ব্যক্তি)।

অন্যদিকে,
• Immigrant (Noun):
- English Meaning: A person who comes to a country to take up permanent residence.
- Bangla Meaning: বহিরাগত; অভিবাসী; বসবাসের জন্য বিদেশে আগমনকারী।

• Expatriate (Noun, verb, adjective):
- English Meaning: A person who lives in a foreign country.
- Bangla Meaning: প্রবাসী ব্যক্তি।

• Migrant (Noun):
- English Meaning: A person who moves from one place to another, especially in order to find work or better living conditions; a bird or animal that migrates.
- Bangla Meaning: বসবাসের উদ্দেশ্যে এক স্থান ত্যাগ করে অন্যত্র গমনকারী (বিশেষত পাখি)।

Source:
1. Accessible Dictionary by Bangla Academy.
2. Merriam-Webster Dictionary.

১২৭.
Identify the word that can be used as both singular and plural:
  1. light
  2. shot
  3. criterion
  4. cannon
ব্যাখ্যা

• The correct answer is- ঘ) cannon.

• Cannon (Noun & Verb):
- English meaning: An old type of large, heavy gun, usually on wheels, that fires solid metal or stone balls.
- Bangla meaning: (collective; plural- এর স্থলে প্রায়ই 'singular ব্যবহৃত হয়) (বিশেষত ধাতুর তৈরি নীরেট গোলানিক্ষেপক, প্রাচীন) কামান; আধুনিক সামরিক বিজ্ঞানে ব্যবহৃত গোলানিক্ষেপক ভারী, স্বয়ংক্রিয় কামান।

- Cannon -এর plural form হলো দুইটি- cannons or cannon.
- তবে সাধারণত plural হিসেবে cannon-ই ব্যবহার করা হয়।
- cannon (same form in military contexts).

অন্যদিকে,
• Light [uncountable noun] - আলোক; আলো → singular: light, plural: lights.

• Shot [countable noun] - গুলি; গুলিবর্ষণ; গুলির শব্দ → singular: shot, plural: shots.
- তবে ছোট সীসা বা ইস্পাতের গুলি, বিশেষ করে শটগানের জন্য চার্জ তৈরি করা অর্থে plural noun: shot ব্যবহৃত হয়।
- প্রচলিত plural form হলো- Shots.
- যেমন: Several shots were fired.

• Criterion (plural criteria বিচারের মাপকাঠি; মানদণ্ড) → singular: criterion, plural: criteria.

Source:
1. Accessible Dictionary by Bangla Academy.
2. Merriam-Webster Dictionary.

১২৮.
Identify the correct passive form, "People thought that the despot was corrupt"
  1. The despot had been thought to be corrupt.
  2. It was thought that the despot was corrupt.
  3. The despot was thought to be corrupt.
  4. The despot is thought to be corrupt.
ব্যাখ্যা

- Active: People thought that the despot was corrupt.
- Passive: The despot was thought to be corrupt.

- এই ধরনের complex বাক্যে যেখানে that-clause আছে, সেখানে passive form তৈরির দুটি উপায় আছে:
- প্রথম উপায় (Impersonal passive) দ্বিতীয় অংশকে 'It' ধরে। যেমন:
- Active: People thought that the despot was corrupt.
- Passive: It was thought that the despot was corrupt.

- Subject হিসেবে People থাকলে Passive voice -এ সাধারণত তা লেখা হয় না।
- তবে, দ্বিতীয় অংশে transitive verb থাকলে দ্বিতীয় অংশেরও Passive করতে হয়।

- দ্বিতীয় উপায় (Personal passive):
- সাধারণত Acknowledge, assume, think, claim, believe, know, report, understand, ইত্যাদি verb যুক্ত Active voice এর Passive করার নিয়ম-
- Personal object টিকে subject ধরা হয়।
- Tense অনুযায়ী auxiliary verb বসে।
- মূল verb -এর past participle + to be + direct object + by + subject -এর objective form.
- যেমন:
- Active: People thought that the despot was corrupt.
- Passive: The despot was thought to be corrupt.

- তবে এই প্রশ্নে গ) অপশনটিই সবচেয়ে উপযুক্ত হবে কারণ:
- Option গ) is more direct and commonly used when the focus is on the despot as the subject of the belief.

অন্যান্য অপশনগুলো বিশ্লেষণ:
ক) The despot had been thought to be corrupt.
- এটি ভুল কারণ, এখানে ভুল tense (had been = past perfect) ব্যবহার হয়েছে।

ঘ) The despot is thought to be corrupt.
- এটি ভুল কারণ, এখানে ভুল tense (is = present, কিন্তু মূল বাক্যে past tense) ব্যবহার হয়েছে।

১২৯.
'After lunch we went for a leisurely stroll'. Here 'leisurely' is a /an-
  1. adverb
  2. adjective
  3. noun
  4. conjunction
ব্যাখ্যা

• 'After lunch we went for a leisurely stroll'.
- Here 'leisurely' is an adjective.

- The word "leisurely" describes the noun "stroll" — it tells what kind of stroll it was.
- When a word modifies a noun, it functions as an adjective.
- অর্থাৎ, 'leisurely' শব্দটি noun 'stroll' এর আগে বসে এটিকে বর্ণনা করছে।

• Leisurely (adjective)
- English Meaning: acting or done at leisure; unhurried or relaxed.
- Bangla Meaning: ব্যস্ততাহীন।

• Leisurely (adverb)
- English Meaning: without haste: deliberately.
- Bangla Meaning: মন্থরগতিতে; ধীরে ধীরে; ব্যস্ততাহীনভাবে।

Source:
1. Accessible Dictionary by Bangla Academy.
2. Merriam-Webster Dictionary.

১৩০.
The play "Englishmen for My Money" was written by-
  1. Christopher Marlowe
  2. Thomas Kyd
  3. William Haughton
  4. Ben Jonson
ব্যাখ্যা

• The play "Englishmen for My Money" was written by William Haughton.

• Englishmen For My Money: Or A Woman Will Have Her Will:
- Englishmen for My Money, or A Woman Will Have Her Will হলো এলিজাবেথীয় যুগের একটি কমেডি নাটক, যা ১৫৯৮ সালে William Haughton রচনা করেছিলেন।
- Scholars and critics often cite it as the first city comedy.
- এই নাটকটি একটি dramatic subgenre সূচনা করেছিল, যা পরবর্তীতে Thomas Dekker, Thomas Middleton, Ben Jonson, এবং অন্যান্যরা পরবর্তী বছর ও দশকে আরও প্রসারিত ও উন্নত করেছিলেন।

• Summary:
- গল্পটি আবর্তিত হয় এক ধনী বিধবা মিসেস ফ্লাওয়ারডেলকে নিয়ে, যাকে তিনজন পুরুষ - স্যার লিওনেল ফ্রিভিল, স্যার থমাস লং এবং মাস্টার গ্যালিয়ার্ড - এর প্রতি আকৃষ্ট হয়। প্রতিটি পুরুষ তার স্নেহ ও ভাগ্য জয়ের চেষ্টা করে, কিন্তু মিসেস ফ্লাওয়ারডেল তার নিজের পথ নির্ধারণ করতে দৃঢ়প্রতিজ্ঞ এবং সে এমন ব্যক্তিকে বেছে নেয় যে তার ইচ্ছা পূরণ করতে পারে। নাটকটি সেই সময়ের সামাজিক রীতিনীতি এবং নারী-পুরুষের মধ্যে ক্ষমতার গতিশীলতার উপর একটি বুদ্ধিদীপ্ত এবং বিনোদনমূলক দৃষ্টিপাত। হটনের লেখনী ধারালো ও হাস্যরসাত্মক, এবং চরিত্রগুলি সুসংহত ও স্মরণীয়।

• William Haughton (1575-1605):
- William Haughton ছিলেন এলিজাবেথীয় যুগের একজন ইংরেজ নাট্যকার।
- তিনি ১৫৯৭ থেকে ১৬০৫ সাল পর্যন্ত সক্রিয় ছিলেন এবং প্রখ্যাত Admiral’s Men (a theatrical company) নাট্যকোম্পানির জন্য নাটক লিখতেন।
- He collaborated in many plays with Henry Chettle, Thomas Dekker, John Day and Richard Hathway.
- তার সবচেয়ে বিখ্যাত নাটক হলো "Englishmen For My Money", এই নাটকটিকেই ইংরেজি ভাষার প্রথম প্রহসন-ভিত্তিক শহুরে কমেডি (City Comedy) হিসেবে ধরা হয়।

• Notable works:
- Englishmen For My Money,
- The Devil and His Dame,
- The English Moor, etc.

Source:
1. Britannica.
2. Goodreads.com

১৩১.
"... I cannot but conclude the Bulk of your Natives, to be the most pernicious race of little odious vermin that Nature ever suffered to crawl upon the surface of the Earth". the statement occurs in
  1. Robinson Crusoe
  2. A Doll's House
  3. Vanity Fair
  4. Gulliver's Travels
ব্যাখ্যা

"... I cannot but conclude the Bulk of your Natives, to be the most pernicious race of little odious vermin that Nature ever suffered to crawl upon the surface of the Earth". - এই উক্তিটি এসেছে Jonathan Swift-এর বিখ্যাত ব্যঙ্গাত্মক রচনা Gulliver’s Travels থেকে।

• Gulliver's Travels:

- Jonathan Swift রচিত একটি novel, তিনি Augustan age এর একজন Author, তাই এটি Augustan age এর রচনা।
- এটি 18th century এর একটি famous satire.
- এটি ৪ খন্ডের একটি রম্য রচনা।
- এর full title হচ্ছে - Travels into Several Remote Places in the World.
- এই novel টি ১৭২৬ সালে প্রকাশিত হয়।

• Lemuel Gulliver সমুদ্র ভ্রমণে বের হয় এবং পথিমধ্যে ঝড়ের কবলে পড়ে জাহাজ ভেঙ্গে যায়।
- Gulliver প্রানে বেঁচে যায় কিন্তু এক অদ্ভুত দেশে নিজেকে আবিষ্কার করে যেখানে সবার উচ্চতা ৬ ইঞ্চির নিচে।
- তার বিশাল দেহ নিয়ে লিলিপুটদের নানা উপকারে আসে, এমনকি পার্শ্ববর্তী রাজ্য Blefuscu এর সাথে চলমান যুদ্ধেও লড়াই করে।
- এভাবে সে লিলিপুটদের রাজ্যে একপ্রকার হিরোতে পরিণত হয়।
- যদিও এক পর্যায়ে Gulliver তাদের রোষের শিকার হয় এবং তার শাস্তি হয় তার চোখ তুলে ফেলা হবে।
- পরিশেষে Gulliver শাস্তি এড়াতে সমর্থ হয় এবং বেঁচে ফিরে আসে।

• Jonathan Swift:
- তিনি একজন Anglo-Irish author এবং clergyman ছিলেন।
- তিনি Augustan age এর একজন Author.
- Jonathon Swift, an Anglo-Irish author, who was the foremost prose satirist in the English language.
- অর্থাৎ, ইংরেজি সাহিত্যের সবচেয়ে বিখ্যাত ব্যঙ্গরচয়িতা বা satirist হলেন Jonathan Swift.
- তার রচিত বিখ্যাত satire হলো ‘Gulliver’s Travels’.
- তাঁর ছদ্মনাম Isaac Bickerstaff.

• Famous works:
- Gulliver's Travels,
- A Tale of a Tub,
- A Modest Proposal,
- The Battle of Books.

Other options,
ক) Robinson Crusoe
লেখক: Daniel Defoe.

খ) A Doll’s House
লেখক: Henrik Ibsen.

গ) Vanity Fair
লেখক: William Makepeace Thackeray.

Source: Britannica & Live MCQ lecture.

১৩২.
'We know that the earth is a planet'. The underlined part is a/an-
  1. noun clause
  2. adverbial clause
  3. adjective clause
  4. principal clause.
ব্যাখ্যা

We know that the earth is a planet. The underlined part is a/an - Noun clause.
- এখানে "that the earth is a planet" অংশটি 'know' verb -এর object হিসেবে কাজ করছে।

• Noun clause:

- যে সব subordinate- clause noun এর কাজ করে থাকে অর্থাৎ, subject, object, compliment, বা case in apposition- এর কাজ করে থাকে তাদেরকে বলে noun clause.
- Noun clauses are used when a single word isn't enough.

• একটি বাক্যের যেসব স্থানে Noun clause বসতে পারে -

1. Verb এর subject হিসেবে।
Example: That he has much money is known to all.

2. Verb এর object হিসেবে।
Example: I know that he has done it.

3. Verb এর complement হিসেবে।
Example: This is what I said.

4. Preposition এর object হিসেবে;
Example: I cannot understand the meaning of what he said.

5. Noun/ pronoun - এর apposition হিসেবে।
Example: The fact that he is a thief is clear to all.

Source:
- A Passage to the English Language, S.M. Zakir Hussain.
- Advanced Learner's Grammar and Composition by Chowdhury and Hossain.

১৩৩.
Select the sentence in which 'better' is an adverb.
  1. We're helping for better weather tomorrow.
  2. Sound travels better in water than in air.
  3. It's hard to decide which one is better.
  4. He joined the gym to better his health.
ব্যাখ্যা

সঠিক উত্তর হলো খ) Sound travels better in water than in air.
- এই বাক্যে 'better' শব্দটি 'travels' verb কে বর্ণনা করছে।
- এটি বলছে শব্দ কীভাবে ভ্রমণ করে।
- অর্থাৎ, "শব্দ পানিতে বেশি ভালোভাবে ভ্রমণ করে"।
- যেহেতু এটি verb কে modify করছে, তাই এটি adverb.

Better: [adverb]
English meaning: in a more excellent or pleasant way; to a higher or greater degree.
Bangla meaning: কোনো কাজ বা পরিস্থিতি আগের চেয়ে ভালো বা বেশি আনন্দদায়কভাবে ঘটেছে।

Example:
- She sings much better than I do.
- Sound travels better in water than in air.

Other options,

ক) We're hoping for better weather tomorrow.
- 'better' এখানে adjective.
- এটি noun 'weather' কে বর্ণনা করছে।

গ) It's hard to decide which one is better.
- এখানে better হচ্ছে adjective।
- এখানে "better" শব্দটি "which one" কে বর্ণনা করছে।
- এটি verb 'is' এর পরে complement হিসেবে এসেছে।

ঘ) He joined the gym to better his health.
- এখানে better হলো verb, অর্থাৎ “উন্নত করা”।

Source:
- Oxford Dictionary.

১৩৪.
Fill in the blanks with appropriate words. 'Selina knocked it _______ the park with her performance in culinary art.
  1. outside
  2. out of
  3. inside
  4. off
ব্যাখ্যা

সঠিক উত্তর হলো খ) out of.

Complete sentence: Selina knocked it out of the park with her performance in culinary art.
Bangla: সেলিনা রান্নার শিল্পে তার পারফরম্যান্স দিয়ে অসাধারণ সফলতা পেয়েছে/দুর্দান্ত করেছে।

knock sb/sth out of the park: [idiom]

English meaning: to do something much better than someone else, or to be much better than someone or something else/ to do something extremely well.
Bangla meaning: কারো চেয়ে অনেক ভালো কিছু করা, বা কারো/কিছুর চেয়ে অনেক বেশি সাফল্য অর্জন করা/ কোনো কাজ চরমভাবে দক্ষতার সঙ্গে সম্পন্ন করা।

Example:
- Hotel Ferrero knocks everyone out of the park with their breakfast.
- The BBC is hitting them all out of the park at the moment, in children's drama at least.
- I feel like I can write anything for this actor, and she'll knock it out of the park.
- If I don't hit this out of the park, I'm finished.

সঠিক idiom টি হলো - knock out of the park তাই উল্লিখিত অন্য অপশন গুলো এখানে অপ্রাসঙ্গিক।

Source:
- Cambridge Dictionary.

১৩৫.
The idiom 'icing on the cake' means -
  1. a slice of the cake
  2. an attractive but unnecessary addition
  3. an attractive service
  4. an attractive and essential enhancement
ব্যাখ্যা

সঠিক উত্তর - খ) an attractive but unnecessary addition.

• The icing on the cake:
[idiom]
English meaning: If you describe something as the icing on the cake, you mean that it makes a good thing even better, but it is not essential.
Bangla meaning: এর মানে হলো এটি ইতিমধ্যেই ভালো কিছুকে আরও ভালো করে তোলে, কিন্তু এটি অপরিহার্য নয়।

Example:

- I was just content to see my daughter in such a stable relationship, but a grandchild, that really was the icing on the cake.

- I love my job, and getting public recognition is merely the icing on the cake.

- The third goal was the icing on the cake.

Other options,
ক) a slice of the cake:
→ কেকের একটি টুকরো।

খ) an attractive but unnecessary addition:
→ আকর্ষণীয় কিন্তু অপ্রয়োজনীয় সংযোজন।

গ) an attractive service:
→ আকর্ষণীয় সেবা।

ঘ) an attractive and essential enhancement:
→ আকর্ষণীয় এবং প্রয়োজনীয় সংযোজন।

অপশন গুলোর অর্থ বিবেচনা করে দেখা যায়, সঠিক উত্তর - খ) an attractive but unnecessary addition.

Source:
- Cambridge Dictionary.
- Collins Dictionary.

১৩৬.
Choose the synonym for 'fright':
  1. placidity
  2. composure
  3. apprehension
  4. equanimity
ব্যাখ্যা

সঠিক উত্তর: গ) apprehension.

• Fright: [noun]

English meaning: the feeling of fear, especially if felt suddenly, or an experience of fear that happens suddenly.
Bangla meaning: আকস্মিক প্রচণ্ড ভীতি; আতঙ্ক; ত্রাস; সন্ত্রাস; শঙ্কা।

Other options,

ক) Placidity: [noun]
English meaning: the fact of being calm and peaceful, with very little movement.
Bangla meaning: শান্ততা; প্রসন্নতা।

খ) Composure: [noun]
English meaning: the state of being calm and in control of your feelings or behaviour.
Bangla meaning: শান্তি; স্থৈর্য; আত্মসংবরণ।

গ) Apprehension: [noun]
English meaning:
- worry about the future, or a fear that something unpleasant is going to happen.
- an act of catching and arresting someone who has not obeyed the law.
- the act of understanding something, or the way that something is understood.

Bangla meaning:

- [Countable noun, Uncountable noun] আশঙ্কা; ভবিষ্যৎ বিষয়ে উৎকণ্ঠার অনুভূতি: filled with apprehension; an apprehension of failure.
- [Uncountable noun] (আইন সম্বন্ধীয়) গ্রেফতার: the apprehension of a thief.
- [Uncountable noun] উপলব্ধি; চেতনা; বোধ: apprehension of truth.

ঘ) Equanimity: [noun]
English meaning: a calm mental state, especially after a shock or disappointment or in a difficult situation
Bangla meaning: মনমেজাজের প্রশান্তি।

অপশন বিবেচনা করে দেখা যায়, Fright এর synonym হলো - Apprehension.

Source:
- Cambridge Dictionary.
- Accessible Dictionary.
- Oxford Dictionary.

১৩৭.
"Rubiyat of Khayyam" is attributed to
  1. Edward FitzGerald
  2. Scott Fitzgerald
  3. Thomas Fitzgerald
  4. William Fitzgerald
ব্যাখ্যা

সাহিত্য কর্মটির সঠিক নাম - The Rubaiyat of Omar Khayyam.

The Rubaiyat of Omar Khayyam:
- এটি রচনা করেন সাহিত্যিক Edward Fitzgerald.
- যুগ শ্রেষ্ঠ জ্যেতির্বিজ্ঞানী ওমার খৈয়ামের রচনা থেকে অনুপ্রাণিত।
- এটি মূলত: অনুবাদ নয় বরং মূল গ্রন্থকে সামনে রেখে মৌলিক রচনা।
- এটি ইংরেজি সাহিত্যের ইতিহাসে একটি Classic হিসেবে বিবেচিত।
- It is one of the most frequently quoted lyric poems, and many of its phrases are passed into common currency.
- প্রথম প্রকাশিত হয় ১৮৫৯ সালে।
- ইংরেজি সংস্করণে এই নামের সাথে যুক্ত হয়- "the Astronomer-Poet of Persia" বাক্যটি।

• Edward Fitzgerald:
- Edward Fitzgerald belongs to the Victorian Period.
- He was born on March 31, 1809, in England.
- FitzGerald was educated at Trinity College, Cambridge, where he formed a lifelong friendship with William Makepeace Thackeray.

• Notable Work:
- The Rubaiyat of Omar Khayyam.

Source: Live MCQ English Essence and Britannica.

১৩৮.
'We work every day except Friday'. In this sentence 'except' is a/an
  1. adjective
  2. noun
  3. preposition
  4. pronoun
ব্যাখ্যা

We work every day except Friday. In this sentence, 'except' is a/an - Preposition.
- এখানে except শব্দটি বোঝাচ্ছে "Friday-এর বাইরে" বা "Friday ছাড়া"।
- অর্থাৎ এটি Friday-এর সাথে সম্পর্ক স্থাপন করছে, যা হলো preposition-এর কাজ।
- এটি দেখাচ্ছে যে শুক্রবার ছাড়া বাকি সব দিন কাজ হয়।

• Except: [preposition]
English meaning: ​used before you mention the only thing or person about which a statement is not true.
Bangla meaning: ব্যতীত; ছাড়া।

Example:
- We work every day except Sunday.
- They all came except Matt.
- I had nothing on except for my socks.

Source:
- Oxford Dictionary.
- Accessible Dictionary.

১৩৯.
Who wrote "A Vindication of the Rights of Women"?
  1. Claire Clairmont
  2. Marry Wollstonecraft
  3. Mary Wollstonecraft Godwin
  4. Mary Shelley
ব্যাখ্যা

A Vindication of the Rights of Woman:
- এটি রচনা করেন British writer Mary Wollstonecraft Godwin.
- এটি ১৭৯২ সালে প্রকাশিত একটি প্রসিদ্ধ নারীবিদ্বেষ-বিরোধী প্রবন্ধ, যা ব্রিটিশ লেখক এবং নারী অধিকার কর্মী Mary Wollstonecraft লিখেছেন।
- এই রচনায় নারীদের শিক্ষা, রাজনীতি, সমাজ এবং বিবাহে ক্ষমতায়ন (empowerment) নিশ্চিত করার জন্য যুক্তি উপস্থাপন করা হয়েছে।

Mary Wollstonecraft/ Mary Wollstonecraft Godwin:
- জন্ম ২৭ এপ্রিল, ১৭৫৯, লন্ডন, ইংল্যান্ড — মৃত্যু ১০ সেপ্টেম্বর, ১৭৯৭, লন্ডন।
- তিনি ছিলেন একজন ইংরেজি লেখিকা এবং নারীদের শিক্ষাগত ও সামাজিক সমতার প্রবল সমর্থক। তিনি তার বিশ্বাসসমূহ “A Vindication of the Rights of Woman” (১৭৯২) গ্রন্থে উপস্থাপন করেন, যা নারীবাদ (ফেমিনিজম)-এর একটি ক্লাসিক হিসেবে বিবেচিত।

Notable works:
- A Vindication of the Rights of Woman,
- Letters Written During a Short Residence in Sweden, Norway, and Denmark,
- Maria; or, The Wrongs of Woman.

Other option,
খ) Marry Wollstonecraft: Marry ভুল বানান, সঠিক বানান হলো - Mary Wollstonecraft.

-----------
উল্লেখ্য -
• Mary Wollstonecraft:
- Married name: Mary Wollstonecraft Godwin is actually her full married name, but she is generally known as Mary Wollstonecraft.
- Spouse name: William Godwin.
- Daughter: Mary Wollstonecraft Shelley.

Source: Britannica.

১৪০.
Which sentence is correct?
  1. The picture was hanged on the wall.
  2. The picture was hung on the wall.
  3. The picture was hunged on the wall.
  4. The picture had hanged on the wall.
ব্যাখ্যা

সঠিক উত্তর: খ) The picture was hung on the wall.

"Hang" verb এর past tense ও past participle আলাদা ব্যবহারে বিভক্ত।


• Hang(verb) ঝোলা; ঝুলে থাকা; ঝুলানো; ঝুলিয়ে রাখা।
- এই অর্থে এর past tense, past participle form হবে Hung.
- hang something from the ceiling; a picture hanging on the wall; windows hung with curtains.

• Hang (verb) ফাঁসি দেওয়া; ফাঁসি হওয়া; ফাঁসি নেওয়া
- এই অর্থে এর past tense, past participle form hanged হবে।
- He was hanged for murder, খুনের দায়ে ফাঁসি হয়েছে;
- He hanged himself, ফাঁস নিয়ে মরেছে।

অর্থাৎ, যখন কোনো ছবি বা বস্তু দেওয়ালে ঝুলানো হয়, তখন past tense ও past participle হলো hung.
- যখন কারো ফাঁসিতে ঝুলানো হয়, তখন past tense ও past participle হলো hanged.

• যেহেতু এখানে ছবি দেয়ালে ঝুলানো হয়েছে, তাই সঠিক ব্যবহার হবে: was hung.

Other options,

ক) The picture was hanged on the wall.
- Hanged ব্যবহার হয় ফাঁসিতে ঝুলানো এর জন্য, যেমন Execution-এর ক্ষেত্রে।
- এখানে ছবির প্রসঙ্গ, তাই ভুল।

খ) The picture was hunged on the wall.
- এখানে, Hunged হলো ভুল বানান; English-এ hung হলো সঠিক past participle.

ঘ) The picture had hanged on the wall.
- hanged ফাঁসির জন্য ব্যবহৃত হয়।
- এছাড়া, past perfect tense "had hanged" এখানে প্রয়োজন নেই, কারণ সাধারণ description দেওয়া হচ্ছে।

Source:
- Accessible Dictionary.

১৪১.
১৯৫২ সালের ভাষা আন্দোলনে নেতৃস্থানীয় ভুমিকা পালন করে সাংস্কৃতিক সংগঠন 'তমুদ্দুন মজলিস'। তমুদ্দুন মজলিস-এর প্রতিষ্ঠাতা অধ্যাপক আবুল কাশেম ঢাকা বিশ্ববিদ্যালয়ের কোন বিভাগের শিক্ষক ছিলেন?
  1. রসায়ন
  2. পদার্থ বিজ্ঞান
  3. অর্থনীতি
  4. ইসলামী শিক্ষা
ব্যাখ্যা

⇒ 'তমদ্দুন মজলিস'-এর নেতা জনাব আবুল কাশেম ঢাকা বিশ্ববিদ্যালয়ের পদার্থ বিজ্ঞান বিভাগের অধ্যাপক ছিলেন।

♦ তমদ্দুন মজলিশ:
→ তমদ্দুন মজলিশ ছিল ভাষা আন্দোলনের প্রথম সংগঠন।
→ তমদ্দুন মজলিশ ইসলামী আদর্শাশ্রয়ী একটি সাহিত্য ও সাংস্কৃতিক সংগঠন।
→ ১৯৪৭ সালের ২ সেপ্টেম্বর তমদ্দুন মজলিশ প্রতিষ্ঠিত হয়।
→ অধ্যাপক আবুল কাশেমের উদ্যোগে তমদ্দুন মজলিশ প্রতিষ্ঠিত হয়।
→ তিনি ঢাকা বিশ্ববিদ্যালয়ের পদার্থবিজ্ঞান বিভাগের অধ্যাপক ছিলেন।
→ মদ্দুন মজলিশ প্রতিষ্ঠায় অধ্যাপক আবুল কাশেমের অগ্রণী সহযোগীদের মধ্যে ছিলেন দেওয়ান মোহাম্মদ আজরফ, অধ্যাপক এ.এস.এম নূরুল হক ভূঁইয়া, শাহেদ আলী, আবদুল গফুর, বদরুদ্দীন উমর, হাসান ইকবাল
→ অধ্যাপক আবুল কাশেম ছিলেন পাকিস্তান তমদ্দুন মজলিশের প্রতিষ্ঠাতা সাধারণ সম্পাদক এবং দেওয়ান মোহাম্মদ আজরফ তমদ্দুন মজলিশের সভাপতি নির্বাচিত হন।
→ উর্দুকে পাকিস্তানের একমাত্র রাষ্ট্রভাষা করার উদ্যোগের বিরুদ্ধে বস্তুত তমদ্দুন মজলিশই প্রথম প্রতিবাদ উত্থাপন করে।
→ এই সংগঠন ১৯৪৭ সালের ১৫ সেপ্টেম্বর বাংলাকে রাষ্ট্রভাষা করার দাবি জানিয়ে একটি পুস্তিকা প্রকাশ করে।
→ বাংলাকে রাষ্ট্রভাষা করার দাবি জানিয়ে তমদ্দুন মজলিশের প্রকাশিত পুস্তিকাটির নাম ছিল 'পাকিস্তানের রাষ্ট্রভাষা বাংলা না উর্দু'।
→ তমদ্দুন মজলিশ ছাত্র-শিক্ষক মহলে বাংলাভাষা সম্পর্কে সচেতনতা বৃদ্ধি করে।
→ ১৯৪৭ সালের মধ্যেই বহু প্রখ্যাত এবং অখ্যাত লেখক বাংলা রাষ্ট্রভাষার প্রতি তাদের দ্ব্যর্থহীন সমর্থন জানিয়েছিলেন।
→ পাকিস্তানের পাবলিক সার্ভিস কমিশনের বিষয়তালিকা থেকে এবং নৌ ও অন্যান্য বিভাগের নিয়োগ পরীক্ষায় বাংলাকে বাদ দেয়া হয়।
→ এমনকি পাকিস্তানের গণপরিষদের সরকারি ভাষা হিসেবে ইংরেজি ও উর্দুকে নির্বাচন করা হয়। ফলে বাঙালিরা বিক্ষুব্ধ হয়ে ওঠে।

তথ্যসূত্র - বাংলাদেশের ইতিহাস ও বিশ্বসভ্যতা, এসএসসি প্রোগ্রাম, বাংলাদেশ উন্মুক্ত বিশ্ববিদ্যালয় ও বাংলাপিডিয়া।

১৪২.
বাংলাদেশের জাতীয় দিবস কোনটি?
  1. ২৬ মার্চ
  2. ২১ ফেব্রুয়ারী
  3. ১৬ ডিসেম্বর
  4. ৫ আগস্ট
ব্যাখ্যা

⇒ ২৬ শে মার্চ বাংলাদেশের জাতীয় ও স্বাধীনতা দিবস।

♦ স্বাধীনতা দিবস:
→ ১৯৮০ সালের ৩ অক্টোবর ২৬ শে মার্চকে জাতীয় দিবস হিসেবে পালনের সিদ্ধান্ত গৃহিত হয়।
→ ১৯৮১ সাল থেকে ২৬ শে মার্চ বাংলাদেশের জাতীয় দিবস হিসেবে পালিত হয়ে আসছে।
→ ১৯৭১ সালের ২৬ শে মার্চ বাংলাদেশের স্বাধীনতা ঘোষণা করা হয়। সেজন্যে একে স্বাধীনতা দিবস বলা হয়।

♦ উল্লেখ্য:
→ ২১শে ফেব্রুয়ারি শহিদ দিবস এবং আন্তর্জাতিক মাতৃভাষা দিবস।
→ ১৬ ডিসেম্বর বাংলাদেশের বিজয় দিবস।
→ ৫ আগস্ট 'জুলাই গণ-অভ্যুত্থান দিবস'।

♦ বাংলাদেশের অন্যান্য গুরুত্বপূর্ণ দিবস:
→ ০২ মার্চ জাতীয় পতাকা দিবস।
→ ০১ ডিসেম্বর মুক্তিযোদ্ধা দিবস।
→ ১৪ ডিসেম্বর শহীদ বুদ্ধিজীবি দিবস।
→ ১৬ জুলাই 'জুলাই শহীদ দিবস'।

তথ্যসূত্র - জাতীয় তথ্য বাতায়ন, সংস্কৃতি বিষয়ক মন্ত্রণালয় ও বাংলাপিডিয়া।

১৪৩.
নিম্নোক্ত কোন ভারতীয় রাজ্যের বাংলাদেশের সাথে কোন ভূমি সীমানা নাই?
  1. নাগাল্যান্ড
  2. মিজোরাম
  3. মেঘালয়
  4. আসাম
ব্যাখ্যা

⇒ ভারতের নাগাল্যান্ড রাজ্যের সাথে বাংলাদেশের কোন ভূমি সীমানা নেই।

♦ বাংলাদেশের সীমান্ত:
→ বাংলাদেশের সাথে দুটি দেশের সীমান্ত সংযোগ রয়েছে। যথা:
• ভারত ও
• মিয়ানমার।
→ বাংলাদেশের মোট সীমান্তবর্তী জেলা: ৩২টি।
→ ভারতের সাথে বাংলাদেশের সীমান্তবর্তী জেলা: ৩০টি।
→ মায়ানমারের সাথে বাংলাদেশের সীমান্তবর্তী জেলা: ৩টি।
→ বাংলাদেশ-ভারত ও মায়ানমার এই তিনটি দেশের যৌথ সীমান্ত রয়েছে রাঙ্গামাটি জেলার।

♦ ভারত-বাংলাদেশ সীমান্ত:
→ ভারত ও বাংলাদেশ সীমান্তের দৈর্ঘ্য ৪১৪২ কিলোমিটার।
→ এটি পৃথিবীর ৫ম দীর্ঘতম আন্তর্জাতিক সীমারেখা।
→ বাংলাদেশের সাথে ভারতের ৫টি রাজ্যের সীমান্ত আছে।
→ বাংলাদেশের সীমান্তবর্তী ভারতের রাজ্যসমূহ: আসাম, ত্রিপুরা, মিজোরাম, মেঘালয় ও পশ্চিমবঙ্গ।

তথ্যসূত্র - জাতীয় তথ্য বাতায়ন, ওয়ার্ল্ড এটলাস ও Statistica.com

১৪৪.
আয়নাঘর কী?
  1. স্বচ্ছ কামরা
  2. পরিবেশ বান্ধব কৃষিকাজ
  3. গোপন কারাগার
  4. একটি হলিউড মুভি
ব্যাখ্যা

⇒ আয়নাঘর দেশের প্রতিরক্ষা বাহিনীর গোয়েন্দা শাখার অধীনে পরিচালিত 'গোপন কারাগার'।

♦ আয়নাঘর:
→ সামরিক গোয়েন্দা সংস্থা ডিজিএফআই (ডিরেক্টরেট জেনারেল অফ ফোর্সেস ইন্টেলিজেন্স) এবং বাংলাদেশের প্রতিরক্ষা বাহিনীর কাউন্টার-টেরোরিজম ইন্টেলিজেন্স ব্যুরো (সিটিআইবি) দ্বারা পরিচালিত একটি গোপন আটক কেন্দ্রের নাম আয়নাঘর।
→ আয়নাঘর দেশের প্রতিরক্ষা বাহিনীর গোয়েন্দা শাখার অধীনে পরিচালিত হয়।
→ এটি রাজনৈতিক বিরোধীদের, সরকার-সমালোচকদের, সন্দেহভাজন 'চরমপন্থী' বা 'সন্ত্রাসী'দের গুম করে আটক রাখার জন্য ব্যবহৃত হয়েছে।
→ মূলত সরকার-বিরোধী চক্রান্তে সন্দেহভাজনদের আটক রাখা হত এখানে।
→ শুধু তৎকালীন সরকারের সমালোচকেরা নন, ‘চরমপন্থী’ বা ‘সন্ত্রাসবাদী’ হিসাবে চিহ্নিত করেও বহু মানুষকে ‘আয়নাঘর’ বা সেই জাতীয় গোপন বন্দিশালাগুলিতে আটক করা হয়েছিল।

♦ আয়নাঘরের অবস্থান:
→ আয়নাঘরের অবস্থান ঢাকা সেনানিবাস এলাকায়, বিশেষ করে আন্তর্জাতিক বিমানবন্দরের পাশে, যেখানে প্রাচীর-আবৃত অন্ধকার কক্ষসমূহ ছিল।
→ এতে কমপক্ষে ১৬টি কক্ষ রয়েছে, প্রতিটিতে ৩০ জন করে বন্দি রাখার সক্ষমতা রয়েছে।

♦ উল্লেখ্য:
→ ২০২৫ সালের ১২ ফেব্রুয়ারি বিদেশি গণমাধ্যমকর্মী ও ভুক্তভোগীদের সঙ্গে নিয়ে বহুল আলোচিত ‘আয়নাঘর’ পরিদর্শন করেছেন প্রধান উপদেষ্টা ড. মুহাম্মদ ইউনূস।
→ রাজধানীর আগারগাঁও, কচুক্ষেত ও উত্তরা এলাকায় তিনটি স্পট পরিদর্শন করেন তিনি।

তথ্যসূত্র - পত্রিকার রিপোর্ট।

১৪৫.
বাংলাদেশের সংবিধানের আলোকে নিম্নের কোন অধিকারটি মৌলিক অধিকারের অন্তর্ভুক্ত নয়?
  1. বাক-স্বাধীনতার অধিকার
  2. শিক্ষার অধিকার
  3. সভা সমাবেশের অধিকার
  4. ধর্মচর্চার অধিকার
ব্যাখ্যা

⇒ বাংলাদেশের সংবিধানের আলোকে শিক্ষার অধিকার মৌলিক অধিকারের অন্তর্ভুক্ত নয়।

♦ বাংলাদেশ সংবিধানের তৃতীয় অধ্যায়:
→ বাংলাদেশ সংবিধানের তৃতীয় অধ্যায়ের আলোচ্য বিষয় মৌলিক অধিকার।
→ বাংলাদেশের সংবিধানের আলোকে বাক-স্বাধীনতার অধিকার, সভা সমাবেশের অধিকার ও ধর্মচর্চার অধিকার মৌলিক অধিকারের অন্তর্ভুক্ত।

♦ তৃতীয় অধ্যায়ের অন্যান্য আলোচ্য বিষয়সমূহ:
→ আইনের দৃষ্টিতে সমতা, ধর্ম, প্রভৃতি কারণে বৈষম্য, সরকারী নিয়োগ-লাভে সুযোগের সমতা, বিদেশী, খেতাব, প্রভৃতি গ্রহণ নিষিদ্ধকরণ, আইনের আশ্রয়-লাভের অধিকার, জীবন ও ব্যক্তি-স্বাধীনতার অধিকার-রক্ষণ, গ্রেপ্তার ও আটক সম্পর্কে রক্ষাকবচ, জবরদস্তি-শ্রম নিষিদ্ধকরণ, বিচার ও দন্ড সম্পর্কে রক্ষণ, চলাফেরার স্বাধীনতা, সমাবেশের স্বাধীনতা, সংগঠনের স্বাধীনতা, চিন্তা ও বিবেকের স্বাধীনতা এবং বাক্-স্বাধীনতা, পেশা বা বৃত্তির স্বাধীনতা, ধর্মীয় স্বাধীনতা, সম্পত্তির অধিকার।

♦ বাংলাদেশ সংবিধানের ১১টি অধ্যায়ের আলোচ্য বিষয়সমূহ:
• প্রথম অধ্যায় - প্রজাতন্ত্র।
• দ্বিতীয় অধ্যায় - রাষ্ট্র পরিচালনার মূলনীতি।
• তৃতীয় অধ্যায় - মৌলিক অধিকার।
• চতুর্থ অধ্যায় - নির্বাহী বিভাগ।
• পঞ্চম অধ্যায় - আইনসভা।
• ষষ্ঠ অধ্যায় - বিচার বিভাগ।
• সপ্তম অধ্যায় - নির্বাচন।
• অষ্টম অধ্যায় - মহা হিসাব নিরীক্ষক ও নিয়ন্ত্রক।
• নবম অধ্যায় - বাংলাদেশের কর্মবিভাগ।
• দশম অধ্যায় - সংবিধানের সংশোধন।
• একাদশ অধ্যায় - বিবিধ।

তথ্যসূত্র - বাংলাদেশের সংবিধান।

১৪৬.
'কম-দামে কেনা বেশী দামে বেচা আমাদের স্বাধীনতা'-বইটির লেখক কে?
  1. আবুল কালাম শামসূদ্দীন
  2. আবুল মনসুর আহমদ
  3. শামসুদ্দিন আবুল কালাম
  4. এস ওয়াজেদ আলী
ব্যাখ্যা

♦ বেশি দামে কেনা কম দামে বেচা আমাদের স্বাধীনতা:
→ 'বেশি দামে কেনা কম দামে বেচা আমাদের স্বাধীনতা' গ্রন্থের লেখক আবুল মনসুর আহমেদ।
→ 'বেশি দামে কেনা কম দামে বেচা আমাদের স্বাধীনতা' গ্রন্থে যে ৪২টি নিবন্ধ রয়েছে।
→ সেগুলির মধ্যে প্রথম ৩৯টি ১৯৭২ ও ৭৩ সালে দেশের সর্বাধিক প্রচারিত দৈনিক 'ইত্তেফাক'-এ প্রকাশিত হয়েছে।
→ এই গ্রন্থে প্রকাশিত ৪২-টি নিবন্ধ পাচ মিশালা হহলেও প্রত্যেকাঢর মূল বক্তব্য অভিন্ন।
→ প্রবন্ধগুলোতে নানান দিকে উদ্ভুত জাতীয় সমস্যার সুষ্ঠু সমাধানেরই পথ-নির্দেশনা লেখক তার লেখাগুলো দিয়েছেন।
→ অনেক বিষয়ে তিনি লেখা ও আলোচনা শুরু করে দেশকে এগিয়ে নিয়ে যাবার দায়িত্ব ন্যস্ত করেছেন সবার উপর।

♦ আবুল মনসুর আহমেদ:

→ তিনি ১৮৯৮ সালে ময়মনসিংহ জেলার ধানিখোলা গ্রামে জন্ম গ্রহণ করেন।
→ আবুল মনসুর আহমদ একজন সাংবাদিক, আইনজীবী, রাজনীতিবিদ, সাহিত্যিক।
→ তিনি খিলাফত, অসহযোগ, স্বরাজ আন্দোলনের সাথে যুক্ত ছিলেন।

♦ ব্যঙ্গরচনা:
→ আয়না,
→ ফুড কনফারেন্স,
→ গালিভারের সফরনামা

♦ স্মৃতিকথা:
→ আত্মকথা (১৯৭৮, আত্মজীবনী),
→ আমার দেখা রাজনীতির পঞ্চাশ বছর,
→ শেরে বাংলা হইতে বঙ্গবন্ধু।

♦ তাঁর রচিত উপন্যাস:
→ সত্যমিথ্যা,
→ জীবন ক্ষুধা,
→ আবে-হায়াৎ

তথ্যসূত্র - বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা ও বাংলাপিডিয়া।

১৪৭.
১৯১১ সালে বঙ্গভঙ্গ রদের পর ঢাকায় একটি বিশ্ববিদ্যালয় প্রতিষ্ঠার জন্য ব্রিটিশ সরকারের কাছে দেনদরবার করার ক্ষেত্রে কোন নেতা অগ্রণী ভূমিকা পালন করেন?
  1. হাকিম আজমল খান
  2. শেরে বাংলা এ, কে. ফজলুল হক
  3. স্যার সলিমুল্লাহ
  4. স্যার আব্দুর রহিম
ব্যাখ্যা

⇒ ১৯১১ সালে বঙ্গভঙ্গ রদের পর ঢাকায় একটি বিশ্ববিদ্যালয় প্রতিষ্ঠার জন্য ব্রিটিশ সরকারের কাছে দেনদরবার করার ক্ষেত্রে নওয়াব স্যার সলিমুল্লাহ অগ্রণী ভূমিকা পালন করেন।

♦ ঢাকা বিশ্ববিদ্যালয় প্রতিষ্ঠার ইতিহাস:
→ ঢাকা বিশ্ববিদ্যালয় প্রতিষ্ঠার জন্য নওয়াব স্যার সলিমুল্লাহ বিশেষ ভূমিকা পালন করেন।
→ তিনি ঢাকা বিশ্ববিদ্যালয় স্থাপনের জন্য ঢাকার রমনা এলাকায় নিজ জমি দান করেন।
→ বঙ্গভঙ্গের পর ঢাকায় 'সর্বভারতীয় মুসলিম শিক্ষা সম্মেলন' এবং 'পূর্ববঙ্গ ও আসাম প্রাদেশিক শিক্ষা সমিতির' সম্মেলন অনুষ্ঠিত হয়।
→ নওয়াব সলিমুল্লাহ ১৯০৫ সাল থেকেই ঢাকা বিশ্ববিদ্যালয় প্রতিষ্ঠার জন্য সরকারের ওপর চাপ দিচ্ছিলেন।
→ ১৯১২ সালের ২৯ জানুয়ারি লর্ড হার্ডিঞ্জ ঢাকায় আগমন করে তিন দিন অবস্থান করেন।
→ ৩১ জানুয়ারি নবাব সলিমুল্লাহর নেতৃত্বে ১৯ সদস্যের একটি মুসলিম প্রতিনিধি দল বড়লাটের সঙ্গে দেখা করে একটি মানপত্র প্রদান করেন এবং কয়েকটি প্রস্তাব পেশ করে পূর্ববঙ্গের মুসলমানদের স্বার্থসংরক্ষণের প্রতি তার দৃষ্টি আকর্ষণ করেন।
→ ১৯১২ সালের ২ ফেব্রুয়ারি এক ইশতেহারে ভারত সরকার কর্তৃক ঢাকা বিশ্ববিদ্যালয় প্রতিষ্ঠার সুপারিশ ঘোষণা করা হয়।
- ১৯২১ সাল থেকে ঢাকা বিশ্ববিদ্যালয়ে পাঠদান হয়ে আসছে।

তথ্যসূত্র - ঢাকা বিশ্ববিদ্যালয় ও ঢাকা জেলা ওয়েবসাইট এবং বাংলাপিডিয়া।

১৪৮.
সংবিধান অনুযায়ী জাতীয় সংসদের ইংরেজী নাম কী?
  1. Parliament
  2. National Parliament
  3. Legislature
  4. The House of the Nation
ব্যাখ্যা

⇒ সংবিধান অনুযায়ী জাতীয় সংসদের ইংরেজী নাম 'The House of the Nation'.
→ সংবিধানের পঞ্চম ভাগে আইনসভার উল্লেখ রয়েছে।
→ সংবিধানের ৬৫ নং অনুচ্ছেদে জাতীয় সংসদ প্রতিষ্ঠার উল্লেখ রয়েছে।

♦ জাতীয় সংসদ:
→ জাতীয় সংসদ গণপ্রজাতন্ত্রী বাংলাদেশের এক কক্ষবিশিষ্ট আইনসভা।
→ দেশের সংবিধানের বিধানাবলি সাপেক্ষে আইন প্রণয়ন ক্ষমতা এ সংসদের ওপর ন্যস্ত।
→ প্রতি নির্বাচনী এলাকা থেকে সরাসরি ভোটে নির্বাচিত ৩০০ সদস্য সমন্বয়ে জাতীয় সংসদ গঠিত হয়।
→ সংবিধানের পঞ্চদশ সংশোধনীতে (২০১১) মহিলা আসন সংখ্যা ৫০ করা হয়।
→ বাংলাদেশের জাতীয় সংসদের মোট আসন সংখ্যা ৩৫০টি।
→ জাতীয় সংসদের মেয়াদ ৫ বছর।
→ সংবিধানের ৭২ অনুচ্ছেদ অনুযায়ী সাধারণ নির্বাচনের ফলাফল ঘোষণার ৩০ দিনের মধ্যে সংসদের অধিবেশন আহবান করা হয়।
→ জাতীয় সংসদের কার্য পরিচালনার জন্য কোরাম থাকতে হয়।
→ অধিবেশনে কোরামের জন্য ন্যূনতম ৬০ জন সদস্যের উপস্থিতি প্রয়োজন।
→ সংবিধান অনুযায়ী কমপক্ষে ৬০ জন সদস্যের উপস্থিতিতে জাতীয় সংসদের কাজ চলবে অর্থাৎ ৬০ জন সদস্যের উপস্থিতিতে জাতীয় সংসদের কোরাম হবে।
→ ৬০ জনের কম সদস্য উপস্থিত থাকলে স্পিকার সংসদের অধিবেশন স্থগিত রাখেন।

তথ্যসূত্র - বাংলাপিডিয়া ও বাংলাদেশের সংবিধান।

১৪৯.
জিএসপি (GSP) এর পূর্ণ রূপ কী?
  1. Generalized System of Preference
  2. Global System of Positioning
  3. Global Strategic Partnership
  4. Government Support Program
ব্যাখ্যা

⇒ জিএসপি (GSP) এর পূর্ণরূপ 'Generalized System of Preferences'.

♦ GSP:
→ Generalized System of Preferences (GSP) হল উন্নয়নশীল দেশগুলোর জন্য বৈদেশিক বাণিজ্যে যুক্তরাষ্ট্রের নেওয়া এক ধরণের শুল্কমুক্ত বা শুল্ক হ্রাস সংক্রান্ত বিশেষ বাণিজ্যিক সুবিধা।
→ GSP হচ্ছে পণ্যের শুল্কমুক্ত প্রবেশাধিকার।
→ ইউরোপীয় ইউনিয়ন প্রথম GSP সুবিধা চালু করে।
→ নিম্ন আয়ের দেশ হিসেবে বাংলাদেশকে যুক্তরাষ্ট্র ও ইউরোপীয় ইউনিয়ন থেকে অগ্রাধিকারপ্রাপ্ত দেশ হিসেবে গণ্য করা হয়।

♦ উল্লেখ্য:
→ যুক্তরাষ্ট্র বাংলাদেশকে প্রথম জিএসপি সুবিধা দেয় ১ জানুয়ারি, ১৯৭৬ সালে।
→ যুক্তরাষ্ট্র থেকে বাংলাদেশ জিএসপি সুবিধা হারায় ২৭ জুন, ২০১৩ সালে।
→ যুক্তরাজ্য থেকে বাংলাদেশ জিএসপি সুবিধা পাবে ২০২৭ সাল পর্যন্ত।

তথ্যসূত্র - ইউরোপীয় ইউনিয়নের ওয়েবসাইট, যুক্তরাষ্ট্রের সরকারি ওয়েবসাইট, পত্রিকা রিপোর্ট।

১৫০.
চব্বিশের গণঅভ্যুত্থানের পর বাংলাদেশের জাতীয় সংসদের সংস্কার বিষয়ে ঐকমত্যের অন্যতম প্রস্তাব কি?
  1. দ্বি-স্তর বিশিষ্ট সংসদ
  2. সংসদের আসন বৃদ্ধি
  3. সংরক্ষিত নারী আসন বাতিল
  4. পি আর (PR) চালু করা
ব্যাখ্যা

⇒ চব্বিশের গণঅভ্যুত্থানের পর বাংলাদেশের জাতীয় সংসদের সংস্কার বিষয়ে ঐকমত্যের অন্যতম প্রস্তাব দ্বি-স্তর বিশিষ্ট সংসদ।

♦ সংস্কার প্রস্তাব:
→ এই সংস্কারে বর্তমান এককক্ষ সংসদের পরিবর্তে নিম্নকক্ষ (জাতীয় সংসদ) এবং উচ্চকক্ষ (সিনেট) গঠিত হবে।
→ যাতে আইন প্রণয়ন প্রক্রিয়া আরও সুষ্ঠু, জনকেন্দ্রিক এবং চেক-অ্যান্ড-ব্যালেন্স সহ নিশ্চিত হয়।
→ নিম্নকক্ষে ৪০০ সদস্য (৩০০ সরাসরি নির্বাচিত + ১০০ নারী সংরক্ষিত সরাসরি নির্বাচিত) এবং উচ্চকক্ষে ১০৫ সদস্য (১০০ সমানুপাতিক + ৫ রাষ্ট্রপতি মনোনয়ন, ৩০% নারী সংরক্ষিত) থাকবে।

♦ উল্লেখ্য:
→ রাষ্ট্রের বিভিন্ন ক্ষেত্রে সংস্কার আনার লক্ষ্যে প্রস্তাব তৈরির জন্য ২০২৪ সালের অক্টোবরের প্রথম সপ্তাহে ছয়টি সংস্কার কমিশন গঠন করে সরকার।
→ সেগুলো হলো সংবিধান, নির্বাচনব্যবস্থা, বিচার বিভাগ, দুর্নীতি দমন কমিশন, পুলিশ ও জনপ্রশাসন সংস্কার কমিশন কমিশন।
→ সংস্কার প্রশ্নে ঐকমত্য তৈরির লক্ষ্যে গত ১৫ ফেব্রুয়ারি যাত্রা শুরু করে জাতীয় ঐকমত্য কমিশন।
→ অন্তর্বর্তী সরকারের প্রধান উপদেষ্টা অধ্যাপক মুহাম্মদ ইউনূস এই কমিশনের সভাপতি।

তথ্যসূত্র - পত্রিকার রিপোর্ট।

১৫১.
বাংলাদেশের ওয়ারেন্ট অফ প্রেসিডেন্স অনুযায়ী সর্ব প্রথম কে অবস্থান করেন?
  1. প্রধানমন্ত্রী
  2. রাষ্ট্রপতি
  3. প্রধান উপদেষ্টা
  4. প্রধান বিচারপতি
ব্যাখ্যা

জুলাই, ২০২০ পর্যন্ত সংশোধিত ওয়ারেন্ট অফ প্রেসিডেন্স অনুযায়ী:

রাষ্ট্রপতি (President of the Republic) এর অবস্থান সর্ব প্রথম।

উল্লেখ্য,
২. প্রধানমন্ত্রী
৩. সংসদের স্পিকার
৪. বাংলাদেশের প্রধান বিচারপতি ও প্রাক্তন রাষ্ট্রপতিগণ।
৫. কেবিনেট মন্ত্রিগণ; কেবিনেটের প্রধান হুইপ; সংসদের ডেপুটি স্পিকার; সংসদে বিরোধী দলের নেতা
৬. কেবল পদমর্যাদা অনুযায়ী মন্ত্রিসভার সমমানের পদে থাকা ব্যক্তিরা।
৭. বিশেষ দূত ও কমনওয়েলথ দেশের হাইকমিশনারগণ, যারা বাংলাদেশে নিয়োগপ্রাপ্ত।
৮. প্রধান নির্বাচন কমিশনার; পরিকল্পনা কমিশনের ডেপুটি চেয়ারম্যান; সংসদে বিরোধী দলের ডেপুটি নেতা;সুপ্রিম কোর্টের বিচারকগণ(আপিল বিভাগ); রাষ্ট্রের রাজ্য মন্ত্রীগণ; হুইপ।

এছাড়াও,
ওয়ারেন্ট অফ প্রেসিডেন্সে মোট ২৫টি পদক্রম রয়েছে।

উৎস: মন্ত্রিপরিষদ বিভাগ ওয়েবসাইট।

১৫২.
পাকিস্তানের ১৯৭০ সালের সাধারণ নির্বাচনে প্রধান নির্বাচন কমিশনার কে ছিলেন?
  1. বিচারপতি সাত্তার
  2. বিচারপতি সায়েম
  3. বিচারপতি আবু সাঈদ চৌধুরী
  4. বিচারপতি হামদুর রহমান
ব্যাখ্যা

• ১৯৭০ এর নির্বাচনে প্রধান নির্বাচন কমিশনার ছিলেন বিচারপতি আব্দুস সাত্তার।

১৯৭০ এর নির্বাচন:

- ১৯৭০ সালের ৭ ডিসেম্বর পাকিস্তান জাতীয় পরিষদের ও ১৯৭০ সালের ১৭ ডিসেম্বর প্রাদেশিক পরিষদের সাধারণ নির্বাচন অনুষ্ঠিত হয়।
- অবশ্য ১৯৭০ সালে তৎকালীন পূর্ব পাকিস্তানে প্রলয়ঙ্কারী ঘূর্ণিঝড়ের ফলে দুর্গত ও উপকূলীয় এলাকায় প্রাদেশিক পরিষদের নির্বাচন ১৭ ডিসেম্বরের পরিবর্তে ১৯৭১ সালের ১৭ জানুয়ারি অনুষ্ঠিত হয়েছিলো।
- নির্বাচনে মোট ২৪টি রাজনৈতিক দল অংশগ্রহণ করে।
- ১৯৭০ সালের সাধারণ নির্বাচনে জাতীয় পরিষদের পূর্ব পাকিস্তান অংশের জন্য ১৬২টি সাধারণ আসন ও ৭টি সংরক্ষিত মহিলা আসন সহ মোট বরাদ্দ ছিল ১৬৯টি আসন।
- জাতীয় পরিষদ নির্বাচনে আওয়ামী লীগ ৭টি সংরক্ষিত আসন সহ মোট ১৬৭টি আসন লাভ করে।
- প্রাদেশিক পরিষদ নির্বাচনে পূর্ব পাকিস্তানে ৩০০টি সাধারণ আসন ও ১০টি সংরক্ষিত মহিলা আসন সহ মোট ৩১০টি আসন বরাদ্দ ছিল।
- প্রাদেশিক পরিষদ নির্বাচনে পূর্ব পাকিস্তানে আওয়ামী লীগ ২৮৮টি সাধারন আসন ও ১০টি সংরক্ষিত আসন সহ মোট ২৯৮টি আসন লাভ করে।

উৎস: পৌরনীতি ও সুশাসন ২য় পত্র, মোজাম্মেল হক ও বাংলাদেশের ইতিহাস ও বিশ্বসভ্যতা, এসএসসি প্রোগ্রাম, বাংলাদেশ উন্মুক্ত বিশ্ববিদ্যালয় ও বাংলাপিডিয়া।

১৫৩.
বাংলাদেশের সর্বোচ্চ সংখ্যক চা বাগান রয়েছে কোন জেলায়?
  1. সিলেট
  2. চট্টগ্রাম
  3. মৌলভীবাজার
  4. পঞ্চগড়
ব্যাখ্যা

• চা-বাগান:
- চা বোর্ড কর্তৃক নিবন্ধকৃত দেশে মোট চা-বাগানের সংখ্যা - ১৭০ টি।
- মৌলভীবাজার জেলায় চা-বাগানের সংখ্যা - ৯০ টি।
- হবিগঞ্জ জেলায় চা-বাগানের সংখ্যা - ২৫ টি।
- সিলেট জেলায় চা-বাগানের সংখ্যা - ১৯ টি।
- চট্টগ্রাম জেলায় চা-বাগানের সংখ্যা - ২২ টি।
- রাঙ্গামাটি জেলায় চা-বাগানের সংখ্যা - ২ টি।
- পঞ্চগড় জেলায় চা-বাগানের সংখ্যা - ১১ টি।
- ঠাকুরগাওঁ জেলায় চা-বাগানের সংখ্যা - ১ টি।
- খাগড়াছড়ি জেলায় চা-বাগানের সংখ্যা -১ টি

উৎস: বাংলাদেশ চা বোর্ড ওয়েবসাইট।

১৫৪.
চীন, ভারত ও বাংলাদেশের প্রবাহিত ব্রহ্মপুত্র নদী, চীন বা তিব্বতে কী নামে পরিচিত?
  1. ইয়াংসি
  2. লিজিয়াং
  3. হয়াইলি
  4. ইয়ারলাং সাংপো
ব্যাখ্যা

ইয়ারলাং সাংপো” (Yarlung Tsangpo):
- ব্রহ্মপুত্র নদী এশিয়ার অন্যতম গুরুত্বপূর্ণ নদী এবং এটি তিনটি দেশের মধ্যে প্রবাহিত: চীন, ভারত, এবং বাংলাদেশ।
- ব্রহ্মপুত্র নদী চীনের তিব্বত মালভূমিতে উৎপন্ন হয় এবং সেখানে এ নদীকে “ইয়ারলাং সাংপো” (Yarlung Tsangpo) নামে ডাকা হয়।
- পরে এটি ভারতে প্রবেশ করে “সিয়াং” নামে পরিচিত হয় এবং বাংলাদেশে এসে “ব্রহ্মপুত্র” নামে প্রবাহিত হয়।

উল্লেখ্য,
- সম্প্রতি, চীনা কর্তৃপক্ষ তিব্বতের ভূখণ্ডে ইয়ারলাং সাংপো” (Yarlung Tsangpo) নদীতে বিশ্বের বৃহত্তম জলবিদ্যুৎ বাঁধ নির্মাণ শুরু করেছে। - এমন একটি প্রকল্প যা ভারতের ও বাংলাদেশের মধ্যে উদ্বেগ সৃষ্টি করেছে।

উৎস: ব্রিটানিকা ও বিবিসি নিউজ।

১৫৫.
বাংলাদেশের জুলাই বিপ্লবের শহীদ আবু সাঈদ কোন বিশ্ববিদ্যালয়ের ছাত্র ছিলেন?
  1. ঢাকা বিশ্ববিদ্যালয়
  2. রংপুর বিশ্ববিদ্যালয়
  3. রাজশাহী বিশ্ববিদ্যালয়
  4. বেগম রোকেয়া বিশ্ববিদ্যালয়
ব্যাখ্যা

• শহীদ আবু সাঈদ:
- রংপুর জেলার পীরগঞ্জ উপজেলা বাবনপুর গ্রামের মোঃ মকবুল হোসেন এর ঘরে জন্ম নেয় আবু সাঈদ।
- আবু সাঈদ বেগম রোকেয়া বিশ্ববিদ্যালয়ের ইংরেজি বিভাগের ১২তম ব্যাচের শিক্ষার্থী ছিলেন।
- তিনি বিশ্ববিদ্যালয়ের কোটা সংস্কার আন্দোলনের অন্যতম সমন্বয়ক ছিলেন।
- ২০২৪ সালে সরকারি চাকরিতে কোটা সংস্কারের দাবিতে আন্দোলনে ১৬ জুলাই দুপুরে বেগম রোকেয়া বিশ্ববিদ্যালয়ের সামনে পার্ক মোড়ে গুলিবিদ্ধ হন আবু সাঈদ।
- ১৬ জুলাই কোটা সংস্কার আন্দোলনকারীদের কর্মসূচি চলাকালে বেগম রোকেয়া বিশ্ববিদ্যালয়ের সামনের সড়কে পুলিশ আবু সাঈদকে খুব কাছ থেকে গুলি করে।
- আবু সাঈদ এক হাতে লাঠি নিয়ে দুই হাত প্রসারিত করে বুক পেতে দেন।
- কিছুক্ষণের মধ্যেই তিনি লুটিয়ে পড়েন।

উৎস: প্রথম আলো ও ডেইলি স্টার।

১৫৬.
বাংলাদেশের সবচেয়ে বড় গণমাধ্যম নিয়ন্ত্রক সংস্থা কোনটি?
  1. তথ্য মন্ত্রণালয়
  2. প্রেস কাউন্সিল
  3. বিটিআরসি
  4. বাংলাদেশ টেলিভিশন
ব্যাখ্যা

⇒ বাংলাদেশের সবচেয়ে বড় গণমাধ্যম নিয়ন্ত্রক সংস্থা প্রেস কাউন্সিল।

♦ প্রেস কাউন্সিল:
→ প্রেসের স্বাধীনতা রক্ষা এবং সংবাদপত্র ও সংবাদ সংস্থার মানোন্নয়ন ও মান সংরক্ষণের উদ্দেশ্যে ১৯৭৪ সালে প্রেস কাউন্সিল অ্যাক্ট প্রণয়নের মাধ্যমে বাংলাদেশ প্রেস কাউন্সিল গঠিত হয়।
→ প্রেস কাউন্সিল একটি আধা-বিচারিক সংস্থা।
→ প্রেস কাউন্সিলের উদ্দেশ্য হলো বাংলাদেশে সংবাদপত্র ও সংবাদ সংস্থাগুলোর স্বাধীনতা রক্ষা করা এবং তাদের মান উন্নত ও বজায় রাখা।

♦ প্রেস কাউন্সিলের কার্যাবলী:
• সংবাদপত্র ও সংবাদ সংস্থাগুলোর স্বাধীনতা বজায় রাখতে সহায়তা করা।
• উচ্চ পেশাগত মান অনুযায়ী সংবাদপত্র, সংবাদ সংস্থা এবং সাংবাদিকদের জন্য আচরণবিধি প্রণয়ন করা।
• সংবাদপত্র, সংবাদ সংস্থা ও সাংবাদিকদের দ্বারা জনসাধারণের উচ্চমানের রুচি বজায় রাখা এবং নাগরিকের অধিকার ও দায়িত্বের প্রতি সচেতনতা বৃদ্ধি করা।
• সাংবাদিকতা পেশায় নিয়োজিত সকলের মধ্যে দায়িত্ববোধ ও জনসেবার মনোভাব বৃদ্ধি করা।
• জনস্বার্থ ও গুরুত্বপূর্ণ তথ্যের সরবরাহ ও প্রচারে বাধা সৃষ্টিকারী যেকোনো উন্নয়ন পর্যালোচনা করা।
• সাংবাদিকতা পেশায় ব্যক্তিদের জন্য সঠিক শিক্ষা ও প্রশিক্ষণের সুবিধা প্রদান করা।



তথ্যসূত্র -
বাংলাদেশ প্রেস কাউন্সিল ওয়েবসাইট।
Media Landscapes

১৫৭.
Demographic Dividend বলতে কী বুঝায়?
  1. শিশু মৃত্যুহার হ্রাস
  2. জন্মহার শূনের কোটায় আনা
  3. জনসংখ্যার অধিকাংশ বেকার
  4. কর্মক্ষম বয়স গোষ্ঠীর অনুপাত বৃদ্ধি
ব্যাখ্যা

• ডেমোগ্রাফিক ডিভিডেন্ড:
- যখন একটি দেশের কর্মক্ষম জনসংখ্যা অর্থাৎ ১৫ থেকে ৬৪ বছর বয়সী জনসংখ্যার পরিমাণ দেশের মোট জনসংখ্যার ৫০ শতাংশের অধিক হয় তখন তাকে ‘ডেমোগ্রাফিক ডিভিডেন্ড’ হিসেবে অভিহিত করা হয়।
- জনসংখ্যার এরূপ অবস্থায় নির্ভরশীল জনগোষ্ঠী (১৫ বছরের কম ও ৬৪) সংখ্যা কর্মক্ষম জনগোষ্ঠী অপেক্ষা কম হয়।
- বাংলাদেশ বর্তমানে ডেমোগ্রাফিক ডিভিডেন্ড বা জনমিতিক লভ্যাংশ অবস্থা অতিবাহিত করছে।
- বিবিএসের জনশুমারি ও গৃহগণনা-২০২২–এর সমন্বয়কৃত জনসংখ্যার চূড়ান্ত প্রতিবেদন অনুযায়ী দেশের জনসংখ্যা ১৬ কোটি ৯৮ লাখ ২২ হাজার ৯১১ জন।
- তার মধ্যে ১৫-৬৪ বছর বয়সী কর্মক্ষম শ্রমশক্তির সংখ্যা হলো ১১ কোটি ৭ লাখ প্রায়, যা মোট জনসংখ্যার ৬৫.২৩ শতাংশ।
- জাতিসংঘের অর্থনৈতিক ও সামাজিক পরিষদের তথ্যানুসারে ২০৫০ সাল পর্যন্ত বাংলাদেশ জনমিতিক লভ্যাংশের সুবিধা ভোগ করবে।
- জনসংখ্যার এরূপ অবস্থাকে যথাযথভাবে ব্যবহার করতে সক্ষম হলে একটি দেশ দ্রুত উন্নয়ন সাধন করতে পারে।

উৎস: বিবিএস ও জাতিসংঘ ওয়েসাইট এবং প্রথম আলো।

১৫৮.
ভাষা-পরিবার অনুযায়ী সাঁওতাল জনগোষ্ঠী প্রধানত কোন পরিবার ভুক্ত?
  1. ইন্দো-আর্য
  2. দ্রাবিড়
  3. অস্ট্রিক-অস্ট্রো এসিয়াটিক (মুন্ডা)
  4. তিব্বত-বর্মী
ব্যাখ্যা

সাঁওতাল:
- সাঁওতাল বাংলাদেশের অন্যতম বৃহৎ আদিবাসী জনগোষ্ঠী।
- তাদের বাসস্থান মূলত রাজশাহী, দিনাজপুর, রংপুর ও বগুড়া জেলায়।
- প্রধান নিবাস রাঢ়বঙ্গ, বিহার ও উড়িষ্যার অরণ্য অঞ্চল এবং ছোটনাগপুর; পরে সরকার কর্তৃক নির্ধারিত সাঁওতাল পরগনায়।
- সাঁওতালরা অস্ট্রিক ভাষাভাষী আদি-অস্ট্রেলীয় (প্রোটো-অস্ট্রালয়েড) জনগোষ্ঠীর বংশধর।
- সাঁওতালরা ভারতীয় উপমহাদেশের অন্যতম আদি বাসিন্দা, এরা কৃষি উৎপাদন ব্যবস্থা এবং কৃষিসংস্কৃতির জনক ও ধারক হিসেবে স্বীকৃত।

সাঁওতালরা খুবই উৎসবপ্রিয় জাতি। বাঙালিদের মতো এদেরও বারো মাসে তেরো পার্বণ। তাদের বছর শুরু হয় ফাল্গুন মাসে। প্রায় প্রতিমাসে বা ঋতুতে রয়েছে পরব বা উৎসব যা নৃত্যগীতবাদ্য সহযোগে মহাসমারোহে অনুষ্ঠিত হয়ে থাকে।

নববর্ষের মাস ফাল্গুনে অনুষ্ঠিত হয় স্যালসেই উৎসব,
- চৈত্রে বোঙ্গাবোঙ্গি,
- বৈশাখে হোম,
- আশ্বিনে দিবি,
- পৌষ শেষে সোহরাই উৎসব পালিত হয়।

উৎস: বাংলাপিডিয়া।

১৫৯.
লর্ড কর্ণওয়ালিস ব্রিটিশ ভারতের গভর্নর জেনারেল হওয়ায় পূর্বে কোন্ ভূমিকায় ছিলেন?
  1. ব্রিটেনের পররাষ্ট্র মন্ত্রী
  2. ফ্রান্সে নিযুক্ত ব্রিটেনের রাষ্ট্রদূত
  3. যুক্তরাষ্ট্রের স্বাধীনতা যুদ্ধে ব্রিটিশ বাহিনীর প্রধান
  4. কেমব্রিজ বিশ্ববিদ্যালয়ের উপাচার্য
ব্যাখ্যা

• লর্ড কর্নওয়ালিস ভারতের গভর্নর-জেনারেল হওয়ার আগে আমেরিকার স্বাধীনতা যুদ্ধে দক্ষিণাঞ্চলে ব্রিটিশ বাহিনীর প্রধান হিসেবে দায়িত্ব পালন করেছিলেন।

• চার্লস কর্নওয়ালিস:

সেভেন ইয়ার্স ওয়ার (১৭৫৬–৬৩)-এর একজন অভিজ্ঞ সৈনিক ছিলেন কর্নওয়ালিস।
এই যুদ্ধে (১৭৬২ সালে) তিনি তার পিতার আর্ল উপাধি ও অন্যান্য পদবি উত্তরাধিকার সূত্রে পান।
তিনি যদিও উত্তর আমেরিকার উপনিবেশবাসীদের প্রতি ব্রিটিশ নীতির বিরোধিতা করেছিলেন, তবুও তিনি আমেরিকান বিপ্লব দমন করার জন্য যুদ্ধ করেছিলেন।

- ১৭৭৬ সালের শেষ দিকে তিনি জেনারেল জর্জ ওয়াশিংটনের দেশপ্রেমিক বাহিনীকে নিউ জার্সি থেকে বিতাড়িত করেন, কিন্তু ১৭৭৭ সালের শুরুর দিকে ওয়াশিংটন আবার রাজ্যের একটি অংশ পুনর্দখল করেন।

- ১৭৮০ সালের জুন মাসে দক্ষিণাঞ্চলে ব্রিটিশ বাহিনীর প্রধান হিসেবে কর্নওয়ালিস জেনারেল হোরেশিও গেটসের বিরুদ্ধে সাউথ ক্যারোলিনার ক্যামডেনে (১৬ আগস্ট, ১৭৮০) এক বড় জয় লাভ করেন।

- পূর্ব নর্থ ক্যারোলিনা হয়ে ভার্জিনিয়ায় অগ্রসর হয়ে তিনি জোয়ারভাটার বন্দর নগর ইয়র্কটাউনে তার ঘাঁটি স্থাপন করেন।
- সেখানে তিনি আমেরিকান ও ফরাসি স্থলবাহিনীর (ওয়াশিংটন ও কমতে দ্য রোশামবো এর নেতৃত্বে) এবং ফরাসি নৌবাহিনীর (কমতে দ্য গ্রাস এর নেতৃত্বে) দ্বারা অবরুদ্ধ হন।
- অবশেষে তিনি এক দীর্ঘ অবরোধের পর তার বিশাল সেনাবাহিনীসহ আত্মসমর্পণ করেন।

- যদিও ইয়র্কটাউনে আত্মসমর্পণের ঘটনাটি যুদ্ধকে উপনিবেশবাসীদের পক্ষে সিদ্ধান্ত করে দেয়, তবুও কর্নওয়ালিস নিজ দেশে উচ্চ মর্যাদা বজায় রাখেন।
- ১৭৮৬ সালের ২৩ ফেব্রুয়ারি তিনি ভারতের গভর্নর-জেনারেলের পদ গ্রহণ করেন।

উৎস: ব্রিটানিকা।

১৬০.
আশিস নন্দী, শশী থারুর প্রমুখ লেখকের মতে দ্বি-জাতি তত্ত্বের প্রথম প্রবক্তা কোন সংঘটনটি?
  1. মুসলিম লীগ
  2. সর্ব ভারতীয় জাতীয় কংগ্রেস
  3. আর.এস.এস.
  4. জমিয়তে-ই-হিন্দ
ব্যাখ্যা

♦ দ্বি-জাতি তত্ত্ব:
→ দ্বি-জাতি তত্ত্ব হলো একটি রাজনৈতিক ও সামাজিক দর্শন, যার মতে হিন্দু ও মুসলমানরা ভিন্ন ধর্ম, ভিন্ন সংস্কৃতি, ভিন্ন জীবনাচার ও ভিন্ন ঐতিহ্যের কারণে একই জাতি নয়; তারা দুটি স্বতন্ত্র জাতি। তাই তাদের নিজস্ব রাষ্ট্র থাকা আবশ্যক।

দ্বি-জাতি তত্ত্ব ও আশিস নন্দী, শশী থারু প্রমুখ :
- আশিস নন্দী, শশী থারুর প্রমুখ লেখকের মতে দ্বি-জাতি তত্ত্বের প্রথম প্রবক্তা মুসলিম লীগ।
- তারা আরও মনে করেন যে পাকিস্তান চাওয়া মুসলিম লীগের দাবি ছিল, কংগ্রেসের নয়।
- মূলত তাদের মতে, বিনায়ক দামোদর সাভারকর জিন্নাহর দ্বিজাতি ত্বত্তের ১৬ বছর পূর্বে দ্বিজাতি ত্বত্ত প্রদান করেছিলনে।
- এবং বিনায়ক দামোদর সাভারকর ছিলেন হিন্দু মহাসভার সভাপতি।
- প্রসঙ্গত, ভারতের স্বরাষ্ট্র মন্ত্রী অমিত শাহ পার্লামেন্টে বলেছে যে, "নাগরিকত্ব সংশোধনী বিল (CAB) প্রয়োজন হয়েছিল কারণ কংগ্রেস ১৯৪৭ সালে ধর্মীয় ভিত্তিতে ভারতকে ভাগ করেছিল।"
- এর উত্তরে শশী থারুর প্রশ্ন করছেন, "অমিত শাহ কি ইতিহাস জানেন না? জিন্নাহ, দুই-জাতির তত্ত্ব, মুসলিম লীগের পাকিস্তান রেজোলিউশন এসব কি তিনি জানেন না? বাস্তবে পাকিস্তান চাওয়া মুসলিম লীগের দাবি ছিল, কংগ্রেসের নয়।"

♦ দ্বি-জাতি তত্ত্ব ও সৈয়দ আহমদ খান এর ভূমিকা:
→ সৈয়দ সায়্যদ আহমদ খান মীরাটে ১৬ মার্চ ১৮৮৮ সালের এক বক্তৃতায় হিন্দু ও মুসলিমকে আলাদা করে ‘two nations’ উল্লেখ করেন; এই মীরাট-বক্তৃতাই আধুনিক 'দ্বি-জাতি' ধারণার সবচেয়ে প্রাথমিক স্পষ্ট রূপগুলোর একটি হিসেবে বিবেচিত।
→ মীরাটে দেওয়া বক্তৃতায় সৈয়দ আহমদ খান স্পষ্টভাবে বলেন: 'হিন্দু এবং মুসলমান দুটি পৃথক সম্প্রদায়, যাদের ধর্ম, ঐতিহ্য এবং জীবনধারা ভিন্ন। একটি যৌথ রাষ্ট্রে তাদের একসঙ্গে শাসন করা কঠিন হবে।'
→ মীরাট বক্তব্যে সৈয়দ সরাসরি আলাদা রাষ্ট্র দাবি করেননি; তিনি ধর্মীয় ও সাংস্কৃতিক স্বাতন্ত্র্যের ওপর জোর দিয়ে সম্ভাব্য ক্ষমতা-অসাম্য তুলে ধরেছিলেন।
→ তিনি মনে করতেন যে হিন্দু ও মুসলমানদের সাংস্কৃতিক ও ধর্মীয় পার্থক্যের কারণে তাদের রাজনৈতিক স্বার্থ আলাদা।
→ এই বক্তৃতা এবং তাঁর অন্যান্য লেখনীতে তিনি মুসলমানদের জন্য পৃথক রাজনৈতিক পরিচয় ও প্রতিনিধিত্বের প্রয়োজনীয়তার উপর জোর দেন। তাঁর এই ধারণা দ্বি-জাতি তত্ত্বের প্রাথমিক ভিত্তি হিসেবে বিবেচিত হয়।

• জিন্নাহর দ্বিজাতি তত্ত্ব:
- জাতিতত্ত্বের বিশ্লেষণে একটি জনগোষ্ঠীকে তখনই জাতি বলা যায়, যার ভাষা, শিক্ষা, সংস্কৃতি, সাহিত্য, মনন, কৃষ্টি, ধর্ম এমনকি অর্থনীতি একটি একক সত্তায় পরিণতি লাভ করে।
- মোহাম্মদ আলী জিন্নাহ ভারতের হিন্দু ও মুসলমান এ দুটি ধর্মীয় সম্প্রদায়কে দুটি পৃথক জাতি হিসেবে চিহ্নিত করেছিলেন। এটিই মূলত জিন্নাহর 'দ্বিজাতি তত্ত্ব'।
- ১৯৩৯ সালে জিন্নাহ্ তাঁর 'দ্বিজাতি তত্ত্ব' ঘোষণা করেন।
- পরবর্তী বছর লাহোরে মুসলিম লীগের ঘোষণায় এরই প্রতিধ্বনি পুনর্ব্যক্ত হয়েছে।
- ১৯৪০ খ্রিস্টাব্দের ২৩ মার্চ লাহোরে অনুষ্ঠিত মুসলিম লীগের অধিবেশনের সভাপতি ছিলেন মোহাম্মদ আলী জিন্নাহ্।
- এ অধিবেশনেই বাংলার নেতা ও প্রধানমন্ত্রী এ.কে. ফজলুল হক বিখ্যাত লাহোর প্রস্তাব উত্থাপন করেন।
- এতে বলা হয় যে, কোনো শাসনতান্ত্রিক পরিকল্পনা এদেশে কার্যকর বা মুসলমানদের কাছে গ্রহণযোগ্য হবে না যদি একটি নিম্নবর্ণিত মূলনীতির উপর প্রতিষ্ঠিত না হয়।

♦ দ্বি-জাতি তত্ত্ব ও আল্লামা ইকবাল এর ভূমিকা:
→ ১৯৩০ সালে আল্লামা ইকবাল এলাহাবাদে All India Muslim Legue-এর বার্ষিক সম্মেলনে সভাপতির ভাষণে দ্বি-জাতি তত্ত্বের বিষয়টি উল্লেখ করেন এবং এতে সমর্থন ব্যক্ত করেন।
→ এই ভাষণে তিনি উত্তর-পশ্চিম ভারতের মুসলিম সংখ্যাগরিষ্ঠ প্রদেশগুলোকে একত্র করে স্বশাসিত মুসলিম রাষ্ট্র গঠনের প্রস্তাব দেন।
→ তাঁর কবিতা ও রচনা মুসলমানদের সাংস্কৃতিক ও রাজনৈতিক আত্মপরিচয় জাগ্রত করতে শক্তিশালী ভূমিকা রাখে।
→ ইতিহাসবিদদের মতে, স্যার সাইয়্যদের বপন করা বীজকে ইকবাল দার্শনিক ভিত্তি ও রাজনৈতিক দিকনির্দেশনা দেন, যা পরবর্তীতে জিন্নাহর নেতৃত্বে পাকিস্তান আন্দোলনের রূপ নেয়।

উৎস:
i) Shashitharoor Website। [Link]
ii)The Demonic and the Seductive in Religious Nationalism: Vinayak Damodar Savarkar and the Rites of Exorcism in Secularizing South Asia by Ashis Nandy। [Link]
iii) ইতিহাস ১ম পত্র, এইচএসসি প্রোগ্রাম, বাংলাদেশ উন্মুক্ত বিশ্ববিদ্যালয়।
iv) বাংলাপিডিয়া, ব্রিটানিকা ও কয়েকটি অফিসিয়াল ওয়েবসাইট।
v) Dwan ওয়েবসাইট।

১৬১.
নর্থ আটলান্টিক ট্রিটি অর্গানাইজেশন বা সামরিক জোট কত সালে সাক্ষরিত হয়?
  1. ১৯৩৯
  2. ১৯৪৩
  3. ১৯৪৯
  4. ১৯৬০
ব্যাখ্যা

♦ নর্থ আটলান্টিক ট্রিটি অর্গানাইজেশন বা সামরিক জোট ১৯৪৯ সালে সাক্ষরিত হয়।

NATO:

- NATO-এর পূর্ণরূপ:North Atlantic Treaty Organisation অথবা উত্তর আটলান্টিক নিরাপত্তা জোট।
- দ্বিতীয় বিশ্বযুদ্ধের পর উত্তর আটলান্টিক চুক্তির মাধ্যমে NATO গঠিত হয়।
- ন্যাটো মূলত সামরিক সহযোগিতার জোট।
- প্রতিষ্ঠিত হয় ৪ এপ্রিল, ১৯৪৯।
- প্রতিষ্ঠাতা সদস্য: ১২টি।
- বর্তমান সদস্য: ৩২টি।
- সদর দপ্তর: ব্রাসেলস, বেলজিয়াম।
- বর্তমান মহাসচিব: মার্ক রুট্টে।
- মুসলিম দেশ: আলবেনিয়া ও তুরস্ক।

⇒ ১৯৪৯ সালের ৪ এপ্রিল ওয়াশিংটনে এক চুক্তির মাধ্যমে ন্যাটো গঠিত হয়েছিল।
- এর মূল উদ্দেশ্য ছিল সোভিয়েত ইউনিয়নের আগ্রাসনের হাত থেকে পশ্চিম বার্লিন এবং ইউরোপের নিরাপত্তা বাস্তবায়ন করা।
- ন্যাটো একটি যৌথ নিরাপত্তা চুক্তি, যে চুক্তির আওতায় জোটভুক্ত দেশগুলো পারস্পরিক সামরিক সহযোগিতা দিতে অঙ্গীকারবদ্ধ।
- এর প্রত্যেকটি সদস্য রাষ্ট্র তাদের সামরিক বাহিনীকে যেকোনো পরিস্থিতি মোকাবিলায় প্রস্তুত রাখতে বদ্ধপরিকর।
- এছাড়াও, ন্যাটো প্রতিষ্ঠার চুক্তিটি ১৪টি ধারার।

উৎস: NATO ওয়েবসাইট।

১৬২.
বাংলাদেশ-ICCPR এর স্বাক্ষরকারী একটি দেশ। ICCPR এর পূর্ণরূপ কী?
  1. International Conference on Civil and Political Rights
  2. International Conference of Civil and Political Rights
  3. International Covenant on Civil and Political Rights
  4. International Covenant of Civil and Political Rights
ব্যাখ্যা

♦ বাংলাদেশ-ICCPR এর স্বাক্ষরকারী একটি দেশ। ICCPR এর পূর্ণরূপ International Covenant on Civil and Political Rights.

ICCPR:

- ICCPR-এর পূর্ণরূপ: International Covenant on Civil and Political Rights.

⇒ এটি জাতিসংঘের আন্তর্জাতিক নাগরিক ও রাজনৈতিক অধিকার চুক্তি।
- গৃহীত হয়: ১৯৬৬ সালে।
- কার্যকর হয়: ২৩ মার্চ, ১৯৭৬ সালে।
- আন্তর্জাতিক এই চুক্তি জাতিসংঘ সাধারণ পরিষদ কর্তৃক গৃহীত হয়।
- বিশ্বের প্রতিটি মানুষের অধিকার সংরক্ষণ করার জন্য অর্থাৎ বিশ্বের প্রতিটি পেশার এবং প্রতিটি মানুষ যেন সমান অধিকার পায় সেই লক্ষ্যে ১৯৬৬ সালে দুইটি আন্তর্জাতিক চুক্তি স্বাক্ষরিত হয়।
- এর উদ্দেশ্য হলো মানুষের মৌলিক নাগরিক ও রাজনৈতিক অধিকার যেমন-জীবনের অধিকার, বাকস্বাধীনতা, ধর্মীয় স্বাধীনতা, ভোটাধিকার ও ন্যায়বিচারের অধিকার সুরক্ষা করা।
- এতে মোট ৫৩টি অনুচ্ছেদ রয়েছে।
- এই চুক্তি বাস্তবায়ন তদারকি করে জাতিসংঘ মানবাধিকার কমিটি (UN Human Rights Committee)।

উল্লেখ্য,
- বাংলাদেশ এটি ২০০০ সালে অনুমোদন করে।

উৎস: UN ওয়েবসাইট।

১৬৩.
গ্রিনল্যান্ড নিচের কোন রাষ্ট্রের অন্তর্ভুক্ত?
  1. সুইডেন
  2. ডেনমার্ক
  3. নরওয়ে
  4. ফিনল্যান্ড
ব্যাখ্যা

♦ গ্রিনল্যান্ড ডেনমার্কের অন্তর্ভুক্ত।

গ্রিনল্যান্ড:
- গ্রিনল্যান্ড বিশ্বের বৃহত্তম দ্বীপ।
- এটি ডেনমার্কের একটি স্বশাসিত অঞ্চল।
- গ্রিনল্যান্ড উত্তর আমেরিকা মহাদেশের অংশ।
- এর অবস্থান উত্তর আটলান্টিক মহাসাগরে উত্তর আমেরিকা এবং ইউরোপ মহাদেশের মধ্যে অবস্থিত।
- এর অবস্থান কানাডা এবং আইসল্যান্ডের মাঝে অবস্থিত।
- আয়তনে মূল ডেনমার্কের চেয়ে গ্রীনল্যান্ড প্রায় ৫০ গুন বড়।
- রাজধানী: নুউক।
- গ্রিনল্যান্ডের অধিবাসীরা এস্কিমো হিসেবে পরিচিত।

উল্লেখ্য,
- গ্রিনল্যান্ড ১৯৫৩ সাল পর্যন্ত ডেনমার্কের একটি উপনিবেশ ছিল। ১৯৭৯ সালে গণভোটের মাধ্যমে গ্রিনল্যান্ড স্বায়ত্তশাসন লাভ করেছিল, তবে দ্বীপটির পররাষ্ট্র ও প্রতিরক্ষানীতি এখনও ডেনমার্কই দেখভাল করে।
- এ দ্বীপের প্রাকৃতিক সম্পদের মধ্যে রয়েছে তেল ও গ্যাস। আরও আছে পৃথিবীর বিরল কিছু ধাতু, যেগুলোর বৈদ্যুতিক গাড়ি ও বায়ুকলের পাশাপাশি সামরিক সরঞ্জাম উৎপাদনে উচ্চ চাহিদা রয়েছে।

উৎস: i) Britannica.
ii) BBC.

১৬৪.
বাংলাদেশের রাজনীতি সম্পর্কে একজন আমেরিকান ঐতিহাসিক মন্তব্য করেছেন; 'বাংলাদেশের রাজনীতি ব্যক্তিত্বকে কেন্দ্র করে আবর্তিত হয়, ধারনা বা প্রতিষ্ঠানকে কেন্দ্র করে নয়" এই ঐতিহাসিকের নাম কি?
  1. এন্থনি মাসকারেনহাস
  2. লরেঞ্চ জিরিং
  3. লরেঞ্চ লিফশূলজ্
  4. হেনরি কিসিঞ্জার
ব্যাখ্যা

♦ বাংলাদেশের রাজনীতি সম্পর্কে একজন আমেরিকান ঐতিহাসিক মন্তব্য করেছেন; 'বাংলাদেশের রাজনীতি ব্যক্তিত্বকে কেন্দ্র করে আবর্তিত হয়, ধারনা বা প্রতিষ্ঠানকে কেন্দ্র করে নয়" এই ঐতিহাসিকের নাম লরেঞ্চ জিরিং।

অধ্যাপক লরেঞ্চ জিরিং:
- 'বাংলাদেশের রাজনীতি ব্যক্তিত্বকে কেন্দ্র করে আবর্তিত হয়, ধারণা বা প্রতিষ্ঠানকে কেন্দ্র করে নয়'- লরেঞ্চ জিরিং (Lawrence Ziring) কর্তৃক প্রদত্ত।
- তিনি তাঁর গ্রন্থ 'বাংলাদেশ: মুজিব থেকে এরশাদ: একটি বিশ্লেষনধর্মী ইতিহাস'-এই গ্রন্থে এই পর্যবেক্ষণ করেছেন।
- যেখানে তিনি বাংলাদেশের রাজনৈতিক সংস্কৃতির বিশ্লেষণ করেছেন।
- এই গ্রন্থে জিরিং উল্লেখ করেছেন যে, স্বাধীনতার প্রথম বিশ বছরে বাংলাদেশের রাজনীতি মূলত রাজনৈতিক ব্যক্তিত্বদের দ্বারা পরিচালিত হয়েছে, যারা জনগণের অনুভূতিগুলিকে প্রকাশ করার চেষ্টা করলেও প্রয়োজনীয় প্রতিষ্ঠান বা ধারণার ভিত্তি স্থাপন করতে ব্যর্থ হয়েছেন।

- মূলত এটি একটি নিরপেক্ষ ইতিহাসের বই। ১৯৪০-১৯৯০ সাল পর্যন্ত প্রতিটি বাঙালি রাজনৈতিক নেতা, তাঁদের শাসনকাল, তাঁদের সাফল্য-ব্যর্থতা, রাজনৈতিক বিশৃঙ্খলা/অস্থিরতা সহ বিভিন্ন বিষয় নিরপেক্ষভাবে উঠে এসেছে।

⇒ এছাড়াও, তিনি "মুজিব, এরশাদ ও হাসিনা: রাজনৈতিক দুর্বৃত্তায়নের ইতিহাস" নামক একটি বইয়ের লেখক।


Link: core.ac.uk page: 124.

উৎস: বাংলাদেশ: মুজিব থেকে এরশাদ: একটি বিশ্লেষনধর্মী ইতিহাস।

১৬৫.
বিশ্বের প্রথম জাতিসংঘ শান্তিরক্ষী বাহিনী কোনটি?
  1. UNOSOM
  2. UNMOGIP
  3. UNTSO
  4. UNEF
ব্যাখ্যা

♦ বিশ্বের প্রথম জাতিসংঘ শান্তিরক্ষী বাহিনী UNTSO (United Nations Truce Supervision Organization).

জাতিসংঘ শান্তিরক্ষা মিশন:
- জাতিসংঘ শান্তিরক্ষা মিশন (United Nations Peacekeeping Mission) একটি আন্তর্জাতিক উদ্যোগ যা সংঘাতপ্রবণ দেশগুলোতে শান্তি ও নিরাপত্তা প্রতিষ্ঠা করতে সাহায্য করে।
- এই মিশনের প্রধান লক্ষ্য হলো সংঘর্ষমুক্ত পরিবেশ সৃষ্টি করা, মানবাধিকার রক্ষা করা এবং রাজনৈতিক প্রক্রিয়া পরিচালনায় সহায়তা করা।
- বর্তমানে আফ্রিকা, মধ্যপ্রাচ্য, ইউরোপ এবং এশিয়া জুড়ে জাতিসংঘের ১১টি শান্তিরক্ষা মিশন চলমান রয়েছে।
- এগুলো হলো: MINURSO (পশ্চিম সাহারা), MINUSCA (মধ্য আফ্রিকান প্রজাতন্ত্র), MONUSCO (গণতান্ত্রিক কঙ্গো প্রজাতন্ত্র), UNDOF (গোলান হাইটস), UNFICYP (সাইপ্রাস), UNIFIL (লেবানন), UNISFA (আবিয়েই), UNMIK (কসোভো), UNMISS (দক্ষিণ সুদান), UNMOGIP (ভারত ও পাকিস্তান), UNTSO (মধ্যপ্রাচ্য)।

⇒ জাতিসংঘ শান্তিরক্ষা মিশনের মূল উদ্দেশ্য:
- সংঘাতের মধ্যে শান্তি প্রতিষ্ঠা এবং সশস্ত্র বিরোধী পক্ষদের মধ্যে যুদ্ধবিরতি বা শান্তিচুক্তি বাস্তবায়ন করা।
- যুদ্ধ বা সংঘাতের কারণে বিপর্যস্ত জনগণের জন্য মানবিক সাহায্য পৌঁছে দেওয়া।
- রাজনৈতিক স্থিতিশীলতা বজায় রাখার জন্য জাতিসংঘ মিশন আঞ্চলিক সরকারের সহায়তায় কাজ করে থাকে।
- যুদ্ধবিধ্বস্ত অঞ্চলে পুনর্গঠন কার্যক্রম পরিচালনা, যেমন অবকাঠামো পুনর্নির্মাণ, আইন-শৃঙ্খলা রক্ষা ইত্যাদি।

উল্লেখ্য,
- ১৯৪৮ সালে জাতিসংঘ শান্তিরক্ষা মিশন শুরু হয়।
- ১৯৪৮ সালে সংঘটিত ১ম আরব-ইসরাইল যুদ্ধকে কেন্দ্র করে জাতিসংঘের প্রথম শান্তিরক্ষা মিশন অনুষ্ঠিত হয়।
- এই মিশনের নাম ছিল "United Nations Truce Supervision Organization (UNTSO)"।
- এটি ছিল জাতিসংঘের প্রথম শান্তিরক্ষা মিশন এবং এর মূল উদ্দেশ্য ছিল ১৯৪৮ সালে আরব-ইসরায়েল যুদ্ধের পর যুদ্ধবিরতি কার্যকর করা এবং যুদ্ধবিরতি চুক্তি সঠিকভাবে পালন হচ্ছে কিনা তা মনিটর করা।

এছাড়াও,
- জাতিসংঘ শান্তিরক্ষা মিশন নোবেল পুরস্কার লাভ করেন ১৯৮৮ সালে।

উৎস: United Nations Peacekeeping ওয়েবসাইট।

১৬৬.
প্রথম বিশ্বযুদ্ধ কোন চুক্তির মাধ্যমে সমাপ্ত হয়?
  1. প্যারিস চুক্তি
  2. ভারসাই চুক্তি
  3. জেনেভা চুক্তি
  4. রোম চুক্তি
ব্যাখ্যা

♦ প্রথম বিশ্বযুদ্ধ ভার্সাই চুক্তির মাধ্যমে সমাপ্ত হয়।

দ্বিতীয় ভার্সাই চুক্তি:

- বিধ্বংসী প্রথম বিশ্বযুদ্ধের অবসানের লক্ষ্যে ১৯১৯ সালের ২৮ জুন ভার্সাই চুক্তি স্বাক্ষরিত হয়।
- স্থান: ফ্রান্সের ভার্সাই প্রাসাদের হল অফ মিররসে স্বাক্ষরিত হয়েছিল।
- পক্ষসমূহ: মিত্রশক্তি (ব্রিটেন, যুক্তরাষ্ট্র, ফ্রান্স, ইতালি, জাপান) এবং জার্মানি।
- প্রথম বিশ্বযুদ্ধের পর জার্মানির ওপর যে ক্ষতিপূরণ আরোপ করা হয়েছিল, তা মূলত স্বাক্ষরিত ভার্সাই চুক্তি (Treaty of Versailles)-এর মাধ্যমে হয়েছিল। এই চুক্তিটি জার্মানিকে যুদ্ধের জন্য দায়ী করে এবং মিত্র দেশগুলোর ক্ষতির জন্য ক্ষতিপূরণ দিতে বাধ্য করে।
- ফলাফল: যুদ্ধের কারণে মিত্র দেশগুলোর যে ক্ষতি হয়েছিল, তার জন্য জার্মানিকে বিশাল অঙ্কের ক্ষতিপূরণ দিতে বাধ্য করা হয়।

• প্রথম বিশ্বযুদ্ধ:
- প্রথম বিশ্বযুদ্ধ (World War I) ১৯১৪ থেকে ১৯১৮ সাল পর্যন্ত সংঘটিত হয়েছিল এবং এটি ছিল ইতিহাসের অন্যতম বৃহৎ ও ধ্বংসাত্মক যুদ্ধ।
- যুদ্ধটি মূলত ইউরোপের বিভিন্ন শক্তির মধ্যে সংঘটিত হলেও এর প্রভাব ছিল পৃথিবীজুড়ে।

⇒ যুদ্ধের পটভূমি:
- যুদ্ধ শুরু হয়: ২৮ জুলাই, ১৯১৪ সালে।
- শেষ হয়: ১১ নভেম্বর, ১৯১৮ সালে।
- যুদ্ধের ফলাফল: মিত্র শক্তির বিজয়।
- অক্ষশক্তি: জার্মানি, অস্ট্রিয়া, হাঙ্গেরি, অটোমান সাম্রাজ্য ও বুলগেরিয়া।
- মিত্রশক্তি: সার্বিয়া, রাশিয়া, ফ্রান্স, যুক্তরাজ্য, যুক্তরাষ্ট্র, ইতালি, জাপান প্রভৃতি দেশ।

উৎস: i) History.com
ii) Britannica.

১৬৭.
মার্কিন যুক্তরাষ্ট্রের কোন প্রেসিডেন্ট জাপানে পারমানবিক বোমা নিক্ষেপের অনুমোদন করেছিলেন?
  1. হাঁরি এস. ট্রুম্যান
  2. ফ্রাঙ্কলিন ডি, বুজভেল্ট
  3. রিচার্ড নিক্সন
  4. জর্জ ডারিও বুশ
ব্যাখ্যা

♦ মার্কিন যুক্তরাষ্ট্রের হ্যারি এস. ট্রুম্যান জাপানে পারমানবিক বোমা নিক্ষেপের অনুমোদন করেছিলেন।

হ্যারি এস. ট্রুম্যান:
- হ্যারি এস. ট্রুম্যান (Harry S. Truman) ছিলেন মার্কিন যুক্তরাষ্ট্রের ৩৩তম রাষ্ট্রপতি।
- তিনি ১৯৪৫ থেকে ১৯৫৩ সাল পর্যন্ত দায়িত্ব পালন করেন।
- তিনি ফ্র্যাঙ্কলিন ডি. রুজভেল্টের মৃত্যুর পর উপরাষ্ট্রপতি থেকে রাষ্ট্রপতিত্বে উন্নীত হন এবং দ্বিতীয় বিশ্বযুদ্ধের সমাপ্তি থেকে শীতল যুদ্ধের উত্থান পর্যন্ত গুরুত্বপূর্ণ ঘটনাবলীর নেতৃত্ব দেন।
- হ্যারি এস. ট্রুম্যান জাপানে পারমানবিক বোমা নিক্ষেপের অনুমোদন করেছিলেন।

উল্লেখ্য,
- পারমাণবিক বোমা তৈরি করতে দ্বিতীয় বিশ্বযুদ্ধের সময় যুক্তরাষ্ট্র একটি প্রকল্প হাতে নিয়েছিল। এই প্রকল্পের নাম ছিল 'ম্যানহাটান প্রজেক্ট'। পারমাণবিক বোমার জনক রবার্ট ওপেনহেইমার ছিলেন ম্যানহাটান প্রজেক্টের প্রধান।
- জাপানের দুটি শহরে এই বোমা ফেলার পর বিপুল প্রাণহানি আর ধ্বংসলীলা ঘটেছিল।
- ৩৩তম মার্কিন প্রেসিডেন্ট হ্যারি এস ট্রুম্যান এই পারমাণবিক বোমা বর্ষণের নির্দেশ দেন।

লিটলবয় ও ফ্যাটম্যান:
- দ্বিতীয় বিশ্বযুদ্ধ যখন প্রায় শেষের পথে, তখন আগস্টের জাপানের হিরোশিমা এবং নাগাসাকি শহরে পরমাণু বোমা ফেলেছিল যুক্তরাষ্ট্র।
- বিশ্বে প্রথম কোন যুদ্ধে ব্যবহৃত হয়েছিল গণবিধ্বংসী মারণাস্ত্র। মারা গিয়েছিল হাজার হাজার মানুষ।
- জাপানের হিরোশিমা শহরে ৬ আগস্ট, ১৯৪৫ সালে বোমা বর্ষণ করে। নিক্ষিপ্ত বোমাটির নাম ছিলো লিটলবয়।
- ৯ আগস্ট, ১৯৪৫ সালে নাগাসাকি শহরে পারমাণবিক বোমা বর্ষণ করে। নাগাসাকিতে নিক্ষিপ্ত বোমাটির নাম ছিলো ফ্যাটম্যান।

উৎস: History.com

১৬৮.
ODS (Ozone Depleting Substances) এর ব্যবহার কমানোর জন্য কোন চুক্তি স্বাক্ষরিত হয়?
  1. কিয়োটো প্রটোকল
  2. মন্ট্রিল প্রটোকল
  3. প্যারিস চুক্তি
  4. রামসার কনভেনশন
ব্যাখ্যা

♦ ODS (Ozone Depleting Substances) এর ব্যবহার কমানোর জন্য মন্ট্রিল প্রটোকল স্বাক্ষরিত হয়।

⇒ ODS (Ozone Depleting Substances) হলো এমন পদার্থ যা সাধারণত রেফ্রিজারেটর, এয়ার কন্ডিশনার, অগ্নি নির্বাপক যন্ত্র এবং অ্যারোসলের মতো পণ্যগুলিতে ব্যবহৃত হয়।

মন্ট্রিল প্রটোকল:
- Montreal Protocol-এর পূর্ণরূপ: The Montreal Protocol on Substances that Deplete the Ozone Layer.
- মন্ট্রিল প্রোটোকল হল ওজোন স্তর ক্ষয়কারী পদার্থ (ODS) ব্যবহার এবং উৎপাদন বন্ধ করার জন্য একটি আন্তর্জাতিক চুক্তি।
- মন্ট্রিল প্রোটকলের মূখ্য আলোচ্য বিষয়: ওজোন স্তরের সুরক্ষা।

⇒ চুক্তি গৃহীত হয়: ১৬ সেপ্টেম্বর, ১৯৮৭ সালে।
- কার্যকর হয়: ১ জানুয়ারী, ১৯৮৯ সালে।
- চুক্তি স্বাক্ষরের স্থান: মন্ট্রিল, কানাডা।
- চুক্তি স্বাক্ষরকারী দেশ: ২০০টি।
- চুক্তি অনুমোদনকারী দেশ: ১৯৮টি।

উল্লেখ্য,
- ক্লোরোফ্লোরোকার্বন (সিএফসি), হ্যালন, কার্বন টেট্রাক্লোরাইড, মিথাইল ক্লোরোফর্ম, মিথাইল ব্রোমাইড, মিথেন, নাইট্রাস অক্সাইড, হাইড্রোব্রোমোফ্লোরোকার্বন ইত্যাদি গ্যাসের প্রভাবে দিন দিন ক্ষয়ে যাচ্ছে এই ওজোন স্তর। যার ফলে তৈরি হচ্ছে ওজোন হোল বা গর্ত। প্রায় সকল ওজোনস্তর ক্ষয়কারী দ্রব্য (ওডিএস) ই অধিক ক্ষমতাসম্পন্ন গ্রিন হাউস গ্যাস হিসেবে চিহ্নিত। ওজোনস্তর ক্ষয়কারী দ্রব্য ও এর বিকল্পসমূহ অধিকাংশ ক্ষেত্রে বৈশ্বিক উষ্ণতা বৃদ্ধিতে সহায়ক। এ গ্যাসগুলো সাধারণতঃ রেফ্রিজারেশন ও এয়ারকন্ডিশনিং সিস্টেমে, এ্যাজমা চিকিৎসায় উৎপাদিত ইনহেলারে, ফ্যান, প্লাস্টিক ফোম তৈরি ও মাইক্রোইলেকট্রিক সার্কিট পরিস্কার করার ক্ষেত্রে ব্যবহৃত হয়। সূর্যের অতিবেগুনি রশ্মির ক্ষতিকর প্রভাব থেকে মানবসভ্যতাকে রক্ষার জন্য ওজোনস্তর রক্ষায় কাজ করা একান্ত প্রয়োজন। তাই ওজোনস্তরের ক্ষয়কারী দ্রব্যের ব্যবহার কমাতে বিশ্বব্যাপী বিভিন্ন উদ্যোগ গ্রহণ করা হয়েছে।
- ধরিত্রীকে রক্ষার লক্ষ্যে ওজোনস্তর রক্ষায় জাতিসংঘ পরিবেশ কর্মসূচির উদ্যোগে ১৯৮৫ সালে 'ভিয়েনা কনভেনশন' গৃহীত হয়। এরই ধারাবাহিকতায় ১৯৮৭ সালের ১৬ সেপ্টেম্বর কানাডার মন্ট্রিলে "মন্ট্রিল প্রটোকল" নামে এক যুগান্তকারী চুক্তি গৃহীত হয়।

উৎস: i) UNEP ওয়েবসাইট।
ii) Ozone Secretariat।
ii) তথ্য অধিদফতর (পিআইডি)।

১৬৯.
আফিম যুদ্ধ কোন দুইটি দেশের মধ্যে সংঘটিত হয়?
  1. চীন ও আফগানিস্তান
  2. চীন ও ইংল্যান্ড
  3. চীন ও রাশিয়া
  4. ইংল্যান্ড ও আফগানিস্তান
ব্যাখ্যা

♦ আফিম যুদ্ধ চীন ও ইংল্যান্ড- এই দুইটি দেশের মধ্যে সংঘটিত হয়।

আফিম যুদ্ধ:
- আফিমের চোরাচালানকে কেন্দ্র করে চীন ও ব্রিটেনের মধ্যে যে যুদ্ধ সংঘটিত হয়েছিল, তাই আফিম যুদ্ধ নামে পরিচিত।
- ইস্ট ইন্ডিয়া কোম্পানি উনিশ শতকের গোড়া থেকে চীনের সঙ্গে ব্যবসায়ে ঘাটতি মেটাতে বঙ্গদেশ থেকে চীনে আফিম রপ্তানি শুরু করে।
- চীনা শাসকরা ১৮৩৯ সালে আফিম আমদানি নিষিদ্ধ ঘোষণা করে।
- কিন্তু ইস্ট ইন্ডিয়া কোম্পানি অবৈধ উপায়ে এ ব্যবসা অব্যাহত রাখে।
- কোম্পানির অবৈধ আফিম ব্যবসার কারণে চীন ও ব্রিটেনের মধ্যে যুদ্ধ বাধে।
- ১ম যুদ্ধে চীনারা পরাজিত হয় এবং চীন ১৮৪২ সালে নানকিং চুক্তি স্বাক্ষর করতে বাধ্য হয়।

• নানকিং চুক্তি:
- প্রথম আফিম যুদ্ধে পরাজয়ের পর চীনের শাসকগোষ্ঠী ব্রিটিশদের সাথে একটি অপমানজনক 'অসম চুক্তি' স্বাক্ষর করতে বাধ্য হয়।
- এই চুক্তির নাম নানকিং চুক্তি।
- চিনা কমিশনার চিইং (Chiying) এবং নব নিযুক্ত ব্রিটিশ রাষ্ট্রদূত স্যার হেনরি পট্টিনগার (Sir Henry Pottinger) -এর উদ্যোগে শান্তি প্রতিষ্ঠার লক্ষ্যে এই চুক্তি স্বাক্ষরিত হয়।
- চুক্তি স্বাক্ষরিত হয়: ২৯ আগস্ট, ১৮৪২ সালে
- এই চুক্তির মাধ্যমে ব্রিটিশদের হংকংয়ের নিয়ন্ত্রণ দেওয়া হয়েছিল।
- এছাড়া চীন কর্তৃক ব্রিটেনকে বিভিন্ন বাণিজ্যিক সুযোগ-সুবিধা প্রদানে বাধ্য হয়।
- পরবর্তীতে ১৮৯৮ সালে চীন সরকার ৯৯ বছরের জন্যে হংকংকে ব্রিটেনের নিকট লিজ দেয় এবং ১৯৯৭ সালের ১ জুলাই লিজের মেয়াদ শেষে ব্রিটেন পুনরায় চীনের নিকট হংকং কে হস্তান্তর করে।

উৎস: Britannica.

১৭০.
কেপ ভারদ (Cape Verde) দ্বীপ রাষ্ট্রটি কোথায় অবস্থিত?
  1. গালফ অফ গিনি
  2. ফ্রেঞ্ছ পলিনেশিয়া
  3. দক্ষিন আফ্রিকা
  4. পশ্চিম আফ্রিকা
ব্যাখ্যা

♦ কেপ ভারদ (Cape Verde) দ্বীপ রাষ্ট্রটি পশ্চিম আফ্রিকায় অবস্থিত।

কেপ ভার্দে (Cape Verde):
- কেপ ভার্দে রাষ্ট্রটি পশ্চিম আফ্রিকায় অবস্থিত।
- এটি আফ্রিকার উত্তর-পশ্চিম উপকূলের কাছে আটলান্টিক মহাসাগরে অবস্থিত একটি দ্বীপপুঞ্জ।
- রাজধানী: প্রাইয়া (Praia)।
- সরকারি ভাষা: পর্তুগিজ।
- মুদ্রা: কেপ ভার্দীয় এসকুডো (সিভিই)।
- ধর্ম: খ্রিস্টধর্ম (প্রধানত রোমান ক্যাথলিক); এছাড়াও ইসলাম।
- এর রাষ্ট্রপ্রধান হলেন রাষ্ট্রপতি এবং এর সরকারপ্রধান হলেন প্রধানমন্ত্রী।

উল্লেখ্য,
- কেপ ভার্দে পর্তুগালের কাছ থেকে স্বাধীনতা লাভ করে।

উৎস: Britannica.

১৭১.
নিম্নোক্ত কোন দেশ বা অঞ্চল জাতিসংঘের সদস্য দেশ নয়?
  1. তিমুর লিস্টি
  2. দক্ষিন সুদান
  3. ওয়েস্টার্ন সাহারা
  4. সেন্ট্রাল আফ্রিকান রিপাবলিক
ব্যাখ্যা

♦ ওয়েস্টার্ন সাহারা জাতিসংঘের সদস্য দেশ নয়। তিমুর লিস্টি, দক্ষিন সুদান ও সেন্ট্রাল আফ্রিকান রিপাবলিক জাতিসংঘের সদস্য দেশ।

ওয়েস্টার্ন সাহারা (পশ্চিম সাহারা):
- পশ্চিম সাহারা বা ওয়েস্টার্ন সাহারা আফ্রিকার উত্তর-পশ্চিম উপকূলে অবস্থিত একটি বিচ্ছিন্ন জনবহুল অঞ্চল যার বেশিরভাগই মরুভূমি।
- বৃহত্তম শহর: লায়াউন।
- ওয়েস্টার্ন সাহারা একটি বিতর্কিত অঞ্চল।
- এটি পূর্বে স্পেনের উপনিবেশ (Spanish Sahara) ছিল। ১৯৭৫ সালে তা স্বাধীন হয়। কিন্তু মরক্কো ওই এলাকার অনেকটাই দখল করে নেয়। তখন থেকে পশ্চিম সাহারার স্বাধীনতাকামী যোদ্ধাদের সঙ্গে লড়াই চলছে মরক্কোর।
- দীর্ঘদিন ধরে পশ্চিম সাহারা অঞ্চলে সংঘর্ষ চলছে। পশ্চিম সাহারার স্বাধীনতাকামী যোদ্ধাদের নাম পোলিসারিও ফ্রন্ট। ১৯৯১ সাল পর্যন্ত লাগাতার যুদ্ধ চলার পর মরক্কো এবং পোলিসারিও-র মধ্যে যুদ্ধবিরতির চুক্তি সই হয়। কিন্তু ২০২০ সাল থেকে পোলিসারিও নতুন করে লড়াই শুরু করেছে।
- ওয়েস্টার্ন সাহারা জাতিসংঘের সদস্য রাষ্ট্র নয়। জাতিসংঘ এই অঞ্চলকে "Non-self-governing territory" হিসেবে স্বীকৃতি দেয়।

অন্যদিকে,
- তিমুর-লিস্টি (পূর্ব তিমুর) ২০০২ সালে জাতিসংঘে যোগদান করে।
- দক্ষিণ সুদান ২০১১ সালে জাতিসংঘে যোগদান করে।
- সেন্ট্রাল আফ্রিকান রিপাবলিক ১৯৬০ সালে জাতিসংঘে যোগদান করে।

⇒ জাতিসংঘ:
- বিশ্বের বৃহত্তম আন্তর্জাতিক সংস্থা হলো জাতিসংঘ (United Nations Organization).
- এটি জাতিপুঞ্জের (League of Nations) উত্তরসূরী।
- জাতিসংঘ সনদ স্বাক্ষরিত হয়: ২৬ জুন, ১৯৪৫।
- জাতিসংঘ প্রতিষ্ঠিত হয়: ২৪ অক্টোবর, ১৯৪৫।
- স্বাক্ষরের স্থান: যুক্তরাষ্ট্রের সানফ্রান্সিসকো।
- প্রতিষ্ঠাকালীন সদস্য: ৫১টি।
- বর্তমান সদস্য: ১৯৩টি।
- সর্বশেষ সদস্য: দক্ষিণ সুদান।
- বর্তমান মহাসচিব: আন্তোনিও গুতেরেস।
- সদর দপ্তর: ম্যানহাটন, নিউইয়র্ক, যুক্তরাষ্ট্র।
- দাপ্তরিক ভাষা ৬টি: ইংরেজি, ফ্রেঞ্চ, চীনা, রুশ, স্প্যানিশ এবং আরবি।
- কার্যকরী দাপ্তরিক ভাষা ২টি: ইংরেজি ও ফ্রেঞ্চ।

উৎস: i) UN ওয়েবসাইট।
ii) Britannica.

১৭২.
নিম্নোক্ত কোন দেশটি ইউরোপিয়ান ইউনিয়নের (EU) সদস্য নয়?
  1. বুলগেরিয়া
  2. হাঙ্গেরি
  3. পোল্যান্ড
  4. সুইজারল্যান্ড
ব্যাখ্যা

♦ সুইজারল্যান্ড ইউরোপিয়ান ইউনিয়নের (EU) সদস্য নয়। অন্যদিকে বুলগেরিয়া, হাঙ্গেরি, পোল্যান্ড ইউরোপিয়ান ইউনিয়নের (EU) সদস্য।

ইউরোপিয়ান ইউনিয়ন (
European Union):
- বিশ্বের সবচেয়ে বড় অর্থনৈতিক জোট ইউরোপীয় ইউনিয়ন (EU)।
- প্রতিষ্ঠিত হয়: ১ নভেম্বর, ১৯৯৩ সালে।
- সদরদপ্তর: ব্রাসেলস, বেলজিয়াম।
- প্রতিষ্ঠাতা সদস্য দেশ: ৬টি।
- ইউরোপীয় ইউনিয়নভুক্ত দেশ: ২৭টি।

⇒ ইইউ দেশগুলো হলো: অস্ট্রিয়া, বেলজিয়াম, বুলগেরিয়া, ক্রোয়েশিয়া, সাইপ্রাস, চেক প্রজাতন্ত্র, ডেনমার্ক, এস্তোনিয়া, ফিনল্যান্ড, ফ্রান্স, জার্মানি, গ্রীস, হাঙ্গেরি, আয়ারল্যান্ড, ইতালি, লাটভিয়া, লিথুয়ানিয়া, লুক্সেমবার্গ, মাল্টা, নেদারল্যান্ডস, পোল্যান্ড, পর্তুগাল, রোমানিয়া, স্লোভাকিয়া , স্লোভেনিয়া, স্পেন এবং সুইডেন।

উল্লেখ্য,
- দ্বিতীয় বিশ্বযুদ্ধের পর ইউরোপিয়ান দেশগুলো তাদের অর্থনৈতিক পুনর্গঠনের জন্য একটি অর্থনৈতিক জোট গঠনের প্রয়োজনীয়তা উপলদ্ধি করে।
• ১৮ এপ্রিল, ১৯৫১ সালে প্যারিসে একচুক্তির মাধ্যমে ইউরোপিয় কয়লা ও ইস্পাত পরিষদ (ECSE- European Coal and Steel Community) গঠিত হয়।
• ২৫ মার্চ, ১৯৫৭ সালে বেলজিয়াম, লুক্সেমবার্গ, নেদারল্যান্ডস্, ইতালি ফ্রান্স ও সাবেক পশ্চিম জার্মানী এ ৬টি রাষ্ট্রের মধ্যে 'রোম চুক্তি' স্বাক্ষরিত হয়।
- এ চুক্তি অনুযায়ী ১৭ জানুয়ারি, ১৯৫৮ সালে European Economic Community (EEC) এবং Euratom প্রতিষ্ঠিত হয়।
• পরবর্তীতে EEC একটি একক ইউরোপিয় অর্থনীতি গঠন করার প্রয়াস চালায়।
- ১৯৬৫ সালে সম্পাদিত 'ব্রাসেলস চুক্তি' সংগঠনটিকে European Community (EC) রূপান্তরিত করে।
• ১৯৯২ সালে স্বাক্ষরিত 'ম্যাসট্রিক্ট চুক্তি'র ভিত্তিতে EC রূপান্তরিত হয়ে বর্তমান ইউরোপিয়ান ইউনিয়ন European Union (EU) হিসেবে প্রতিষ্ঠা পায়।

এছাড়াও,
- শেনজেনভুক্ত দেশ: ২৯টি।
- ইউরো মুদ্রা ব্যবহারকারী দেশ: ২০টি।

উৎস: EU ওয়েবসাইট।

১৭৩.
নিম্নোক্ত কোন দেশটি 'Five Eyes' ভুক্ত নয়?
  1. অস্ট্রেলিয়া
  2. ফ্রান্স
  3. নিউজিল্যান্ড
  4. কানাডা
ব্যাখ্যা

♦ 'Five Eyes' গোয়েন্দা জোটের অন্তর্ভুক্ত দেশ নয় ফ্রান্স। অন্যদিকে অস্ট্রেলিয়া, নিউজিল্যান্ড ও কানাডা Five Eyes-এর সদস্য।

Five Eyes:
- Five Eyes ইন্টেলিজেন্স অ্যালায়েন্স, যা FVEY নামেও পরিচিত।
- ‘এটি যুক্তরাষ্ট্র, যুক্তরাজ্য, অস্ট্রেলিয়া, কানাডা এবং নিউজিল্যান্ডের একটি গোয়েন্দা জোট।
- জোটটি UKUSA চুক্তির উপর ভিত্তি করে তৈরি করা হয়েছে।
- তারা বিভিন্ন তথ্য সংগ্রহ করে একসাথে কাজ করে।
- দ্বিতীয় বিশ্বযুদ্ধের পর থেকে তারা তাদের দেশকে নিরাপদ রাখতে একে অপরকে সাহায্য করছে।
- সন্ত্রাসবাদ, সাইবার হুমকি এবং অন্যান্য নিরাপত্তা সম্পর্কিত তথ্য তারা শেয়ার করে।

⇒ UKUSA চুক্তি:
- ১৯৪৩ সালে, মার্কিন যুক্তরাষ্ট্র এবং যুক্তরাজ্য একটি সমবায় গোয়েন্দা চুক্তি গঠন করে যা BRUSA চুক্তি নামে পরিচিত।
- এই গোপন চুক্তিটি পরবর্তীতে UKUSA চুক্তি হিসাবে আনুষ্ঠানিক রূপ লাভ করে।
- এই চুক্তিটি ফাইভ আই দেশের মধ্যে গোয়েন্দা তথ্য আদান-প্রদানের ভিত্তি স্থাপন করে।

উৎস: Five Eyes ওয়েবসাইট।

১৭৪.
"কেবল আয়ের অভাব নয়, বরং সামর্থ্যের অভাবই দারিদ্র্যের মূল কারন"-অর্থনীতিবিদ অমর্ত্য সেন কোন গ্রন্থে এই যুক্তি তুলে ধরেন?
  1. Development as Freedom
  2. Women and Human Development
  3. Development through Disposition
  4. Development, Environment and Power
ব্যাখ্যা

♦ "কেবল আয়ের অভাব নয়, বরং সামর্থ্যের অভাবই দারিদ্র্যের মূল কারন"- অর্থনীতিবিদ অমর্ত্য সেন 'Development as Freedom' গ্রন্থে এই যুক্তি তুলে ধরেন।

অমর্ত্য সেন:
- অমর্ত্য সেন একজন ভারতীয় বাঙালী অর্থনীতিবিদ ও দার্শনিক।
- ১৯৯৮ সালে তিনি অর্থনীতিতে নোবেল পুরস্কার লাভ করেছিলেন।
- দারিদ্র এবং দুর্ভিক্ষ নিয়ে গবেষণার জন্য ১৯৯৮ সালে অর্থনীতিতে নোবেল পুরস্কার পান অমর্ত্য সেন।

⇒ ১৯৫১ সালে আইএসসি পরীক্ষায় প্রথম হয়ে তিনি ভর্তি হন কলকাতার প্রেসিডেন্সি কলেজে এবং তারপর অর্থনীতি নিয়ে উচ্চতর শিক্ষা গ্রহণ করেন ইংল্যাণ্ডে কেম্ব্রিজের ট্রিনিটি কলেজে। এছাড়াও তিনি ১৯৯৮ থেকে ২০০৪ সাল পর্যন্ত ক্যামব্রিজের ট্রিনিটি কলেজের মাস্টার হিসেবে কর্মরত ছিলেন।
- তিনি ইকোনমিস্ট ফর পিস অ্যান্ড সিকিউরিটির একজন ট্রাষ্টি।
- তিনিই প্রথম ভারতীয় শিক্ষাবিদ যিনি একটি অক্সব্রিজ কলেজের প্রধান হন। এছাড়াও তিনি প্রস্তাবিত নালন্দা আন্তর্জাতিক বিশ্ববিদ্যালয়ের উপাচার্য হিসাবেও কাজ করেছেন।
- ২০০৬ সালে টাইম ম্যাগাজিন তাকে অনূর্ধ্ব ষাট বছর বয়সী ভারতীয় বীর হিসেবে চিহ্নিত করেছে। ২০১০ সালে তাকে বিশ্বের ১০০ প্রভাবশালী ব্যক্তির তালিকায় স্থান দেওয়া হয়।

উল্লেখ্য,
- "কেবল আয়ের অভাব নয়, বরং সামর্থ্যের অভাবই দারিদ্র্যের মূল কারণ" - এই উক্তিটি অর্থনীতিবিদ অমর্ত্য সেন-এর। তিনি তার "Development as Freedom" গ্রন্থে এই যুক্তি তুলে ধরেন। এখানে 'সামর্থ্যের অভাব' বলতে শুধু আর্থিক সংগতিই নয়, বরং মানুষের সক্ষমতার অভাবকেও বোঝানো হয়েছে, যার মধ্যে রয়েছে শিক্ষা, স্বাস্থ্য, সুযোগ এবং স্বাধীনতা লাভের অভাব।

এছাড়াও,
- অমর্ত্য সেনের লেখা গ্রন্থাবলি ৩০টিরও বেশি ভাষায় অনূদিত হয়েছে।
- The Idea Of Justice-গ্রন্থটির রচয়িতা অমর্ত্য সেন। বইটি মূলত জন রলসের 'A Theory of Justice' (1971)-এর মৌলিক ধারণাগুলির একটি সমালোচনা এবং সংশোধন।

উৎস: i) Britannica.
ii) Development as Freedom- Amartya Sen.

১৭৫.
নিম্নোক্ত কোন রাষ্ট্রটি সাংহাই কোঅপারেশন অর্গানাইজেশন বা SCO -এর সদস্য নয়?
  1. আজারবাইজান
  2. ভারত
  3. পাকিস্তান
  4. ইরান
ব্যাখ্যা

♦ আজারবাইজান রাষ্ট্রটি সাংহাই কোঅপারেশন অর্গানাইজেশন বা SCO -এর সদস্য নয়। অন্যদিকে ভারত, পাকিস্তান ও ইরান সাংহাই কোঅপারেশন অর্গানাইজেশন বা SCO -এর সদস্য।

Shanghai Cooperation Organisation (SCO):
- সাংহাই সহযোগিতা সংস্থা (SCO) হলো একটি ইউরেশীয় রাজনৈতিক, অর্থনৈতিক ও নিরাপত্তা সংস্থা।
- এর মূল লক্ষ্য আঞ্চলিক নিরাপত্তা, অর্থনৈতিক সহযোগিতা, এবং রাজনৈতিক স্থিতিশীলতা নিশ্চিত করা।
- গঠিত হয়: ১৫ জুন, ২০০১ সাল।
- সদরদপ্তর: বেইজিং, চীন।
- প্রতিষ্ঠিত সদস্য দেশ: ৬টি (চীন, রাশিয়া, কাজাখস্তান, কিরগিজস্তান, তাজিকিস্তান এবং উজবেকিস্তান)।
- বর্তমান সদস্য দেশ: ১০টি (রাশিয়া, চীন, ভারত, কাজাখস্তান, কিরগিজস্তান, পাকিস্তান, তাজিকিস্তান, উজবেকিস্তান, ইরান, বেলারুশ)।
- সর্বশেষ সদস্য: বেলারুশ।
- বর্তমান মহাসচিব: Nurlan Yermekbayev।
- ২টি পর্যবেক্ষক রাষ্ট্র: আফগানিস্তান, মঙ্গোলিয়া।

উলেখ্য,
- ২০২৫ সালের Shanghai Cooperation Organisation (SCO)-এর ২৫তম শীর্ষ সম্মেলন চীনের তিয়ানজিন শহরে ৩১ আগস্ট -১ সেপ্টেম্বর, ২০২৫ অনুষ্ঠিত হয়েছে। এটি SCO-এর ইতিহাসে সবচেয়ে বড় সম্মেলন ছিল। সম্মেলনে সভাপতিত্ব করেন চীনের প্রেসিডেন্ট শি জিন পিং।

উৎস: Shanghai Cooperation Organisation ওয়েবসাইট।

১৭৬.
ভারত পাকিস্তানের মধ্যে ইন্দাস ওয়াটার ট্রিটি (IWT) কোন সালে স্বাক্ষরিত হয়?
  1. ১৯৪৮
  2. ১৯৭৪
  3. ১৯৬৫
  4. ১৯৮০
অনির্ধারিত
ব্যাখ্যা

♦ ভারত পাকিস্তানের মধ্যে ইন্দাস ওয়াটার ট্রিটি (IWT) ১৯৬০ সালে স্বাক্ষরিত হয়।
অপশনে সঠিক উত্তর না থাকায় প্রশ্নটি বাতিল করা হয়েছে।
------------------------

সিন্ধু নদের পানিবণ্টন চুক্তি (Indus Waters Treaty):
- ভারতের উজান থেকে পাকিস্তানের সিন্ধু অববাহিকায় প্রবাহিত নদীগুলোর পানি ব্যবহার সংক্রান্ত চুক্তি হচ্ছে সিন্ধু পানি চুক্তি।
- চুক্তি স্বাক্ষরিত হয়: ১৯ সেপ্টেম্বর, ১৯৬০ সাল।
- চুক্তি স্বাক্ষরের স্থান: করাচি, পাকিস্তান।
- মধ্যস্থতাকারী: বিশ্বব্যাংক।
- চুক্তি স্বাক্ষরকারী: ভারতের প্রধানমন্ত্রী জওহরলাল নেহরু ও পাকিস্তানের প্রেসিডেন্ট মোহাম্মদ আইয়ুব খান।

⇒ সিন্ধু পানি চুক্তি অনুসরণ করেই এসব নদীর পানি ব্যবহার করা হয়।
- এই চুক্তি সিন্ধু নদের অববাহিকার ছয়টি নদী দুই দেশের মধ্য দিয়ে বয়ে গেছে।
- চুক্তি অনুযায়ী ভারতকে তিনটি পূর্বাঞ্চলীয় নদীর নিয়ন্ত্রণ দেওয়া হয়েছিল। এগুলো হলো ইরাবতী, বিপাশা ও শতদ্রু।
- অন্যদিকে পাকিস্তানকে দেওয়া হয়েছিল পশ্চিমাঞ্চলীয় তিনটি নদ–নদী অর্থাৎ সিন্ধু, ঝিলম এবং চেনাবের নিয়ন্ত্রণ। বলা হয় পশ্চিম অংশের এ তিনটি নদ–নদীর মাধ্যমে পাকিস্তানে মোট পানির প্রায় ৮০ ভাগ সরবরাহ করে।
- চুক্তি অনুযায়ী পাকিস্তান পায় ৭০ ভাগ পানি আর ভারত পায় ৩০ ভাগ পানি।
- চুক্তিটি কোনো দেশ একতরফাভাবে স্থগিত বা বাতিল করার বিধান নেই। বরং এতে সুস্পষ্ট বিরোধ নিষ্পত্তির ব্যবস্থা রয়েছে।
---------------------

অতিরিক্ত আলোচনা:

১৯৬০ সালে IWT স্বাক্ষরিত হলেও, ভারত ভাগের পর প্রথম আনুষ্ঠানিক জল-বণ্টন বন্দোবস্ত হয়েছিল ৪ মে ১৯৪৮—Inter-Dominion Agreement on Punjab Canal Waters. এই চুক্তিতে ভারত পাকিস্তানের অববাহিকায় পানি সরবরাহ দেবে, আর পাকিস্তান বার্ষিক অর্থপ্রদান করবে—যা ছিল স্থায়ী চুক্তি হওয়া পর্যন্ত একটি স্টপগ্যাপ/অন্তর্বর্তী সমাধান।
এই অন্তর্বর্তী বন্দোবস্তই পরবর্তীতে বিশ্বব্যাংক-মধ্যস্থ আলোচনার পথ খুলে দেয় এবং ১৯৬০ সালের IWT-তে পৌঁছাতে সহায়তা করে।

তাই প্রশ্নটি যদি “ইন্দাস ব্যবস্থায় দুই দেশের প্রথম আনুষ্ঠানিক জল-ব্যবস্থাপনা চুক্তি/সমঝোতা”—এই অর্থে নেওয়া হয়, তহলে ক) ১৯৪৮ অধিক গ্রহণযোগ্য উত্তর। কিন্তু প্রশ্নে সরাসরি এই চুক্তি কত সালে স্বাক্ষরিত হয়েছে, এটা জানতে চাওয়া হয়েছে। সেই হিসাবে ঘুরিয়ে উত্তর নেওয়ার সুযোগ কম।


উৎস:
i) Britannica.
ii) UNTC ওয়েবসাইট।
iii) Ministry of External Affairs, Government of India.

১৭৭.
হালিমা ইয়াকুব কোন দেশের রাষ্ট্রপতি ছিলেন?
  1. ব্রুনেই
  2. মালয়েশিয়া
  3. সিংগাপুর
  4. তানজানিয়া
ব্যাখ্যা

♦ হালিমা ইয়াকুব সিঙ্গাপুরের রাষ্ট্রপতি ছিলেন।

হালিমা ইয়াকুব:
- হালিমা ইয়াকুব সিঙ্গাপুরের অষ্টম ও প্রথম নারী প্রেসিডেন্ট।
- ২০১৭ সালের সেপ্টেম্বরে হালিমা ইয়াকুব ক্ষমতায় এসেছিলেন।
- ২০২৩ সালে ভারতীয় বংশোদ্ভূত অর্থনীতিবিদ থারমান শানমুগারাতনাম হালিমা ইয়াকুবের স্থলাভিষিক্ত হয়েছেন।

উল্লেখ্য,
- সিঙ্গাপুরে প্রেসিডেন্ট পদ অনেকটা আলংকারিক। প্রেসিডেন্ট আনুষ্ঠানিকভাবে নগররাষ্ট্রটির পুঞ্জীভূত আর্থিক রিজার্ভ দেখভাল করেন, সুনির্দিষ্ট কিছু বিষয়ে ভেটো দেওয়ার ক্ষমতা রাখেন এবং দুর্নীতিবিরোধী তদন্ত অনুমোদন করেন। তবে এই পদে প্রতিদ্বন্দ্বিতার জন্য বেশ কঠিন কিছু শর্ত রয়েছে। সংবিধান মতে, প্রেসিডেন্ট হচ্ছে নির্দলীয় একটি পদ।

⇒ সিঙ্গাপুর:
- দক্ষিণ-পূর্ব এশিয়ার ধনী নগররাষ্ট্র সিঙ্গাপুর।
- রাজধানী: সিঙ্গাপুর সিটি।
- মুদ্রা: সিঙ্গাপুরীয় ডলার।
- দেশটির বর্তমান প্রধানমন্ত্রী: লরেন্স ওং (Lawrence Wong)।
- দেশটির বর্তমান প্রেসিডেন্ট: থারমান শানমুগারাতনাম (Mr Tharman Shanmugaratnam)।
- সিঙ্গাপুর ব্রিটিশ উপনিবেশ ছিল। ১৯৫৯ সালে সিঙ্গাপুর স্ব-শাসিত হয়ে ওঠে।

এছাড়াও,
- আধুনিক সিঙ্গাপুরের জনক হলেন লি কুয়ান ইউ। লি কুয়ান ইউ ১৯৫৯ সালের জুন মাসে সিঙ্গাপুরের প্রধানমন্ত্রী হন। তিনি ১৯৫৯ থেকে ১৯৯০ সাল পর্যন্ত সিঙ্গাপুরের প্রধানমন্ত্রী ছিলেন।
- তাঁর দীর্ঘ শাসনামলে , সিঙ্গাপুর দক্ষিণ-পূর্ব এশিয়ার সবচেয়ে সমৃদ্ধ দেশ হয়ে ওঠে।

উৎস: Britannica.

১৭৮.
সম্প্রতি বাংলাদেশ সফর করে যাওয়া পাকিস্তানের উপ প্রধানমন্ত্রী ও পররাষ্ট্র মন্ত্রী, ইসহাক দার পাকিস্তানের কোন্ রাজনৈতিক দলের সাথে সম্পৃক্ত?
  1. পাকিস্তান পিপলস পাটি (PPP)
  2. পাকিস্তান তেহরিকে ইনসাফ (PTI)
  3. পাকিস্তান মুসলিম লীগ (নওয়াজ)
  4. জামায়াতে ইসলামী পাকিস্তান
ব্যাখ্যা

♦ সম্প্রতি বাংলাদেশ সফর করে যাওয়া পাকিস্তানের উপ প্রধানমন্ত্রী ও পররাষ্ট্র মন্ত্রী, ইসহাক দার পাকিস্তানের পাকিস্তান মুসলিম লীগ (নওয়াজ) দলের সাথে সম্পৃক্ত।

পাকিস্তানের পররাষ্ট্রমন্ত্রী ইসহাক দার:
- মুহাম্মদ ইসহাক দার একজন পাকিস্তানি রাজনীতিবিদ।
- তিনি বর্তমানে পাকিস্তানের পররাষ্ট্রমন্ত্রী এবং ২০২৪ সাল থেকে পাকিস্তানের উপ-প্রধানমন্ত্রী হিসেবে দায়িত্ব পালন করছেন।
- ইসহাক দার পাকিস্তান মুসলিম লীগ (নওয়াজ) দলের সাথে সম্পৃক্ত।
- তিনি মুসলিম লীগ এন-এর প্রধান নওয়াজ শরীফের বেয়াই।

⇒ ২৩ আগস্ট, ২০২৫ তারিখে পাকিস্তানের উপপ্রধানমন্ত্রী ও পররাষ্ট্রমন্ত্রী মোহাম্মদ ইসহাক দার দুই দিনের রাষ্ট্রীয় সফরে ঢাকায় অবতরণ করেন।
- ১৩ বছর পর বাংলাদেশ সফরে আসা পাকিস্তানের কোন পররাষ্ট্রমন্ত্রী হলেন ইসহাক দার। এর আগে ২০১৩ সালে আওয়ামী লীগ সরকারের আমলে তৎকালীন পাকিস্তানের পররাষ্ট্রমন্ত্রী হিনা রব্বানি ঢাকা সফর করেছিলেন।

উল্লেখ্য,
- পাকিস্তানের উপপ্রধানমন্ত্রী ও পররাষ্ট্রমন্ত্রী ইসহাক দারের বাংলাদেশ সফরটি যতটা কূটনৈতিক, তার চেয়ে বেশি রাজনৈতিক। তিনি দ্বিপক্ষীয় সম্পর্ক উন্নয়নে আমাদের পররাষ্ট্র উপদেষ্টা তৌহিদ হোসেনের সঙ্গে আলোচনা করেছেন। প্রধান উপদেষ্টা অধ্যাপক মুহাম্মদ ইউনূসের সঙ্গে সাক্ষাৎ করে তিনি সার্ক পুনরুজ্জীবিত করার কথা বলেছেন। তাঁর সফরকালে বাংলাদেশ ও পাকিস্তানের সঙ্গে একটি চুক্তি ও চারটি সমঝোতা স্মারক সই হয়েছে।

উৎস: i) BBC.
ii) প্রথম আলো।

১৭৯.
তুরস্কের বিচ্ছিন্নতাবাদী দল Kurdistan Workers' Party বা PKK এর প্রতিষ্ঠাতা কে?
  1. জালাল তালাবানী
  2. মাসুদ বারজানী
  3. মাজলুম আবদি
  4. আবদুল্লাহ ওচালান
ব্যাখ্যা

♦ তুরস্কের বিচ্ছিন্নতাবাদী দল Kurdistan Workers' Party বা PKK এর প্রতিষ্ঠাতা আবদুল্লাহ ওচালান।

Kurdistan Workers' Party (PKK):
- কুর্দিস্তান ওয়ার্কার্স পার্টি (পিকেকে) একটি কুর্দি জাতীয়তাবাদী রাজনৈতিক ও সামরিক সংগঠন।
- এটি মূলত তুরস্ক, ইরান, ইরাক এবং সিরিয়ায় কুর্দিদের অধিকারের পক্ষে আন্দোলন চালিয়ে যাচ্ছে।
- পিকেকে ১৯৭৮ সালে আবদুল্লাহ ওচালানের (Abdullah Ocalan) নেতৃত্বে প্রতিষ্ঠিত হয়েছে।
- পিকেকে শুরুতে একটি সাম্যবাদী বিপ্লবী গোষ্ঠী হিসেবে আত্মপ্রকাশ করে।
- সংগঠনটির মূল দাবি ছিল স্বাধীন কুর্দিস্তান প্রতিষ্ঠা, তবে সময়ের সঙ্গে সঙ্গে তারা আঞ্চলিক স্বায়ত্তশাসন ও সাংস্কৃতিক অধিকারের দিকেও মনোযোগ দেয়।
- পিকেকে-কে বিভিন্ন দেশ সন্ত্রাসী সংগঠন হিসেবে তালিকাভুক্ত করলেও, অনেকের কাছে এটি কুর্দিদের অধিকারের জন্য সংগ্রামী প্রতিরোধ শক্তি।

উল্লেখ্য,
- পিকেকে ১৯৮৪ সালে প্রতিষ্ঠার পর থেকে সশস্ত্র বিদ্রোহ চালিয়ে আসছে।
- পিকেকে'র আদর্শ বিপ্লবী মার্কসবাদ-লেনিনবাদ এবং বিচ্ছিন্নতাবাদী জাতিগত-জাতীয়তাবাদের উপর প্রতিষ্ঠিত।
- ইউরোপীয় ইউনিয়নের সদস্য এবং মার্কিন যুক্তরাষ্ট্র, কানাডা এবং অস্ট্রেলিয়ার মতো অন্যান্য দেশ সহ অনেক দেশ পিকেকেকে আন্তর্জাতিকভাবে একটি সন্ত্রাসী সংগঠন হিসেবে তালিকাভুক্ত করেছে।
- পিকেকে'র প্রাথমিক লক্ষ্যবস্তু হল তুরস্কের পুলিশ, সামরিক, অর্থনৈতিক এবং সামাজিক সম্পদ।
- সম্প্রতি (১ মার্চ, ২০২৫) কুর্দিস্তান ওয়ার্কার্স পার্টি (পিকেকে) দেশটির সরকারের সঙ্গে চলমান ৪০ বছরের সংঘাতের অবসান ঘটানোর জন্য যুদ্ধবিরতির ঘোষণা দিয়েছে।

উৎস: i) BBC.
ii) Republic of Türkiye Ministry of Foreign Affairs.

১৮০.
প্রাচীনকালে কোন দেশে সিভিল সার্ভিসের ধারণা প্রথম উদ্ভূত হয়?
  1. মিশর
  2. গ্রীস
  3. চীন
  4. রোম
ব্যাখ্যা

♦ প্রাচীনকালে সিভিল সার্ভিসের ধারণা প্রথম উদ্ভূত চীনে।

সিভিল সার্ভিস:
- সিভিল সার্ভিস একটি রাষ্ট্রীয় প্রশাসনিক ব্যবস্থা।
- এর মাধ্যমে সরকার বিভিন্ন কার্যক্রম পরিচালনা করে এবং নাগরিকদের সেবা প্রদান করে। এটি মূলত একটি পেশাদার, অরাজনৈতিক ও দক্ষ কর্মকর্তা-কর্মচারী বাহিনী, যারা সংবিধান ও সরকারের নীতিমালার আলোকে কাজ করে।
- এছাড়া, তারা সরকারের নীতিমালা বাস্তবায়নে গুরুত্বপূর্ণ ভূমিকা পালন করেন। এর অন্তর্ভুক্ত কর্মকর্তারা কেন্দ্রীয় ও স্থানীয় প্রশাসনের নানা স্তরে নিয়োজিত থাকেন।

⇒ সিভিল সার্ভিসের উদ্ভব হয়েছে – প্রাচীন কালেই; যখন কিনা বিশ্বের বিভিন্ন প্রান্তে রাজতন্ত্র বিদ্যমান ছিল।
- এনসাইক্লোপিডিয়া ব্রিটানিকার তথ্য অনুসারে, সিভিল সার্ভিসের ধারণার উদ্ভব হয়েছিল প্রাচীন মিশরীয় ও গ্রীক সভ্যতার সময়।
- পরবর্তীতে, রোমান সাম্রাজ্য প্রশাসনিক দপ্তর নির্মাণের মাধ্যমে একটি বিস্তৃত নেটওয়ার্ক গড়ে তুলেছিল; যা পরবর্তীতে রোমান ক্যাথলিক চার্চগুলোও অনুসরণ করে।

⇒ চীনে খ্রিস্টপূর্ব ২ অব্দে সিভিল সার্ভিসের উদ্ভব হয় যা চীনা সভ্যতা/সাম্রাজ্যকে দুই হাজার বছরের বেশি সময় ধরে স্থায়িত্ব দিয়েছে।
- যোগ্যতার ভিত্তিতে সিভিল সার্ভিসের প্রাচীনতম উদাহরণগুলির মধ্যে একটি হলো চীনের ইম্পেরিয়াল আমলাতন্ত্র।
- চীনে সিভিল সার্ভিসের চাকরিকে ‘Iron Rice Bowl’ বলা হয়। চাকরির নিরাপত্তা ও উচ্চ বেতনের জন্য এই নামকরণ করা হয়েছে।
- চীনের সিভিল সার্ভিস পরীক্ষা মান্দারিন ভাষায় হয় ‘Guako’।
- খ্রিষ্টপূর্ব ২০৬ অব্দে চীনের হান রাজবংশের রাজা গাওজু (Gaozu) এর শাসনামলে মেধাভিত্তিক সিভিল সার্ভিসের উন্মেষ ঘটে। তিনি প্রথম পরীক্ষার মাধ্যমে রাজকর্মচারী নিয়োগের ব্যবস্থা চালু করেন। এই সময়ে ইম্পেরিয়াল পরীক্ষা ব্যবস্থা (Keju বা Civil Service Examination) চালু হয়, যা মেধা ও যোগ্যতার ভিত্তিতে সরকারি কর্মকর্তা নিয়োগের জন্য প্রতিযোগিতামূলক পরীক্ষার উপর নির্ভরশীল ছিল। এই ব্যবস্থা পরবর্তীতে সুই (৫৮১-৬১৮) এবং তাং রাজবংশের (৬১৮-৯০৭) সময়ে আরও উন্নত হয়।
- পরবর্তীতে অন্যান্য রাজবংশের শাসনের সময় তা বিভিন্ন সংশোধন ও পরিমার্জনের মাধ্যমে পরিবর্তিত হতে থাকে ও অধিক সুসংগঠিত হয়।
- সং সাম্রাজ্য (Song Dynasty – 960–1279) প্রথম যোগ্যতা (jinshi degree) ও পরীক্ষা পদ্ধতির প্রচলন ঘটায়।
- মিং সাম্রাজ্যের (Ming dynasty – 1368–1644) সময় সিভিল সার্ভিস সিস্টেম চূড়ান্ত রূপে পৌঁছায় এবং পরবর্তীতে কিং সাম্রাজ্যও এই পদ্ধতিই অনুসরণ করে। এই সময় সিভিল সার্ভিসের কর্মকর্তাগণ নিজের এলাকায় নিয়োগ না পাওয়া, এক স্থানে তিনবছরের বেশি দায়িত্ব পালন না করা ইত্যাদি নিয়ম অন্তর্ভূক্ত হয়। তাছাড়া, উচ্চপদের জন্য যোগ্যতার ক্ষেত্রে বেশ কিছু জিনিস অন্তর্ভূক্ত এবং শৃঙ্খলাভঙ্গের জন্য শাস্তির বিধান করা হয়।
- চীনে ১৯৪৯ সালে গণপ্রজাতন্ত্র প্রতিষ্ঠার পর মূলত বর্তমান রাষ্ট্রীয় সিভিল সার্ভিসের প্রচলন ঘটে। সাধারণত কমিউনিস্ট পার্টির সাথে সংশ্লিষ্টরাই এই সার্ভিসে যোগদান করে।

• তাই, সিভিল সার্ভিসের উদ্ভব হিসেবে চীন দেশকেই গণ্য করা হয়।

উল্লেখ্য,
- ১৯৪৭ সালের ভারত বিভাগের পর এই কাঠামো দুটি ভাগে বিভক্ত হয়—ভারত ও পাকিস্তানের নিজ নিজ প্রশাসনিক কাঠামোতে। পরবর্তীতে বাংলাদেশের স্বাধীনতার পর, ১৯৭২ সালে সিভিল সার্ভিস পুনর্গঠিত হয়ে বাংলাদেশ সিভিল সার্ভিস (BCS) নামে আত্মপ্রকাশ করে।

উৎস: i) Britannica.
ii) BBC.

১৮১.
একটি ঘনকের সম্পূর্ণ পৃষ্ঠের ক্ষেত্রফল 48 বর্গমিটার। ঘনকটির কর্ণের দৈর্ঘ্য কত?
  1. 2√2 মিটার
  2. 2√3 মিটার
  3. 2 মিটার
  4. 2√6 মিটার
ব্যাখ্যা

প্রশ্ন: একটি ঘনকের সম্পূর্ণ পৃষ্ঠের ক্ষেত্রফল 48 বর্গমিটার। ঘনকটির কর্ণের দৈর্ঘ্য কত?

সমাধান:
দেওয়া আছে,
ঘনকের সম্পূর্ণ পৃষ্ঠের ক্ষেত্রফল 48 বর্গমিটার

আমরা জানি,
ঘনকের সম্পূর্ণ পৃষ্ঠের ক্ষেত্রফল = 6a2, [যেখানে a হলো ঘনকের একটি বাহুর দৈর্ঘ্য।]

প্রশনমতে,
6a2 = 48
⇒ a2 = 48/6
⇒ a2 = 8
⇒ a = √8 = 2√2
∴ a = 2√2 মিটার

আবার,
আমরা জানি,
ঘনকের কর্ণের দৈর্ঘ্য = a√3
= (2√2) × √3 ; [a = 2√2]
= 2√(2 × 3)
= 2√6

সুতরাং, ঘনকটির কর্ণের দৈর্ঘ্য 2√6 মিটার।

১৮২.
একটা লোহার গোলক গলিয়ে কয়টি সমান আয়তনের গোলক তৈরী সম্ভব যাদের প্রত্যেকের ব্যাসার্ধ বড় গোলকটির অর্ধেক?


  1. ১৬

ব্যাখ্যা

প্রশ্ন: একটা লোহার গোলক গলিয়ে কয়টি সমান আয়তনের গোলক তৈরী সম্ভব যাদের প্রত্যেকের ব্যাসার্ধ বড় গোলকটির অর্ধেক?

সমাধান:
ধরি,
বড় গোলকের ব্যাসার্ধ = R
ছোট গোলকের ব্যাসার্ধ, r = R/2

আমরা জানি,
গোলকের আয়তন V = (4/3)πr3

এখন,
বড় গোলকের আয়তন = (4/3)πR3
ছোট গোলকের আয়তন = (4/3)π(R/2)3 = (1/8) × (4/3)πR3

∴ ছোট গোলকের সংখ্যা = বড় গোলকের আয়তন ÷ ছোট গোলকের আয়তন
= {(4/3)πR3} ÷ {(1/8) × (4/3)πR3}
= 1/(1/8)
= 8

সুতরাং, বড় গোলকটি গলিয়ে ৮টি সমান ছোট গোলক তৈরি করা সম্ভব।

১৮৩.
logx4 = - 2 হলে x = কত?
  1. 1/2
  2. - 1/2
  3. 2
  4. - 2
ব্যাখ্যা

প্রশ্ন: logx4 = - 2 হলে x = কত?

সমাধান:
দেওয়া আছে,
logx4 = - 2
⇒ 4 = x- 2
⇒ 4 = 1/x2
⇒ x2 = 1/4
⇒ x2 = (1/2)2
∴ x = 1/2

১৮৪.
একটি ত্রিভুজের প্রথম কোণ দ্বিতীয় কোণের অর্ধেক। তৃতীয় কোণ অপর দুই কোণের বিয়োগফলের তিনগুণ। দ্বিতীয় কোণটি কত ডিগ্রী?
  1. ৩০
  2. ৬০
  3. ৯০
  4. ৪৫
ব্যাখ্যা

প্রশ্ন: একটি ত্রিভুজের প্রথম কোণ দ্বিতীয় কোণের অর্ধেক। তৃতীয় কোণ অপর দুই কোণের বিয়োগফলের তিনগুণ। দ্বিতীয় কোণটি কত ডিগ্রী?

সমাধান:
ধরি,
দ্বিতীয় কোণ = x
প্রথম কোণ দ্বিতীয় কোণের অর্ধেক।
∴ প্রথম কোণ = x/2
এবং,
তৃতীয় কোণটি অপর দুই কোণের বিয়োগফলের তিনগুণ।
অর্থাৎ, তৃতীয় কোণ = 3{x - (x/2)} = 3(2x - x)/2 = 3x/2

আমরা জানি,
ত্রিভুজের তিনটি কোণের সমষ্টি সর্বদা 180°

প্রশ্নমতে,
x + (x/2) + (3x/2) = 180°
⇒ (2x + x + 3x)/2 = 180°
⇒ 6x/2 = 180°
⇒ 3x = 180°
⇒ x = 180°/3
∴ x = 60°

অতএব, দ্বিতীয় কোণটি হলো 60°.

১৮৫.
একটি সমান্তর ধারার 4র্থ (চতুর্থ) এবং 12 তম পদের যোগফল 20 । ঐ ধারার প্রথম 15 পদের যোগফল কত?
  1. 100
  2. 150
  3. 200
  4. 300
ব্যাখ্যা

প্রশ্ন: একটি সমান্তর ধারার 4র্থ (চতুর্থ) এবং 12 তম পদের যোগফল 20 । ঐ ধারার প্রথম 15 পদের যোগফল কত?

সমাধান:
আমরা জানি,
সমান্তর ধারার n-তম পদ = a + (n - 1)d ; যেখানে a = প্রথম পদ, d = সাধারণ অন্তর।

সুতরাং,
সমান্তর ধারার 4র্থ পদ = a + (4 - 1)d = a + 3d
সমান্তর ধারার 12 পদ = a + (12 - 1)d = a + 11d

প্রশ্নমতে,
a + 3d + a + 11d = 20
∴ 2a + 14d = 20 ........ (1)

আবার,
সমান্তর ধারার প্রথম n পদের যোগফল = (n/2) × {2a + (n - 1)d}
∴ সমান্তর ধারার প্রথম 15 পদের যোগফল = (15/2) × {2a + (15 - 1)d}
= (15/2) × {2a + 14d}
= (15/2) × 20 ; [(1) নং হতে]
= 15 × 10
= 150

সুতরাং, ঐ ধারার প্রথম 15 পদের যোগফল 150

১৮৬.
x2 + 6x - 27 < 0 অসমতাটির সমাধান সেট নিচের কোনটি?
  1. [-9, 3]
  2. [3, ∞)
  3. (-9, 3)
  4. (∞, -9)
ব্যাখ্যা

প্রশ্ন: x2 + 6x - 27 < 0 অসমতাটির সমাধান সেট নিচের কোনটি?

সমাধান:
দেওয়া আছে,
⇒ x2 + 6x - 27 < 0

এখন,
⇒ x2 + 9x - 3x - 27 = 0
⇒ x(x + 9) - 3(x + 9) = 0
⇒ (x + 9)(x - 3) = 0
হয়, (x + 9) = 0
∴ x = - 9

এবং, (x - 3) = 0
∴ x = 3

অসমতাটি হলো x2 + 6x - 27 < 0 যেহেতু এটি একটি দ্বিঘাত অসমতা, এর সমাধানটি মূল দুটি বিন্দুর মধ্যবর্তী অঞ্চলে অবস্থিত হবে। অর্থাৎ, x এর মান - 9 এবং 3 এর মধ্যে থাকবে।

সুতরাং, সমাধান সেট = (- 9, 3)

বিকল্প সমাধান:
যদি x = - 10 হয়, তাহলে (- 10)2 + 6(- 10) - 27 = 100 - 60 - 27 = 13 > 0
যদি x = 0 হয়, তাহলে (0)2 + 6(0) - 27 = 0 - 0 - 27 = - 27 < 0
যদি x = 4 হয়, তাহলে (4)2 + 6(4) - 27 = 16 + 24 - 27 = 13 > 0

সুতরাং, সমাধান সেটটি (-9, 3) এর মধ্যে অবস্থিত।

১৮৭.
একটা বাক্সে ৪টা লাল, ৩টা নীল, ২টা হলুদ ও ১টা সবুজ বল আছে। কমপক্ষে কয়টা বল উঠালে সেখানে অন্তত একটা লাল বল থাকবেই?




ব্যাখ্যা

প্রশ্ন: একটা বাক্সে ৪টা লাল, ৩টা নীল, ২টা হলুদ ও ১টা সবুজ বল আছে। কমপক্ষে কয়টা বল উঠালে সেখানে অন্তত একটা লাল বল থাকবেই?

সমাধান:
লাল বল = ৪
নীল বল = ৩
হলুদ বল = ২
সবুজ বল = ১
মোট = ৪ + ৩ + ২ + ১ = ১০ বল

সমাধান করতে হবে: কমপক্ষে কয়টা বল তুললে অন্তত একটি লাল বল উঠবেই।

- কমপক্ষে লাল বল বের করার জন্য worst case বিবেচনা করতে হবে।
worst case = প্রথমে সব লাল না তুলে বাকি সব রঙের বল তুলতে হবে।

লাল নয় এমন বলের সংখ্যা = ৩ + ২ + ১ = ৬
অতএব, ৬টা বল তোলার পরও আমরা কোনো লাল বল নাও পেতে পারি।

এখন,
৬টা লাল নয় এমন বলের পর আরও ১টা বল তুললে লাল বল আসবেই।
অতএব, ৭টা বল তুলতে হবে।

সঠিক উত্তর: (গ) ৭

১৮৮.
যদি M = {a, b, 1, 2} এবং N = {1, 2} হয়, তবে N - M এর মান কত?
  1. { }
  2. {a, b}
  3. { 0 }
  4. {- a, - b}
ব্যাখ্যা

প্রশ্ন: যদি M = {a, b, 1, 2} এবং N = {1, 2} হয়, তবে N - M এর মান কত?

সমাধান:
দেওয়া আছে,
M = {a, b, 1, 2} এবং N = {1, 2}

প্রদত্ত রাশি,
N - M = {1, 2} - {a, b, 1, 2} = { }
N - M = { }

অথবা,
যদি M = {a, b, 1, 2} এবং N = {1, 2} হয়, তবে N - M এর মান হলো একটি খালি সেট, অর্থাৎ ∅ বা { }। এর কারণ হলো N সেটের সকল উপাদান (1 এবং 2) M সেটে উপস্থিত রয়েছে। N - M মানে হলো N সেটের এমন সকল উপাদান যা M সেটে নেই, এবং এই ক্ষেত্রে এমন কোনো উপাদান নেই।

সুতরাং, N - M = ∅ বা {}

১৮৯.
ax + by = a2; bx - ay = ab; এই সহ-সমীকরণের (x, y) এর সমাধান কোনটি?
  1. (a2, b2)
  2. (a, b)
  3. (0, a)
  4. (a, 0)
ব্যাখ্যা

প্রশ্ন: ax + by = a2; bx - ay = ab; এই সহ-সমীকরণের (x, y) এর সমাধান কোনটি?

সমাধান:
দেওয়া আছে,
ax + by = a2 ............ (1)
bx - ay = ab..........(2)

সমীকরণ (1)-কে b দিয়ে গুণ করে পাই, abx + b2y = a2b.......(3)
সমীকরণ (2)-কে a দিয়ে গুণ করে পাই, abx - a2y = a2b.......(4)

এখন, (3) - (4) করে পাই,
abx + b2y - abx + a2y = a2b - a2b
⇒ y(a2 + b2) = 0
∴ y = 0

y এর মান (1) নং এ বসিয়ে পাই,
ax + 0 = a2
⇒ x = a2/a = a
∴ x = a

সুতরাং, সমাধান (x, y) = (a, 0)

১৯০.
একটি গুণোত্তর ধারার পঞ্চম পদটি ৩২ ও অষ্টম পদটি ২৫৬ হলে উক্ত ধারার সাধারণ অনুপাত কত?

  1. ১৬

  2. ১/২
ব্যাখ্যা

প্রশ্ন: একটি গুণোত্তর ধারার পঞ্চম পদটি ৩২ ও অষ্টম পদটি ২৫৬ হলে উক্ত ধারার সাধারণ অনুপাত কত?

সমাধান:
আমরা জানি,
একটি গুণোত্তর ধারার n-তম পদ = arn -1

দেওয়া আছে,
৫ম পদ, ar4 = 32 .........(১)
৮ম পদ, ar7 = 256 .........(২)

এখন, (২) নং কে (১) নং দ্বারা ভাগ করে পাই,
ar7/ar4 = 256/32
⇒ r3 = 8
⇒ r3 = 23
∴ r = 2

সুতরাং, ধারাটির সাধারণ অনুপাত ২ ।

১৯১.
একটি ট্রেন প্রতি সেকেন্ডে ১০০ ফুট বেগে চলছে। এক ব্যক্তির বন্দুকের গুলির বেগ সেকেন্ডে ২০০ ফুট। উক্ত ব্যক্তি চলন্ত ট্রেনের ৩০০ ফুট সামনে একটা স্তম্ভ লক্ষ্য করে গুলি ছুড়লে কত সেকেন্ড পর তা স্তম্ভকে আঘাত করবে?

  1. ১.৫

  2. ০.৫
ব্যাখ্যা

প্রশ্ন: একটি ট্রেন প্রতি সেকেন্ডে ১০০ ফুট বেগে চলছে। এক ব্যক্তির বন্দুকের গুলির বেগ সেকেন্ডে ২০০ ফুট। উক্ত ব্যক্তি চলন্ত ট্রেনের ৩০০ ফুট সামনে একটা স্তম্ভ লক্ষ্য করে গুলি ছুড়লে কত সেকেন্ড পর তা স্তম্ভকে আঘাত করবে?

সমাধান:
ট্রেনের বেগ = ১০০ ফুট/সেকেন্ড
গুলির বেগ = ২০০ ফুট/সেকেন্ড
স্তম্ভের দূরত্ব = ৩০০ ফুট

ব্যক্তি ট্রেনের উপর থেকে সামনের দিকে গুলি ছুড়েছে, তাই গুলির আপেক্ষিক কার্যকর বেগ = ট্রেনের বেগ + গুলির বেগ।

কার্যকর বেগ = ২০০ + ১০০ = ৩০০ ফুট/সেকেন্ড
সময় = দূরত্ব ÷ বেগ = ৩০০ ÷ ৩০০ = ১ সেকেন্ড

১৯২.
দুইটি সংখ্যার ল,সা, গু 4x2 + 12x2 - 16x - 48, গ,সা,গু 2x+4। একটি সংখ্যা 4x2 + 20x + 24 হলে অপরটি-
  1. x2 - 4
  2. 2(x2 - 4)
  3. 4(x2 - 4)
  4. x + 2
ব্যাখ্যা

প্রশ্ন: দুইটি সংখ্যার ল,সা, গু 4x2 + 12x2 - 16x - 48, গ,সা,গু 2x+4। একটি সংখ্যা 4x2 + 20x + 24 হলে অপরটি-

সমাধান:

[মূল প্রশ্নে 4x2 + 12x2 - 16x - 48 অংশটি ভুল দেওয়া আছে, এটি: 4x3 + 12x2 - 16x - 48 হবে, তাই ল,সা, গু 4x3 + 12x2 - 16x - 48 ধরে সমাধান করা হয়েছে]

ল,সা, গু = 4x3 + 12x2 - 16x - 48
গ,সা,গু = 2x + 4

একটি সংখ্যা = 4x2 + 20x + 24
অপর সংখ্যা = ?

আমরা জানি,
প্রথম সংখ্যা ​× দ্বিতীয় সংখ্যা​ = ল.সা.গু × গ.সা.গু

গ,সা,গু = 2x + 4 = 2(x + 2)

একটি সংখ্যা = 4x2 + 20x + 24
= 4(x2 + 5x + 6)
= 4(x + 2)(x + 3)

ল,সা, গু = 4x3 + 12x2 - 16x - 48
= 4(x3 + 3x2 - 4x - 12)
= 4[x2(x + 3) - 4(x + 3)]
= 4(x + 3)(x2 - 4)
= 4(x + 3)(x - 2)(x + 2)

প্রথম সংখ্যা ​× দ্বিতীয় সংখ্যা​ = ল.সা.গু × গ.সা.গু
দ্বিতীয় সংখ্যা = [4(x + 3)(x - 2)(x + 2) × 2(x + 2)] / [4(x + 2)(x + 3)]
= [8(x + 3)(x - 2)(x + 2)2] / [4(x + 2)(x + 3)]
= 2(x - 2)(x + 2)
= 2(x2 - 4)

১৯৩.
যদি গতকাল শুক্রবার হতো, তাহলে আজ থেকে ৮১ তম দিন কি বার হবে?
  1. শুক্রবার
  2. বুধবার
  3. সোমবার
  4. রবিবার
ব্যাখ্যা

প্রশ্ন: যদি গতকাল শুক্রবার হতো, তাহলে আজ থেকে ৮১ তম দিন কি বার হবে?

সমাধান:
গতকাল শুক্রবার ছিল।
অতএব, আজ শনিবার।
এখন আজ থেকে ৮১ তম দিন কোন বার হবে তা বের করতে হবে।

প্রতি সপ্তাহে ৭ দিন থাকে, তাই আমরা ৮১ কে ৭ দিয়ে ভাগ করব:

৮১ ÷ ৭ = ১১ সপ্তাহ এবং ৪ দিন।
অতএব, ৮১ দিনের ব্যবধান মানে ৪ দিন পরের বার।

এখন আজ (শনিবার) থেকে ৪ দিন যোগ করি:
আজ = শনিবার (দিন ০)
দিন ১ = রবিবার
দিন ২ = সোমবার
দিন ৩ = মঙ্গলবার
দিন ৪ = বুধবার

∴ সঠিক উত্তর: বুধবার

১৯৪.
নীচের ধারার পরবর্তী সংখ্যা কোনটি? ১, √৯, ৫, √৪৯, ......


  1. ১০
  2. ১২
ব্যাখ্যা

প্রশ্ন: নীচের ধারার পরবর্তী সংখ্যা কোনটি? ১, √৯, ৫, √৪৯, ......

সমাধান:
দেওয়া ধারা: ১, √৯, ৫, √৪৯, ......

প্রথম পদ = ১
দ্বিতীয় পদ = √৯ = ৩
তৃতীয় পদ = ৫
চতুর্থ পদ = √৪৯ = ৭
পঞ্চম পদ = ?

এখন সংখ্যাগুলি দেখি: ১, ৩, ৫, ৭.......

প্যাটার্ন: এটি একটি বিজোড় সংখ্যার ধারা যেখানে প্রতিটি পদ আগের পদ থেকে ২ বেশি।

১ থেকে ৩ = +২
৩ থেকে ৫ = +২
৫ থেকে ৭ = +২
৭ থেকে ? = +২
পরবর্তী সংখ্যা = ৭ + ২ = ৯

∴ সঠিক উত্তর: খ) ৯

১৯৫.
১ জন লোক ১ টা কলা ১ মিনিটে খেতে পারে। তাহলে ৫ জন লোকের ৫ টা কলা খেতে কত মিনিট সময় লাগবে?

  1. ২৫

  2. ১০
ব্যাখ্যা

প্রশ্ন: ১ জন লোক ১ টা কলা ১ মিনিটে খেতে পারে। তাহলে ৫ জন লোকের ৫ টা কলা খেতে কত মিনিট সময় লাগবে?

সমাধান:
১ জন লোক ১ টা কলা = ১ মিনিট
১ জন লোক ৫ টা কলা = ৫ মিনিট

৫ জন লোক ১ টা করে কলা = ১ মিনিট (সবাই একসাথে খায়)
৫ জন লোক ৫ টা কলা = ১ মিনিট (প্রতিটি লোক ১ টা কলা খায়)

কারণ: যখন ৫ জন লোক একসাথে খায়, তারা একই সময়ে কলা খাওয়া শুরু করে এবং শেষ করে। প্রতিটি লোক ১ টা কলা খেতে ১ মিনিট সময় নেয়।

১৯৬.
একটি বই 10% ক্ষতিতে বিক্রি করা হইল। বিক্রয়মূল্য 60 টাকা বেশী হলে 5% লাভ হত। বইটির ক্রয়মূল্য কত টাকা?
  1. 200
  2. 300
  3. 400
  4. 500
ব্যাখ্যা

প্রশ্ন: একটি বই 10% ক্ষতিতে বিক্রি করা হইল। বিক্রয়মূল্য 60 টাকা বেশী হলে 5% লাভ হত। বইটির ক্রয়মূল্য কত টাকা?

সমাধান:
ধরি,
বইটির ক্রয়মূল্য = 100 টাকা
10% ক্ষতিতে, বিক্রয়মূল্য = 100 - 10 = 90 টাকা
5% লাভে, বিক্রয়মূল্য = 100 + 5 = 105 টাকা
∴ বিক্রয়মূল্য বেশি = 105 - 90 = 15 টাকা

বিক্রয়মূল্য 15 টাকা বেশি হলে ক্রয়মূল্য = 100 টাকা
বিক্রয়মূল্য 1 টাকা বেশি হলে ক্রয়মূল্য = 100/15 টাকা
বিক্রয়মূল্য 60 টাকা বেশি হলে ক্রয়মূল্য = (100 × 60)/15 টাকা
= 400 টাকা

সুতরাং, বইটির ক্রয়মূল্য 400 টাকা।

১৯৭.
কোন যান্ত্রিক গিয়ারের চাকা ছোট হলে সংযুক্ত অবস্থায় বড়টির চেয়ে ছোট চাকাটি কিভাবে ঘুরবে?
  1. আস্তে
  2. জোরে
  3. একইভাবে
  4. কোনটিই নয়
ব্যাখ্যা

প্রশ্ন: কোন যান্ত্রিক গিয়ারের চাকা ছোট হলে সংযুক্ত অবস্থায় বড়টির চেয়ে ছোট চাকাটি কিভাবে ঘুরবে?

সমাধান:

গিয়ার মেকানিজমের নীতি:

যখন দুটি গিয়ার চাকা সংযুক্ত থাকে, তখা তারা একে অপরকে স্পর্শ করে এবং চলে।

গুরুত্বপূর্ণ বিষয়:
- ছোট চাকার দাঁতের সংখ্যা < বড় চাকার দাঁতের সংখ্যা
- যখন সংযুক্ত থাকে, উভয় চাকার দাঁত একটি নির্দিষ্ট সময়ে একই সংখ্যক বার মিলিত হয়

গতির সম্পর্ক:
- ছোট চাকাটি বড় চাকার চেয়ে দ্রুত গতিতে ঘোরে (জোরে/বেগে ঘোরে)।

কারণ:
- যদি বড় চাকায় 100 দাঁত এবং ছোটটায় 20 দাঁত থাকে
- বড় চাকা 1 বার ঘুরলে, ছোট চাকা 5 বার ঘোরে
- তাই ছোট চাকা আরও বেশি দ্রুত ঘোরে
- সঠিক উত্তর: খ) জোরে

সুতরাং, ছোট চাকাটি বড় চাকার চেয়ে জোরে/দ্রুত গতিতে ঘোরে।

১৯৮.
১৫ মিটার লম্বা একটি স্কেলের এক প্রান্তে ১০ কেজি ওজন বাঁধা হয়েছে। একই প্রান্ত থেকে স্কেলের দৈর্ঘ্যের ৩ : ২ অনুপাতে একটি পেরেক লাগানো আছে। অপর প্রান্তে কত কেজি ওজন দিলে স্কেলের ভারসাম্য থাকবে?
  1. ৪৫
  2. ৩০
  3. ১৫

ব্যাখ্যা

প্রশ্ন: ১৫ মিটার লম্বা একটি স্কেলের এক প্রান্তে ১০ কেজি ওজন বাঁধা হয়েছে। একই প্রান্ত থেকে স্কেলের দৈর্ঘ্যের ৩ : ২ অনুপাতে একটি পেরেক লাগানো আছে। অপর প্রান্তে কত কেজি ওজন দিলে স্কেলের ভারসাম্য থাকবে?

সমাধান:

স্কেলের মোট দৈর্ঘ্য = ১৫ মিটার
এক প্রান্তের ওজন = ১০ কেজি
পেরেক বিভাজন = ৩ : ২

৩ : ২ অনুপাতে পুরো ১৫ মিটারকে ৫ ভাগে ভাগ করলে পেরেকটি এক প্রান্ত থেকে ৯ মিটারে আছে। অপর অংশ = ৬ মিটার। ভারসাম্য শর্ত অনুযায়ী টর্ক সমান হবে।

বাঁ দিকের টর্ক = ১০ কেজি × ৯ মিটার = ৯০
ডান দিকের টর্ক = W × ৬ মিটার

W = ৯০ ÷ ৬ = ১৫ কেজি

সঠিক উত্তর: গ) ১৫ কেজি

১৯৯.
একটি থলিতে 3 টি সবুজ এবং 2 টি লাল বল আছে। অপর একটি থলিতে 2 টি সবুজ এবং 5 টি লাল বল আছে। নিরপেক্ষভাবে প্রত্যেক থলি থেকে একটি করে বল তোলা হল। দুইটি বলের মধ্যে অন্তত একটি সবুজ হওয়ার সম্ভাব্যতা কত?
  1. 5/7
  2. 2/7
  3. 5/12
  4. 1/4
ব্যাখ্যা

প্রশ্ন: একটি থলিতে 3 টি সবুজ এবং 2 টি লাল বল আছে। অপর একটি থলিতে 2 টি সবুজ এবং 5 টি লাল বল আছে। নিরপেক্ষভাবে প্রত্যেক থলি থেকে একটি করে বল তোলা হল। দুইটি বলের মধ্যে অন্তত একটি সবুজ হওয়ার সম্ভাব্যতা কত?

সমাধান:
প্রথম থলিতে, 3 টি সবুজ বল, 2 টি লাল বল
দ্বিতীয় থলিতে, 2 টি সবুজ বল, 5 টি লাল বল

অন্তত একটি সবুজ হওয়ার সম্ভাব্যতা = 1 - দুইটি বলই লাল
প্রথম থলি থেকে লাল বলের সম্ভাবনা = 2/5
দ্বিতীয় থলি থেকে লাল বলের সম্ভাবনা = 5/7

দুইটি লাল হওয়ার সম্ভাব্যতা = (2/5) × (5/7) = 2/7
অন্তত একটি সবুজ হওয়ার সম্ভাব্যতা = 1 - (2/7) = 5/7

∴ সঠিক উত্তর: ক) 5/7

২০০.
PQR ত্রিভূজের ∠Q =90° এবং ∠P = 2∠R হলে নিচের কোনটি সঠিক?
  1. PR = 2QR
  2. PQ = 2PR
  3. PR = 2PQ
  4. QR = 2PQ
ব্যাখ্যা

প্রশ্ন: PQR ত্রিভূজের ∠Q =90° এবং ∠P = 2∠R হলে নিচের কোনটি সঠিক?

সমাধান:
এখানে,
∠Q = 90°
∠P = 2∠R

আমরা জানি,
∠P + ∠Q + ∠R = 180°
∠Q = 90°
⇒ ∠P + ∠R = 90°

∠P = 2∠R
⇒ 2∠R + ∠R = 90°
⇒ ∠R = 30°,

∴ ∠P = 60°
সমকোণ ত্রিভুজে,
PR = অতিভুজ
QR = বিপরীত ∠P,
PQ = বিপরীত ∠R

sin P = QR / PR
→ sin 60° = √3/2
→ QR = (√3/2) PR

sin R = PQ/PR
→ sin 30° = 1/2
→ PQ = (1/2) PR
সুতরাং, PR = 2 PQ