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

৪৯তম বিসিএস ⎯ তথ্য ও যোগাযোগ প্রযুক্তি [২৮১]

পরীক্ষা৪৯তম বিসিএস ⎯ তথ্য ও যোগাযোগ প্রযুক্তি [২৮১]তারিখতারিখ অনির্ধারিতসময়01 hr 30 mins
মোট প্রশ্ন১৮৯
সিলেবাস
Full Model Test - 5
ঘনত্ব
উত্তর
উত্তরিতবর্তমানপুনরায় দেখুনঅসম্পূর্ণ

৪৯তম বিসিএস ⎯ তথ্য ও যোগাযোগ প্রযুক্তি [২৮১]

৪৯তম বিসিএস ⎯ তথ্য ও যোগাযোগ প্রযুক্তি [২৮১] · তারিখ অনির্ধারিত · ১৮৯ প্রশ্ন

.
Which of the following is a word embedding technique?
  1. Word2Vec
  2. Bag of Words (BoW)
  3. TF-IDF
  4. One-Hot Encoding
সঠিক উত্তর:
Word2Vec
উত্তর
সঠিক উত্তর:
Word2Vec
ব্যাখ্যা

Word embedding is a technique in Natural Language Processing (NLP) that maps words into dense vectors of real numbers in a continuous vector space.
The idea is to capture semantic meaning: words with similar meaning appear close in the embedding space.

\Word2Vec (by Tomas Mikolov et al., 2013 at Google) is a neural network–based embedding model that learns vector representations of words using two main architectures:
•Continuous Bag of Words (CBOW) – predicts a word from its context.
•Skip-Gram – predicts context words from a given word.

Thus, Word2Vec is a true word embedding technique, while the others are not.

Example:
Word2Vec might map:
•king → [0.52, 0.11, -0.45, …]
•queen → [0.50, 0.09, -0.47, …]
These vectors are close in space, capturing their semantic relation.
Bag of Words:
"king queen" → [1,1,0,0,0,…] (just counts words, no meaning).

Source: Artificial Intelligence: A Modern Approach by Russell & Norvig

.
Which of the following techniques is used to remove stop words in text processing?
  1. Lemmatization
  2. Tokenization
  3. Stop word removal
  4. Stemming
সঠিক উত্তর:
Stop word removal
উত্তর
সঠিক উত্তর:
Stop word removal
ব্যাখ্যা

Stop word removal is the process of eliminating common words that do not carry significant meaning, such as “is,” “and,” “the,” from text. These words are usually removed during preprocessing to reduce the dimensionality of text data.

Example:
In the sentence "The cat sat on the mat," the stop words “the” and “on” might be removed.

Source: Speech and Language Processing by Daniel Jurafsky and James H. Martin,

.
Which of the following is an example of a supervised learning algorithm?
  1. K-means clustering
  2. Logistic Regression
  3. Principal Component Analysis (PCA)
  4. DBSCAN
সঠিক উত্তর:
Logistic Regression
উত্তর
সঠিক উত্তর:
Logistic Regression
ব্যাখ্যা

Supervised learning involves training a model on labeled data, where both the input features and the correct output (label) are provided. The model learns to map inputs to the correct output.
Logistic Regression (Supervised Learning):
Logistic Regression is a supervised learning algorithm that is used for classification tasks. It predicts the probability of a binary outcome (e.g., yes/no, 1/0) based on input features.
It requires labeled data to train the model, which makes it a supervised algorithm.

Example:
Predicting whether an email is spam or not based on certain features like word frequency.

Sources: Pattern Recognition and Machine Learning by Christopher M. Bishop

.
In ridge regression, what is the purpose of adding a penalty term to the loss function?
  1. To improve the model's prediction accuracy
  2. To reduce the model's complexity by adding regularization
  3. To make the coefficients of the model as large as possible
  4. To eliminate any errors in the data
সঠিক উত্তর:
To reduce the model's complexity by adding regularization
উত্তর
সঠিক উত্তর:
To reduce the model's complexity by adding regularization
ব্যাখ্যা

Ridge regression (also called L2 regularization) adds a penalty term to the loss function to constrain the size of the model's coefficients. This regularization helps prevent overfitting by discouraging overly complex models that might fit the noise in the training data.

Example:
In ridge regression, the cost function is modified to:


Source: Machine Learning: A Probabilistic Perspective by Kevin P. Murphy

.
What is the relationship between the speed (v), frequency (f), and wavelength (λ) of a wave?
  1. v=f/λ
  2. v=λ/f
  3. v=f+λ
  4. v=fλ
সঠিক উত্তর:
v=fλ
উত্তর
সঠিক উত্তর:
v=fλ
ব্যাখ্যা

Wave Speed (v): The distance a wave travels per unit time.
Frequency (f): The number of oscillations (cycles) of the wave per second, measured in Hertz (Hz).
Wavelength (λ): The distance between two consecutive crests (or troughs) of the wave, measured in meters (m).
The three are related by the wave equation:
v=f×λ

This means the speed of a wave equals its frequency multiplied by its wavelength.
If the frequency increases while the speed is constant (like in light waves in a medium), the wavelength decreases, and vice versa.

Source: Physics for Scientists and Engineers by Raymond A. Serway and John W. Jewett

.
If the power consumed by a device is 1000 W, how much energy is consumed in 2 minutes?
  1. 5000 J
  2. 3000 J
  3. 120000 J
  4. 150000 J
সঠিক উত্তর:
120000 J
উত্তর
সঠিক উত্তর:
120000 J
ব্যাখ্যা

To find the energy consumed, we use the formula that,

E=P×t

Given that,
Energy, P=1000 W
Time,t=2 minutes =2×60= 120 seconds.

Now get,
E=1000 W ×120 s =120000 J

∴ A 1000 W light bulb uses 120000 J of energy if it runs for 2 minutes.

Sources: Fundamentals of Physics by Halliday, Resnick & Walker

.
In the context of software engineering, which of the following best defines 'software process model' ?
  1. A set of steps to compile software
  2. A framework that defines the stages of software development and their interactions
  3. A method for managing software requirements
  4. A tool used for debugging software
সঠিক উত্তর:
A framework that defines the stages of software development and their interactions
উত্তর
সঠিক উত্তর:
A framework that defines the stages of software development and their interactions
ব্যাখ্যা

A software process model is a structured framework used to describe and define the phases and activities involved in software development. It outlines how software should be planned, developed, tested, and deployed. Common models include Waterfall, Agile, and Spiral.

Example:
In the Waterfall model, the development process is sequential, starting from requirements gathering, then moving through design, implementation, testing, and maintenance.

Source: Software Engineering: A Practitioner's Approach by Roger S. Pressman

.
Which of the following is an advantage of using Design Patterns in software engineering?
  1. They reduce the complexity of the system by removing all the features.
  2. They provide reusable solutions to common design problems.
  3. They focus only on the implementation details of the system.
  4. They eliminate the need for testing.
সঠিক উত্তর:
They provide reusable solutions to common design problems.
উত্তর
সঠিক উত্তর:
They provide reusable solutions to common design problems.
ব্যাখ্যা

Design patterns are general, reusable solutions to common software design problems. By applying design patterns, developers can avoid reinventing the wheel and solve problems efficiently using established, proven approaches.

Example:
A Singleton pattern ensures that a class has only one instance, useful for managing global resources like a database connection.

Source: Software Engineering: A Practitioner's Approach by Roger S. Pressman

.
In the context of software design, which of the following best defines 'Cohesion' ?
  1. The degree to which an object depends on other objects for its functionality.
  2. The extent to which a system’s components can be replaced with minimal disruption.
  3. The degree to which related functions are grouped together within a single class.
  4. The measure of a system’s ability to handle increasing workload without failure.
সঠিক উত্তর:
The degree to which related functions are grouped together within a single class.
উত্তর
সঠিক উত্তর:
The degree to which related functions are grouped together within a single class.
ব্যাখ্যা

Cohesion refers to the degree to which the responsibilities of a class or module are related. High cohesion means that the class is focused on a single responsibility, making it easier to maintain and modify.

Example:
A Customer class that handles all aspects of customer management (e.g., name, address, orders) is highly cohesive because all its methods and attributes are related to the Customer concept.

Source: Software Engineering: A Practitioner's Approach by Roger S. Pressman

১০.
What is the primary purpose of Unit Testing in software engineering?
  1. To ensure that individual components work correctly and meet their specified behavior.
  2. To verify that the system meets the user's needs and requirements.
  3. To ensure that the software is scalable and can handle a large number of users.
  4. To measure the software's performance under load.
সঠিক উত্তর:
To ensure that individual components work correctly and meet their specified behavior.
উত্তর
সঠিক উত্তর:
To ensure that individual components work correctly and meet their specified behavior.
ব্যাখ্যা

Unit testing involves testing individual components or units of a software system to ensure that they work as expected. It focuses on verifying the functionality of the smallest testable parts of the system, typically functions or methods.

Example:
Testing a method that calculates the total price in a shopping cart system to ensure it correctly adds up the prices of selected items.

Source: Software Engineering: A Practitioner's Approach by Roger S. Pressman

১১.
Refers specifically to defects in software code, not general project delays. What is it called?
  1. Risk
  2. Bug
  3. Issue
  4. Milestone
সঠিক উত্তর:
Bug
উত্তর
সঠিক উত্তর:
Bug
ব্যাখ্যা

A bug refers to a defect or flaw in the software code that causes it to behave unexpectedly or incorrectly. It is a common term used in software development and indicates an error or fault in the system that needs to be fixed.

Example:
Bug: The login button in the application doesn't work when clicked.
Issue: A delay in the project schedule due to resource unavailability.
Risk: The possibility of security vulnerabilities being found during the final testing phase.

Source: Software Engineering: A Practitioner's Approach by Roger S. Pressman

১২.
Which of the following UML diagrams is used to model the static structure of a system, showing the system's classes and their relationships?
  1. Sequence Diagram
  2. Use Case Diagram
  3. Class Diagram
  4. State Diagram
সঠিক উত্তর:
Class Diagram
উত্তর
সঠিক উত্তর:
Class Diagram
ব্যাখ্যা

A Class Diagram is a static UML diagram used to represent the structure of a system by modeling its classes, attributes, operations, and the relationships between the classes. It is useful for showing the system's organization.

Example:
In an e-commerce system, a Class Diagram might include classes like Product, Customer, and Order, with relationships showing how these classes interact.

Source: Software Engineering by Ian Sommerville

১৩.
What is the core principle behind the Service-Oriented Architecture (SOA)?
  1. Decomposing a system into loosely coupled, independent services that communicate over a network
  2. Designing a system based on a central database to avoid data duplication
  3. Using object-oriented design principles to develop reusable components
  4. Integrating multiple systems into a monolithic architecture for centralized control
সঠিক উত্তর:
Decomposing a system into loosely coupled, independent services that communicate over a network
উত্তর
সঠিক উত্তর:
Decomposing a system into loosely coupled, independent services that communicate over a network
ব্যাখ্যা

SOA involves designing systems as a collection of independent, loosely coupled services that communicate over a network (often via web services). This design improves system scalability, flexibility, and ease of integration with other services.

Example:
An online shopping platform might use SOA to create separate services for inventory management, payment processing, and user management, each of which can be developed, deployed, and scaled independently.

Source: Software Engineering by Ian Sommerville

১৪.
What is the purpose of Basis Path Testing in White-box Testing?
  1. To test the system’s behavior from the user’s perspective
  2. To validate that the system meets performance benchmarks
  3. To design test cases based on the program’s control flow and logic paths
  4. To test the interaction between different components or modules of the system
সঠিক উত্তর:
To design test cases based on the program’s control flow and logic paths
উত্তর
সঠিক উত্তর:
To design test cases based on the program’s control flow and logic paths
ব্যাখ্যা

Basis Path Testing focuses on white-box testing, where test cases are created based on the control flow of the program. It aims to ensure that all logical paths through the program are tested, covering every possible condition and decision.

Example:
In a function that calculates the area of a circle, Basis Path Testing would ensure that all branches and decision paths are tested, such as validating if the radius is positive before performing calculations.

Source: Software Engineering: A Practitioner's Approach by Roger S. Pressman

১৫.
What is the purpose of Use Case Analysis in the early phases of software development?
  1. To describe the hardware requirements for the software system
  2. To identify and document the system’s functional requirements from the user's perspective
  3. To design the system architecture and infrastructure
  4. To determine the performance and scalability of the software system
সঠিক উত্তর:
To identify and document the system’s functional requirements from the user's perspective
উত্তর
সঠিক উত্তর:
To identify and document the system’s functional requirements from the user's perspective
ব্যাখ্যা

Use Case Analysis is a technique used in the requirements analysis phase to capture the system’s functional requirements based on the interactions between users (actors) and the system. It helps define what the system must do and how users will interact with it.

Example:
For an online banking system, use cases might include logging in, transferring money, and viewing balance, each describing the interaction between the user and the system.

Source: Software Engineering: A Practitioner's Approach by Roger S. Pressman

১৬.
In Software Testing, what does Boundary Value Analysis focus on?
  1. Testing the system's response to inputs that are on the edge of valid and invalid input ranges.
  2. Testing all possible inputs to ensure full coverage of the input space.
  3. Validating the system’s performance under heavy load.
  4. Verifying the system’s ability to handle multiple simultaneous users.
সঠিক উত্তর:
Testing the system's response to inputs that are on the edge of valid and invalid input ranges.
উত্তর
সঠিক উত্তর:
Testing the system's response to inputs that are on the edge of valid and invalid input ranges.
ব্যাখ্যা

Boundary Value Analysis (BVA) is a technique used in black-box testing. It focuses on testing the boundaries of input values, as errors often occur at the edges of input ranges (e.g., just below or above the minimum/maximum limits).

Example:
For a form input that accepts ages between 18 and 65, BVA would test the values 17, 18, 65, and 66 to ensure the system handles boundary conditions correctly.

Source: Software Engineering: A Practitioner's Approach by Roger S. Pressman

১৭.
What does the Waterfall Model primarily emphasize in software development?
  1. A strict linear sequence of phases where each phase is completed before moving to the next.
  2. Continuous collaboration between developers and stakeholders throughout the development process.
  3. Development of software in small increments with regular user feedback.
  4. Simultaneous development of the system’s design, coding, and testing phases.
সঠিক উত্তর:
A strict linear sequence of phases where each phase is completed before moving to the next.
উত্তর
সঠিক উত্তর:
A strict linear sequence of phases where each phase is completed before moving to the next.
ব্যাখ্যা

The Waterfall Model follows a linear and sequential approach, where each phase (e.g., requirements gathering, design, implementation, testing, deployment) is completed before the next one begins. It is less flexible than Agile but suitable for projects with well-defined requirements.

Example:
In a Waterfall project, the team first completes the requirements gathering phase before moving on to design, then implementation, followed by testing, with no overlap between phases.

Source: Software Engineering: A Practitioner's Approach by Roger S. Pressman

১৮.
Which of the following is an example of a new AI technique that utilizes data to improve decision-making and predictions?
  1. Rule-based systems
  2. Expert systems
  3. Machine learning algorithms
  4. Genetic algorithms
সঠিক উত্তর:
Machine learning algorithms
উত্তর
সঠিক উত্তর:
Machine learning algorithms
ব্যাখ্যা

Machine Learning (ML) is a new AI technique that allows systems to learn from data and improve their performance over time without being explicitly programmed. ML algorithms adapt to patterns in the data to make decisions or predictions.

Example:
In email spam detection, an ML model learns to classify emails as spam or not based on labeled training data and improves over time as more data is processed.

Source: Artificial Intelligence: A Modern Approach by Stuart Russell and Peter Norvig

১৯.
Which of the following is a common method of knowledge representation in AI that uses symbols to represent concepts and relationships?
  1. Neural networks
  2. Logic-based representation
  3. Genetic algorithms
  4. Reinforcement learning
সঠিক উত্তর:
Logic-based representation
উত্তর
সঠিক উত্তর:
Logic-based representation
ব্যাখ্যা

Logic-based representation involves using formal logic (such as propositional logic or first-order logic) to represent knowledge. It uses symbols to represent objects and relationships and employs logical rules to infer new facts from known information.

Example:
In a robot navigation system, first-order logic might represent a rule such as "if a robot is at a location A, and location B is adjacent to A, then the robot can move to B."

Source: Artificial Intelligence: A Modern Approach by Stuart Russell and Peter Norvig

২০.
Which of the following is the oldest AI language?
  1. LISP
  2. PROLOG
  3. Python
  4. Java
সঠিক উত্তর:
LISP
উত্তর
সঠিক উত্তর:
LISP
ব্যাখ্যা

LISP (LISt Processing) is considered the oldest AI programming language. It was developed in the late 1950s by John McCarthy specifically for artificial intelligence research. LISP has been widely used in AI for tasks like symbolic reasoning, natural language processing, and building expert systems due to its flexibility, support for recursive functions, and powerful data manipulation capabilities.

Source: Artificial Intelligence: A Modern Approach by Stuart Russell and Peter Norvig

২১.
Which of the following is the main component of AI?
  1. Machine Learning
  2. Data Processing
  3. Natural Language Processing
  4. Expert Systems
সঠিক উত্তর:
Machine Learning
উত্তর
সঠিক উত্তর:
Machine Learning
ব্যাখ্যা

AI (Artificial Intelligence) encompasses various components that contribute to intelligent behavior. While there are several critical areas within AI, Machine Learning is widely regarded as one of the core components of AI, responsible for enabling systems to learn from data and improve their performance over time without being explicitly programmed.

Key Components of AI:
Machine Learning (ML):
• The core of modern AI systems, where algorithms learn patterns from data and make decisions or predictions.
• Examples: Supervised learning, unsupervised learning, reinforcement learning.
Natural Language Processing (NLP):
• Enables machines to understand, interpret, and generate human language, making communication with AI systems possible.
• Examples: Sentiment analysis, language translation, speech recognition.
Expert Systems:
• Simulates the decision-making ability of a human expert in a specific domain.
• Used in rule-based systems and knowledge-based systems for tasks like diagnosis, decision support, etc.
Data Processing:
• While important for AI systems to handle and process large amounts of data, data processing is typically a step within machine learning or other AI components rather than a standalone core component.

Source: Artificial Intelligence: A Modern Approach by Stuart Russell and Peter Norvig

২২.
What is the main advantage of Transformer models (such as BERT and GPT) over earlier sequence models like RNNs?
  1. They require less computational power and memory.
  2. They are better at capturing long-range dependencies in sequences.
  3. They perform faster for tasks like translation but are not as accurate.
  4. They do not require large datasets for training.
সঠিক উত্তর:
They are better at capturing long-range dependencies in sequences.
উত্তর
সঠিক উত্তর:
They are better at capturing long-range dependencies in sequences.
ব্যাখ্যা

Transformer models use self-attention mechanisms, which allow them to better capture long-range dependencies in sequences. Unlike RNNs and LSTMs, which process sequences sequentially, transformers process all tokens in a sequence simultaneously, making them more efficient and effective for tasks like language modeling and translation.

Example:
BERT and GPT are pre-trained transformer models that excel at tasks like question answering and text generation, thanks to their ability to capture complex relationships across large contexts.

Source: Artificial Intelligence: A Modern Approach by Stuart Russell and Peter Norvig

২৩.
What two different models does Word2Vec use?
  1. Skip-gram and Continuous Bag of Words (CBOW)
  2. Recurrent Neural Networks (RNN) and Long Short-Term Memory (LSTM)
  3. Convolutional Neural Networks (CNN) and Recurrent Neural Networks (RNN)
  4. Linear Regression and Logistic Regression
সঠিক উত্তর:
Skip-gram and Continuous Bag of Words (CBOW)
উত্তর
সঠিক উত্তর:
Skip-gram and Continuous Bag of Words (CBOW)
ব্যাখ্যা

Word2Vec is a popular word embedding model in natural language processing (NLP) that converts words into numerical vectors (embeddings) based on their context in a large corpus of text. Word2Vec uses two main models to learn these embeddings:

Skip-gram model:
In this model, the goal is to predict the context (surrounding words) given a target word.
For example, given the sentence "The cat sits on the mat," the word "cat" would be the target word, and the model would predict the context words like "the," "sits," "on," etc.

Continuous Bag of Words (CBOW) model:
In this model, the goal is to predict the target word given the context (surrounding words).
For example, given the words "the," "sits," and "on," the model would predict the target word "cat."

Both models are used for learning word representations based on context, and the choice between Skip-gram and CBOW depends on the task and the dataset.

Source: Artificial Intelligence: A Modern Approach by Stuart Russell and Peter Norvig

২৪.
Which of the following is a typical evaluation metric for a classification task in supervised learning?
  1. Mean Squared Error (MSE)
  2. R-squared
  3. Accuracy, Precision, Recall, F1-Score
  4. Root Mean Squared Error (RMSE)
সঠিক উত্তর:
Accuracy, Precision, Recall, F1-Score
উত্তর
সঠিক উত্তর:
Accuracy, Precision, Recall, F1-Score
ব্যাখ্যা

For a classification task, evaluation metrics like accuracy, precision, recall, and the F1-score are commonly used to assess the performance of the model. These metrics help in evaluating how well the model is distinguishing between the classes.

Example:
For a spam classification system, accuracy might measure the proportion of correctly classified emails, while precision and recall can help assess the model's ability to correctly classify spam emails.

Source: Pattern Recognition and Machine Learning by Christopher M. Bishop

২৫.
Which machine learning model is most suitable for predicting the likelihood of a customer making a purchase based on their browsing history?
  1. Support Vector Machine (SVM)
  2. Logistic Regression
  3. K-means Clustering
  4. Naive Bayes Classifier
সঠিক উত্তর:
Logistic Regression
উত্তর
সঠিক উত্তর:
Logistic Regression
ব্যাখ্যা

Logistic Regression is commonly used for binary classification tasks such as predicting the likelihood of a customer making a purchase. It predicts the probability that an event (in this case, a purchase) will occur, given the features (e.g., browsing history, product interest).

Example:
In an e-commerce system, logistic regression might be used to predict whether a customer is likely to purchase an item based on the pages they have visited.

Source: Pattern Recognition and Machine Learning by Christopher M. Bishop

২৬.
Which of the following methods is used to handle multicollinearity in multiple regression models?
  1. Feature selection
  2. Using the Lasso regression (L1 regularization)
  3. Standardizing the data
  4. Using the Ridge regression (L2 regularization)
সঠিক উত্তর:
Using the Ridge regression (L2 regularization)
উত্তর
সঠিক উত্তর:
Using the Ridge regression (L2 regularization)
ব্যাখ্যা

Ridge regression is used to handle multicollinearity by adding a penalty to the squared values of the coefficients. This regularization term helps to reduce the impact of multicollinearity, especially when independent variables are highly correlated.

Example:
In a real estate prediction model, if size and number of rooms are highly correlated, Ridge regression can reduce the coefficients of these features to avoid overfitting and improve the model’s generalization.

Source: Pattern Recognition and Machine Learning by Christopher M. Bishop

২৭.
Who is considered the "father of the computer" for his contributions to the design of the first automatic computing machine?
  1. Alan Turing
  2. Charles Babbage
  3. John von Neumann
  4. Blaise Pascal
সঠিক উত্তর:
Charles Babbage
উত্তর
সঠিক উত্তর:
Charles Babbage
ব্যাখ্যা

Charles Babbage is often referred to as the "father of the computer" for his conceptual design of the Analytical Engine, the first mechanical computer. His design included elements like an arithmetic logic unit (ALU), control flow via conditional branching, and memory, which form the core concepts of modern computers.

Example:
Babbage's Analytical Engine was a general-purpose computing device that could be programmed to perform various tasks, though it was never completed during his lifetime.

Source: The History of Computing by Carl D. Murray

২৮.
On what date was the Internet first introduced?
  1. 1975
  2. 1981
  3. 1969
  4. 1991
সঠিক উত্তর:
1969
উত্তর
সঠিক উত্তর:
1969
ব্যাখ্যা

The Internet originated from a project called ARPANET (Advanced Research Projects Agency Network) in the United States.
ARPANET was the first operational packet-switching network, and it connected four computers at universities in 1969: UCLA, Stanford, UC Santa Barbara, and the University of Utah.

This marked the beginning of the Internet, which later evolved into the global network we use today.

Source: Computer Networks by Andrew S. Tanenbaum

২৯.
Which of the following memory types is non-volatile and typically contains firmware or system boot instructions?
  1. RAM
  2. ROM
  3. Cache
  4. Registers
সঠিক উত্তর:
ROM
উত্তর
সঠিক উত্তর:
ROM
ব্যাখ্যা

ROM is non-volatile memory that retains its content even when the computer is turned off. It stores firmware, such as the BIOS (Basic Input/Output System), which contains essential boot instructions for starting the computer.

Example:
When you power on a PC, the CPU reads instructions from the BIOS in ROM to initialize hardware components and start the operating system.

Source: Computer Networks by Andrew S. Tanenbaum

৩০.
What type of memory is used to store the BIOS, which contains the startup instructions for a computer?
  1. RAM
  2. ROM
  3. Cache memory
  4. Hard disk
সঠিক উত্তর:
ROM
উত্তর
সঠিক উত্তর:
ROM
ব্যাখ্যা

ROM (Read-Only Memory) is non-volatile and is used to store permanent system instructions like the BIOS. The BIOS contains essential instructions to initialize hardware components and load the operating system during startup.

Example:
When a computer is powered on, the BIOS in ROM is read to start the system, initialize hardware, and load the operating system into RAM.

Source: Computer Organization and Architecture by William Stallings

৩১.
What is the decimal equivalent of the binary number 111101?
  1. 61
  2. 60
  3. 58
  4. 59
সঠিক উত্তর:
61
উত্তর
সঠিক উত্তর:
61
ব্যাখ্যা

To convert from binary to decimal, you multiply each digit of the binary number by 2n where n is the position of the digit, starting from 0 on the right.

For binary 111101:
(1 × 2^5) + (1 × 2^4) + (1 × 2^3) + (1 × 2^2) + (0 × 2^1) + (1 × 2^0)
=(1×32)+(1×16)+(1×8)+(1×4)+(0×2)+(1×1)
=32+16+8+4+0+1
=61

∴ The binary number 111101 is equal to 61 in decimal

Source: Computer Organization and Architecture by William Stallings

৩২.
Which of the following is the correct binary addition of 11101 and 11001?
  1. 110011
  2. 110001
  3. 110000
  4. 110110
সঠিক উত্তর:
110110
উত্তর
সঠিক উত্তর:
110110
ব্যাখ্যা

We will add the two binary numbers 11101 and 11001 step by step.
Now, let's add them from right to left:
1 + 1 = 10 (write down 0, carry over 1)
0 + 0 + 1 (carry) = 1 (write down 1)
1 + 0 = 1 (write down 1)
1 + 1 = 10 (write down 0, carry over 1)
1 + 1 + 1 (carry) = 11 (write down 1, carry over 1)
Now, after adding the leftmost column, we are left with a final carry of 1.
So, we write that 1 to the left of the result.

The binary sum of 11101 and 11001 is given bellow,

11101
+ 11001
---------
110110

The binary sum is 110110.

Source: Computer Organization and Architecture by William Stallings

৩৩.
Which of the following is not a valid binary operation?
  1. Binary addition
  2. Binary subtraction
  3. Binary multiplication
  4. Binary division by zero
সঠিক উত্তর:
Binary division by zero
উত্তর
সঠিক উত্তর:
Binary division by zero
ব্যাখ্যা

Division by zero is undefined in any number system, including binary. Therefore, binary division by zero is not a valid operation.

Example:
Attempting to divide any binary number by zero would result in an error or undefined behavior.

Source: Computer Organization and Architecture by William Stallings

৩৪.
Which of the following Boolean laws states that A+A′=1?
  1. Complement Law
  2. Identity Law
  3. Null Law
  4. Idempotent Law
সঠিক উত্তর:
Complement Law
উত্তর
সঠিক উত্তর:
Complement Law
ব্যাখ্যা

The Complement Law in Boolean algebra states that a variable ORed with its complement is always equal to 1. Mathematically, A+A′=1, where A′ is the complement of A.

Example:
If A = 1, then A+A′=1+0=1, and if A = 0, then A+A′=0+1=1.

Source: Digital Design by M. Morris Mano

৩৫.
In which of the following circuits is the Shift Register commonly used?
  1. Binary Addition
  2. Data storage and shifting in memory operations
  3. Comparison of binary numbers
  4. Multiplying two binary numbers
সঠিক উত্তর:
Data storage and shifting in memory operations
উত্তর
সঠিক উত্তর:
Data storage and shifting in memory operations
ব্যাখ্যা

A shift register is a sequential circuit used for data storage and shifting data in binary form. It can shift data left or right, allowing operations like data movement between registers or converting serial to parallel data and vice versa.

Example:
In a 4-bit shift register, the data can be shifted by one position per clock cycle. If the register holds the value 1101, shifting left by one position gives 1010.

Source: Digital Design and Computer Architecture by David Money Harris and Sarah L. Harris

৩৬.
Which of the following layers in the OSI model is responsible for end-to-end communication and error correction?
  1. Physical Layer
  2. Transport Layer
  3. Data Link Layer
  4. Application Layer
সঠিক উত্তর:
Transport Layer
উত্তর
সঠিক উত্তর:
Transport Layer
ব্যাখ্যা

The Transport Layer (Layer 4) in the OSI model is responsible for end-to-end communication. It ensures the reliable delivery of data between devices by implementing error detection, correction, and flow control.

Example:
TCP (Transmission Control Protocol) is a common protocol at the Transport Layer, which ensures data is delivered accurately and in order.

Source: Computer Networks (4th Ed.) by Andrew S. Tanenbaum

৩৭.
Which of the following protocols operates at the Application Layer of the OSI model?
  1. IP
  2. TCP
  3. HTTP
  4. Ethernet
সঠিক উত্তর:
HTTP
উত্তর
সঠিক উত্তর:
HTTP
ব্যাখ্যা

HTTP (Hypertext Transfer Protocol) operates at the Application Layer of the OSI model. It is used for transferring hypertext documents, such as web pages, between web clients and servers.

Example:
When you open a web browser and visit a website, HTTP is used to request and receive the webpage content from a web server.

Source: Computer Networks (4th Ed.) by Andrew S. Tanenbaum

৩৮.
Which of the following are the three main frame types used in the HDLC protocol?
  1. Information, Acknowledgement, Control
  2. Data, Command, Response
  3. Information, Supervisory, Unnumbered
  4. Data, Acknowledgement, Retransmission
সঠিক উত্তর:
Information, Supervisory, Unnumbered
উত্তর
সঠিক উত্তর:
Information, Supervisory, Unnumbered
ব্যাখ্যা

HDLC defines three types of frames:
i. Information frames (I-frames): Used to transfer data.
ii. Supervisory frames (S-frames): Used for control and error management.
iii. Unnumbered frames (U-frames): Used for link management and control purposes.

Example:
I-frames are used to carry data in communication, while S-frames handle acknowledgement and error control.

Source: Data and Computer Communications by William Stallings

৩৯.
Which of the following is an example of a Data Link Layer protocol used for error detection and flow control in point-to-point communication?
  1. TCP
  2. PPP
  3. IP
  4. HTTP
সঠিক উত্তর:
PPP
উত্তর
সঠিক উত্তর:
PPP
ব্যাখ্যা

PPP (Point-to-Point Protocol) is a Data Link Layer protocol used for point-to-point communication, especially in dial-up connections. It provides error detection, flow control, and authentication in communication between two devices.

Example:
PPP is commonly used in DSL (Digital Subscriber Line) connections and VPNs to transmit data between a user's computer and the internet.

Source: Computer Networking: A Top-Down Approach by James Kurose and Keith Ross

৪০.
In IEEE 802.3, what is the maximum theoretical data rate for Fast Ethernet?
  1. 10 Mbps
  2. 100 Mbps
  3. 1 Gbps
  4. 10 Gbps
সঠিক উত্তর:
100 Mbps
উত্তর
সঠিক উত্তর:
100 Mbps
ব্যাখ্যা

IEEE 802.3u defines Fast Ethernet, which supports data transfer speeds of 100 Mbps over Cat 5 cables using 100BASE-T. It was developed to offer faster speeds than the original 10BASE-T Ethernet.

Example:
Fast Ethernet is commonly used in office networks and data centers, where higher speeds than the original Ethernet (10 Mbps) are needed for efficient communication.

Source: Computer Networking: A Top-Down Approach by James Kurose and Keith Ross

৪১.
What is the primary function of a Hub in a network?
  1. To route data between different networks
  2. To filter and forward data to specific destinations
  3. To amplify and broadcast signals to all devices on a network
  4. To provide wireless connectivity to devices
সঠিক উত্তর:
To amplify and broadcast signals to all devices on a network
উত্তর
সঠিক উত্তর:
To amplify and broadcast signals to all devices on a network
ব্যাখ্যা

A hub is a basic network device used in star topology. It broadcasts incoming data signals to all connected devices, which can lead to network congestion, as all devices on the network receive the same data, regardless of the intended recipient.

Example:
In an office LAN, a hub connects multiple computers, but all computers receive the data, even if it's intended for only one device.

Source: Computer Networks (4th Ed.) by Andrew S. Tanenbaum.

৪২.
In the context of networking, fragmentation is required when:
  1. The packet size exceeds the maximum transmission unit (MTU) of the network
  2. The packet is too small
  3. The data is not encrypted
  4. The source address is incorrect
সঠিক উত্তর:
The packet size exceeds the maximum transmission unit (MTU) of the network
উত্তর
সঠিক উত্তর:
The packet size exceeds the maximum transmission unit (MTU) of the network
ব্যাখ্যা

Fragmentation occurs when the packet size exceeds the maximum transmission unit (MTU) of the network. The packet is then broken into smaller fragments for transmission.

Example:
In IPv4, if a packet is larger than the MTU of the network, it will be fragmented into smaller packets for efficient transmission.

Source: Computer Networks by Andrew S. Tanenbaum

৪৩.
What is the primary function of RARP (Reverse Address Resolution Protocol)?
  1. To map a MAC address to an IP address
  2. To map an IP address to a MAC address
  3. To assign an IP address to a device from its MAC address
  4. To resolve domain names to IP addresses
সঠিক উত্তর:
To assign an IP address to a device from its MAC address
উত্তর
সঠিক উত্তর:
To assign an IP address to a device from its MAC address
ব্যাখ্যা

RARP is used by devices (typically diskless workstations) to obtain their IP address from a network server, given their MAC address. RARP is the reverse of ARP (Address Resolution Protocol), which maps an IP address to a MAC address.

Example:
A computer with no disk uses RARP to find its IP address by sending a request to a RARP server with its MAC address.

Source: Computer Networks by Andrew S. Tanenbaum

৪৪.
Which of the following is a potential security risk in Mobile IP?
  1. Unauthorized access to the mobile device’s local network
  2. Spoofing of the mobile device's IP address by a malicious agent
  3. Encryption of mobile data packets
  4. Difficulty in maintaining session continuity
সঠিক উত্তর:
Spoofing of the mobile device's IP address by a malicious agent
উত্তর
সঠিক উত্তর:
Spoofing of the mobile device's IP address by a malicious agent
ব্যাখ্যা

In Mobile IP, a security risk involves the possibility of a malicious agent spoofing the IP address of the mobile device, which could lead to unauthorized access or data interception. To counter this, Mobile IP uses security mechanisms like the Authentication Header (AH) in its protocol.

Example:
An attacker may attempt to impersonate a mobile device by sending packets with its legitimate IP address, potentially disrupting communications or causing data leakage.

Source: Computer Networks by Andrew S. Tanenbaum

৪৫.
What is the main purpose of a digital signature in network security?
  1. To encrypt data
  2. To provide non-repudiation and verify the sender's identity
  3. To compress data
  4. To perform key exchange securely
সঠিক উত্তর:
To provide non-repudiation and verify the sender's identity
উত্তর
সঠিক উত্তর:
To provide non-repudiation and verify the sender's identity
ব্যাখ্যা

A digital signature is a cryptographic mechanism that ensures the authenticity of a message, verifies the sender's identity, and provides non-repudiation, meaning the sender cannot deny sending the message.

Example:
In email communication, digital signatures are used to prove that the message came from the claimed sender and has not been altered.

Source: Computer Networks by Andrew S. Tanenbaum

৪৬.
Which of the following is a primitive data type in most structured programming languages?
  1. Array
  2. String
  3. Integer
  4. Function
সঠিক উত্তর:
Integer
উত্তর
সঠিক উত্তর:
Integer
ব্যাখ্যা

Primitive data types are the most basic types provided by a programming language. Integer is a primitive data type that stores whole numbers. Common primitive types include integers, floats, characters, and booleans.

Example:
In C or Python, you can declare an integer using int x = 5; (C) or x = 5 (Python).

Source: Programming in C by Stephen G. Kochan

৪৭.
Which of the following is a correct example of type casting in C?
  1. int x = (float) 3.5;
  2. float x = (int) 3.5;
  3. float x = (char) 'a';
  4. int x = 3.5;
সঠিক উত্তর:
float x = (int) 3.5;
উত্তর
সঠিক উত্তর:
float x = (int) 3.5;
ব্যাখ্যা

In C, type casting allows you to convert one data type to another. (int) 3.5 casts the float value 3.5 to an int, resulting in 3. Similarly, (float) would convert an int to float.

Example:
Type casting is used when you want to convert between data types, such as converting from int to float or vice versa.

Source: C Programming Language by Brian W. Kernighan & Dennis M. Ritchie

৪৮.
Which of the following correctly defines a structure in C?
  1. struct employee { int id; char name[20]; };
  2. struct employee { int id; char[20] name; };
  3. struct employee { int id, name[20]; };
  4. struct employee { int id, name:20; };
সঠিক উত্তর:
struct employee { int id; char name[20]; };
উত্তর
সঠিক উত্তর:
struct employee { int id; char name[20]; };
ব্যাখ্যা

A structure in C is a user-defined data type that groups different data types into a single unit. The correct syntax to define a structure in C is to use the keyword struct, followed by the structure name, and then the member variables enclosed in curly braces {}.

Example:

struct employee {
int id;
char name[20];
};

Here, the structure employee has two members: id (an integer) and name (a character array of 20 elements).

Source: C Programming Language by Brian W. Kernighan & Dennis M. Ritchie

৪৯.
Which of the following functions can handle a variable-length argument list in C?
  1. scanf
  2. printf
  3. fscanf
  4. getchar
সঠিক উত্তর:
printf
উত্তর
সঠিক উত্তর:
printf
ব্যাখ্যা

In C, functions like printf and scanf can handle a variable-length argument list, allowing you to pass a different number of arguments. The standard library functions use special macros such as va_start, va_arg, and va_end to handle this.

Example:

Here, printNumbers takes a variable number of integer arguments.

Source: C Programming Language by Brian W. Kernighan & Dennis M. Ritchie

৫০.
Which of the following statements about linking in C is correct?
  1. Linking combines object files into executable files.
  2. Linking checks for syntax errors in the code.
  3. Linking is performed after code compilation.
  4. Both A and C are correct.
সঠিক উত্তর:
Both A and C are correct.
উত্তর
সঠিক উত্তর:
Both A and C are correct.
ব্যাখ্যা

Linking is the process of combining one or more object files generated by the compiler into an executable file. It resolves references to external variables and functions, and ensures that the program can run correctly by linking different modules together.

Example:

gcc main.c utils.c -o program
In this example, the gcc command links main.c and utils.c into a single executable program.

Source: The C Programming Language by Brian W. Kernighan & Dennis M. Ritchie

৫১.
In the Entity-Relationship (ER) model, what is an entity?
  1. A table that stores data.
  2. A real-world object or concept that can have data stored about it.
  3. A set of attributes.
  4. A relationship between two tables.
সঠিক উত্তর:
A real-world object or concept that can have data stored about it.
উত্তর
সঠিক উত্তর:
A real-world object or concept that can have data stored about it.
ব্যাখ্যা

An entity in the ER model represents a real-world object or concept that has a distinct existence. Each entity can have attributes that describe its properties, and relationships can be defined between entities.

Example:
In a university database, an entity could be a student, and attributes for the student might include name, student ID, and date of birth.

Source: Database Management Systems by Raghu Ramakrishnan

৫২.
What is a weak entity in the Entity-Relationship (ER) model?
  1. An entity that cannot exist without another entity.
  2. An entity that is used to store extra attributes.
  3. An entity that does not have a primary key.
  4. An entity that is related to itself.
সঠিক উত্তর:
An entity that cannot exist without another entity.
উত্তর
সঠিক উত্তর:
An entity that cannot exist without another entity.
ব্যাখ্যা

A weak entity is an entity that depends on another entity (known as the strong entity) for its existence. It does not have a unique identifier on its own, and its primary key is derived from the key of the associated strong entity.

Example:
A dependent entity (such as a child in a family) could be a weak entity that depends on a parent (strong entity) for its identification.

Source: Database Management Systems by Raghu Ramakrishnan

৫৩.
What does the UNION operation do in relational algebra?
  1. Combines two relations with the same schema and eliminates duplicates.
  2. Combines two relations with different schemas.
  3. Finds common elements between two relations.
  4. Filters rows based on a condition.
সঠিক উত্তর:
Combines two relations with the same schema and eliminates duplicates.
উত্তর
সঠিক উত্তর:
Combines two relations with the same schema and eliminates duplicates.
ব্যাখ্যা

The UNION operation (∪) in relational algebra combines the results of two relations, but only if they have the same schema (same set of columns). It eliminates duplicate rows, ensuring that each tuple appears only once.

Example:
Employee ∪ Manager
This operation combines the Employee and Manager relations, returning all distinct rows from both.

Source: Database Management Systems by Raghu Ramakrishnan

৫৪.
Which of the following SQL statements is used to delete a row from a table?
  1. REMOVE FROM
  2. DELETE
  3. DROP
  4. CLEAR
সঠিক উত্তর:
DELETE
উত্তর
সঠিক উত্তর:
DELETE
ব্যাখ্যা

The DELETE statement is used to remove one or more rows from a table based on a condition specified in the WHERE clause.

Example:
DELETE FROM Employees WHERE EmployeeID = 10;

This query deletes the row where the EmployeeID is 10.

Source: SQL: The Complete Reference by James R. Groff and Paul N. Weinberg

৫৫.
Which of the following is true about heap file organization in a database system?
  1. Records are stored in sorted order based on a key.
  2. Records are stored in the order in which they are inserted.
  3. Searching for a record is very efficient.
  4. It uses a hash function to distribute records across multiple pages.
সঠিক উত্তর:
Records are stored in the order in which they are inserted.
উত্তর
সঠিক উত্তর:
Records are stored in the order in which they are inserted.
ব্যাখ্যা

Heap file organization is the simplest file organization. In this structure, records are stored in the order they are inserted, and there is no sorting or indexing involved. This can make searching inefficient since a full table scan is often required to find a record.

Example:
A heap file may store records in a database without any specific order. If we have a file storing Employee data, new employee records are simply appended at the end of the file.

Source: Database Management Systems by Raghu Ramakrishnan

৫৬.
Which of the following file access methods is most suitable for random access to records in a database?
  1. Sequential access
  2. Direct access
  3. Indexed access
  4. Hashed access
সঠিক উত্তর:
Direct access
উত্তর
সঠিক উত্তর:
Direct access
ব্যাখ্যা

Direct access allows records to be accessed randomly based on their address in the storage medium, making it highly suitable for scenarios where you need to access specific records directly. Hashed access can also provide direct access based on a hash function, but direct access is the general term.

Example:
Direct access is commonly used in hashing and indexed file organizations. For example, when accessing a specific employee record using their EmployeeID, the system can directly access the corresponding location in the file.

Source: Database Management Systems by Raghu Ramakrishnan

৫৭.
What is a clustered index in a database system?
  1. A clustered index stores data rows in a random order.
  2. A clustered index determines the physical order of the data rows in the table.
  3. A clustered index can be created on any column, regardless of its uniqueness.
  4. A clustered index is a type of secondary index.
সঠিক উত্তর:
A clustered index determines the physical order of the data rows in the table.
উত্তর
সঠিক উত্তর:
A clustered index determines the physical order of the data rows in the table.
ব্যাখ্যা

A clustered index dictates the physical order of data rows in the table. The rows are stored in the same order as the index. Each table can have only one clustered index, usually created on the primary key.

Example:
In a table with a clustered index on the EmployeeID, the rows in the table are physically sorted by EmployeeID, making range queries more efficient for that column.

Source: Database Management Systems by Raghu Ramakrishnan

৫৮.
Which of the following is a type of swapping used in memory management?
  1. Internal swapping
  2. External swapping
  3. Continuous swapping
  4. Global swapping
সঠিক উত্তর:
External swapping
উত্তর
সঠিক উত্তর:
External swapping
ব্যাখ্যা

External swapping refers to moving processes in and out of external memory (such as disk storage) when the main memory (RAM) is full. This allows the system to continue running more processes than would be possible if only the available RAM were used. This is the typical method of swapping used in modern operating systems.

Example:
When an operating system runs out of RAM, it may swap out some of the processes to the disk (external storage) to ensure that new processes can continue running.

Source: Operating System Concepts by Abraham Silberschatz, Peter Baer Galvin, and Greg Gagne

৫৯.
What information is typically stored in a page table entry?
  1. The size of the page.
  2. The physical address of the corresponding page frame.
  3. The name of the process that owns the page.
  4. The permissions for accessing the page (e.g., read/write).
সঠিক উত্তর:
The physical address of the corresponding page frame.
উত্তর
সঠিক উত্তর:
The physical address of the corresponding page frame.
ব্যাখ্যা

Each page table entry typically contains the physical address of the page frame in memory where the page is stored. Additionally, the page table entry may include other information such as access permissions (read, write, etc.), the validity of the page (whether it's in memory or not), and other control bits.

Example:
If the page table entry for a virtual address maps to physical address 0x5000, the system knows that the page for that virtual address is located at physical memory 0x5000.

Source: Operating System Concepts by Abraham Silberschatz, Peter Baer Galvin, and Greg Gagne

৬০.
What is the time complexity of deadlock detection using a resource allocation graph in a system with P processes and R resources?
  1. O(P + R)
  2. O(P * R)
  3. O(P2 + R2)
  4. O(P + R2)
সঠিক উত্তর:
O(P * R)
উত্তর
সঠিক উত্তর:
O(P * R)
ব্যাখ্যা

The deadlock detection algorithm using a resource allocation graph requires examining all processes and resources to detect cycles. The time complexity depends on the number of processes (P) and resources (R) in the system, leading to a complexity of O(P * R).

Example:
If a system has 100 processes and 10 resources, the detection algorithm would examine a graph with 100 processes and 10 resources, resulting in a time complexity of O(100 * 10) = O(1000).

Source: Operating System Concepts by Abraham Silberschatz, Peter Baer Galvin, and Greg Gagne

৬১.
Which of the following actions prevents the circular wait condition, a necessary condition for deadlock?
  1. Ensure resources are requested in a specific order.
  2. Allow processes to hold resources while waiting.
  3. Grant resources based on process priority.
  4. Use a single process at a time for each resource.
সঠিক উত্তর:
Ensure resources are requested in a specific order.
উত্তর
সঠিক উত্তর:
Ensure resources are requested in a specific order.
ব্যাখ্যা

Circular wait can be prevented by ensuring that processes request resources in a specific, predefined order. This means that if processes are requesting multiple resources, they must do so in a specific sequence. This eliminates the possibility of a cycle (circular wait) in the resource allocation graph, which would otherwise lead to deadlock.

Example:
If processes must always request resources in the order R1, R2, R3, it is impossible for a cycle to form, as no process can hold one resource while waiting for another that comes earlier in the request order.

Source: Operating System Concepts by Abraham Silberschatz, Peter Baer Galvin, and Greg Gagne

৬২.
Which of the following is a method of file organization?
  1. Linear file organization
  2. Indexed file organization
  3. Clustered file organization
  4. All of the above
সঠিক উত্তর:
All of the above
উত্তর
সঠিক উত্তর:
All of the above
ব্যাখ্যা

File organization refers to how files are structured on storage media. Common types include:
Linear file organization: Files are stored sequentially, one after the other.
Indexed file organization: An index is used to quickly locate records in a file.
Clustered file organization: Related files are stored together in clusters for faster access.

Example:
Indexed file organization allows for faster search operations by maintaining an index, whereas clustered file organization improves read performance for related files stored together.

Source: Operating System Concepts by Abraham Silberschatz, Peter Baer Galvin, and Greg Gagne

৬৩.
What is the fundamental property of matter that causes it to experience a force in an electric field?
  1. Mass
  2. Charge
  3. Momentum
  4. Velocity
সঠিক উত্তর:
Charge
উত্তর
সঠিক উত্তর:
Charge
ব্যাখ্যা

Charge is a fundamental property of matter that causes it to experience a force when placed in an electric field. It is the property that determines how particles interact electromagnetically. Charge comes in two types: positive and negative, and like charges repel while opposite charges attract.

Example:
An electron carries a negative charge, and a proton carries a positive charge. When placed in an electric field, both particles experience a force due to their charges.

Source: Fundamentals of Physics by David Halliday, Robert Resnick, and Jearl Walker

৬৪.
According to the superposition principle in Coulomb’s law, the net electrostatic force on a charge due to multiple other charges is:
  1. The sum of the forces due to each charge, with directions taken into account.
  2. The product of the forces exerted by each charge.
  3. The average of the forces exerted by each charge.
  4. The maximum of all the forces exerted by each charge.
সঠিক উত্তর:
The sum of the forces due to each charge, with directions taken into account.
উত্তর
সঠিক উত্তর:
The sum of the forces due to each charge, with directions taken into account.
ব্যাখ্যা

The superposition principle states that when multiple charges act on a test charge, the net force is the vector sum of the forces exerted by each charge. The direction of each force is important and must be taken into account.

Example:
If charge q1 exerts a force on charge q3 to the right, and charge q2 exerts a force to the left, the total force on charge q3 is the vector sum of both forces.

Source: Fundamentals of Physics by David Halliday, Robert Resnick, and Jearl Walker

৬৫.
What is the source of a magnetic field?
  1. Electric charge
  2. Magnetic charge
  3. Moving electric charge (current)
  4. Electromagnetic waves
সঠিক উত্তর:
Moving electric charge (current)
উত্তর
সঠিক উত্তর:
Moving electric charge (current)
ব্যাখ্যা

A magnetic field is created by moving electric charges or currents. When charges move, they generate a magnetic field that surrounds the current-carrying conductor. This is the basis for electromagnetism.

Example:
When an electric current flows through a wire, it creates a magnetic field around the wire. This is used in devices like electromagnets and motors.

Source: Fundamentals of Physics by David Halliday, Robert Resnick, and Jearl Walker

৬৬.
Calculate the uniform magnetic field that a solenoid with 100 turns per meter and a current of 2 A will produce inside.
  1. 8 × 105 T
  2. 8 × 10-5 T
  3. 4 × 10-5 T
  4. 4 × 105 T
সঠিক উত্তর:
8 × 10-5 T
উত্তর
সঠিক উত্তর:
8 × 10-5 T
ব্যাখ্যা

The magnetic field inside a solenoid is given by the formula:
B = μ₀nI

Where,
B is the magnetic field inside the solenoid (in tesla, T),
μ₀ is the permeability of free space,
n is the number of turns per unit length of the solenoid (in turns per meter),
I is the current passing through the solenoid (in amperes, A).

Given that,
Number of turns per meter, n = 100 turns/m,
Current, I = 2 A,
Permeability of free space, μ₀=4×10−7 T⋅m/A.

Now, substitute the given values into the formula:
B = 4 × 10−7 × 100 × 2
= 8 × 10-5
∴ B = 8×10-5 T

The uniform magnetic field produced by the solenoid is 8 × 10-5 T.

Source: Fundamentals of Physics by David Halliday, Robert Resnick, and Jearl Walker

৬৭.
According to Faraday's Law, if the magnetic field through a loop changes non-uniformly, the induced EMF:
  1. Is proportional to the rate of change of the magnetic field.
  2. Is constant regardless of the change.
  3. Is zero.
  4. Depends only on the total change in magnetic flux.
সঠিক উত্তর:
Is proportional to the rate of change of the magnetic field.
উত্তর
সঠিক উত্তর:
Is proportional to the rate of change of the magnetic field.
ব্যাখ্যা

According to Faraday’s Law, the induced EMF is proportional to the rate of change of the magnetic flux through the loop. If the magnetic field changes non-uniformly (i.e., its rate of change is not constant), the induced EMF will be proportional to how quickly the magnetic flux is changing, and it depends on how fast the magnetic field is varying over time.

Example:
If the magnetic field is increasing at an increasing rate, the induced EMF will be larger than if the field were changing at a constant rate.

Source: Fundamentals of Physics by David Halliday, Robert Resnick, and Jearl Walker

৬৮.
A mass-spring system exhibits simple harmonic motion (SHM). The restoring force acting on the mass is proportional to:
  1. The velocity of the mass.
  2. The displacement of the mass from equilibrium.
  3. The square of the displacement.
  4. The square of the velocity.
সঠিক উত্তর:
The displacement of the mass from equilibrium.
উত্তর
সঠিক উত্তর:
The displacement of the mass from equilibrium.
ব্যাখ্যা

In simple harmonic motion (SHM), the restoring force is proportional to the displacement from the equilibrium position and acts in the opposite direction. This is described by Hooke's Law:
F=−kx
where k is the spring constant and x is the displacement from equilibrium.

Example:
In a mass-spring system, the spring stretches or compresses in response to the mass's displacement, and the restoring force tries to bring the mass back to equilibrium.

Source: Fundamentals of Physics by David Halliday, Robert Resnick, and Jearl Walker

৬৯.
In an electrical circuit, what does voltage represent?
  1. The rate of change of current.
  2. The difference in electrical potential between two points.
  3. The amount of charge flowing through the circuit.
  4. The resistance to the flow of charge.
সঠিক উত্তর:
The difference in electrical potential between two points.
উত্তর
সঠিক উত্তর:
The difference in electrical potential between two points.
ব্যাখ্যা

Voltage (also called potential difference) is the work required to move a unit charge between two points in a circuit. It is measured in volts (V). Voltage drives current through a conductor, and it is the energy per unit charge.

Example:
If there is a potential difference of 12 V across a light bulb, 12 joules of energy are used to move one coulomb of charge through the bulb.

Source: Fundamentals of Electric Circuits by Alexander and Sadiku

৭০.
The energy E delivered by an electrical element over time t is given by:
  1. E=P×t
  2. E=V×I×t
  3. E=I2×R×t
  4. All of the above
সঠিক উত্তর:
All of the above
উত্তর
সঠিক উত্তর:
All of the above
ব্যাখ্যা

The energy delivered over time is the product of power and time:
E=P×t: If power is known.
E=V×I×t: If voltage and current are known.
E=I2×R×t: If current and resistance are known.

Example:
If a light bulb consumes 60 W of power for 2 hours, the energy consumed is E=60W×2h=120Wh.

Source: Fundamentals of Electric Circuits by Alexander and Sadiku

৭১.
If the resistance of a circuit is 10Ω and the current is 2A, what is the voltage across the resistor?
  1. 5V
  2. 10V
  3. 15V
  4. 20V
সঠিক উত্তর:
20V
উত্তর
সঠিক উত্তর:
20V
ব্যাখ্যা

According to Ohm’s Law, the voltage V across a resistor is the product of the current I and the resistance R;
∴ V = I×R
Now, substitute the given values into the formula:
V = 2×10
= 20
∴ V = 20V

So, the current in the circuit is 2A and the resistance is 10Ω, the voltage is calculated as 20V.

Source: Fundamentals of Electric Circuits by Alexander and Sadiku

৭২.
The process of source transformation in circuit analysis allows us to replace:
  1. A resistor with a current source.
  2. A voltage source with a voltage source.
  3. A current source with a resistor.
  4. A voltage source in series with a resistor with a current source in parallel with a resistor.
সঠিক উত্তর:
A voltage source in series with a resistor with a current source in parallel with a resistor.
উত্তর
সঠিক উত্তর:
A voltage source in series with a resistor with a current source in parallel with a resistor.
ব্যাখ্যা

Source transformation is a method used to simplify circuit analysis. A voltage source in series with a resistor can be replaced by a current source in parallel with a resistor. Similarly, a current source in parallel with a resistor can be replaced by a voltage source in series with a resistor.

Example:
A 12 V voltage source in series with a 6 Ω resistor can be replaced by a 2 A current source in parallel with a 6 Ω resistor, because I=V/R=12/6=2A.

Source: Fundamentals of Electric Circuits by Alexander and Sadiku

৭৩.
The main function of an inductor in an electrical circuit is to:
  1. Store electrical energy in a magnetic field.
  2. Store energy in an electric field.
  3. Increase the current in the circuit.
  4. Convert electrical energy into heat.
সঠিক উত্তর:
Store electrical energy in a magnetic field.
উত্তর
সঠিক উত্তর:
Store electrical energy in a magnetic field.
ব্যাখ্যা

An inductor stores energy in the form of a magnetic field when current flows through it. The ability to resist changes in current flow is due to the energy stored in this magnetic field.

Example:
In power transformers and inductive components, inductors help regulate the current and filter signals by opposing rapid changes in current.

Source: Fundamentals of Electric Circuits by Alexander and Sadiku

৭৪.
In a forward-biased diode, the current increases exponentially with the applied voltage. At a voltage of approximately 0.7 V (for a silicon diode), the diode:
  1. Conducts negligible current.
  2. Behaves like an open circuit.
  3. Begins to conduct significant current.
  4. Reverses the direction of current.
সঠিক উত্তর:
Begins to conduct significant current.
উত্তর
সঠিক উত্তর:
Begins to conduct significant current.
ব্যাখ্যা

For a silicon diode, the threshold voltage for forward bias is around 0.7 V. When the voltage exceeds 0.7 V, the diode begins to conduct a significant current due to the exponential increase described by the diode's current-voltage relationship.

Example:
A silicon diode in a forward-biased condition starts conducting when the voltage reaches around 0.7 V. Below this voltage, the current is very small (essentially zero), as the diode is not fully turned on.

Source: Electric Circuits by James W. Nilsson and Susan A. Riedel

৭৫.
A clamper circuit is used to:
  1. Clamp the voltage to a fixed value without changing the waveform.
  2. Clamp the voltage to a specific level while maintaining the waveform shape.
  3. Filter out noise in the signal.
  4. Amplify the signal to a higher level.
সঠিক উত্তর:
Clamp the voltage to a specific level while maintaining the waveform shape.
উত্তর
সঠিক উত্তর:
Clamp the voltage to a specific level while maintaining the waveform shape.
ব্যাখ্যা

A clamper circuit shifts the entire waveform vertically, either upwards or downwards, without altering the shape of the signal. It is typically used to ensure that the waveform stays within a specific voltage range.

Example:
A positive clamper shifts the signal so that its minimum voltage is at 0 V, without changing the waveform’s shape.

Source: Electric Circuits by James W. Nilsson and Susan A. Riedel

৭৬.
If the voltage across a diode increases by 0.5V and the current increases by 5mA, what is the dynamic resistance?
  1. 10Ω
  2. 20Ω
  3. 100Ω
  4. 500Ω
সঠিক উত্তর:
100Ω
উত্তর
সঠিক উত্তর:
100Ω
ব্যাখ্যা

Given that,
The change in voltage across the diode, dV =0.5V
The change in current through the diode, dI = 5mA = 0.005A

Now,
The dynamic resistance ( rd ) of a diode is calculated using the formula,
rd = dV/dI
= 0.5/0.005
= 100
∴ rd =100Ω
The answer is 100Ω

Source: Electric Circuits by James W. Nilsson and Susan A. Riedel

৭৭.
In the hybrid-pi model, the output resistance accounts for:
  1. Voltage gain
  2. Early effect in the transistor
  3. Input impedance
  4. Emitter current
সঠিক উত্তর:
Early effect in the transistor
উত্তর
সঠিক উত্তর:
Early effect in the transistor
ব্যাখ্যা

The output resistance r in the hybrid-pi model represents the change in collector current due to variations in VCE caused by the Early effect. It models the finite output impedance of the transistor in the small-signal analysis.

Example:
A transistor with Early voltage VA=100V and collector current IC=1mA has ro=VA/IC=100/0.001=100kΩ.

Source: Electric Circuits by James W. Nilsson and Susan A. Riedel

৭৮.
The output impedance of a common collector amplifier is typically:
  1. High
  2. Low
  3. Unity
  4. Zero
সঠিক উত্তর:
Low
উত্তর
সঠিক উত্তর:
Low
ব্যাখ্যা

The output impedance of a common collector amplifier is typically low because the emitter is directly connected to the output, providing a low output resistance. This makes the common collector configuration suitable for impedance matching, where the load resistance is matched to the source impedance.

Example:
A common collector amplifier with RE=10Ω will have a low output impedance, making it ideal for driving low-impedance loads.

Source: Electric Circuits by James W. Nilsson and Susan A. Riedel

৭৯.
In an N-channel MOSFET, when the gate-source voltage (V_GS) exceeds the threshold voltage (V_th), the transistor:
  1. Turns off and no current flows from source to drain.
  2. Turns on and current flows from source to drain.
  3. Produces an increase in the threshold voltage.
  4. Generates a reverse current from drain to source.
সঠিক উত্তর:
Turns on and current flows from source to drain.
উত্তর
সঠিক উত্তর:
Turns on and current flows from source to drain.
ব্যাখ্যা

In an N-channel MOSFET, when the gate-source voltage (V_GS) exceeds the threshold voltage (V_th), an inversion layer forms in the semiconductor between the source and drain, allowing current to flow from drain to source. Below the threshold voltage, the MOSFET remains off and no current flows.

Example:
For an N-channel MOSFET with a threshold voltage of 2 V, when VGS=3V, the transistor will turn on and allow current to flow from the drain to source.

Source: Microelectronic Circuits by Sedra and Smith

৮০.
Which of the following is not a standard operation for an Abstract Data Type (ADT)?
  1. Insert
  2. Delete
  3. Sort
  4. Search
সঠিক উত্তর:
Sort
উত্তর
সঠিক উত্তর:
Sort
ব্যাখ্যা

Common operations for an Abstract Data Type (ADT) include Insert, Delete, and Search, depending on the specific ADT. Sorting is typically an operation applied to a collection of data rather than a core operation of an ADT itself.

Example:
For a Queue ADT, the typical operations are enqueue (insert an element) and dequeue (remove an element), but sort is not a fundamental operation of the Queue ADT.

Source: Data Structures and Algorithm Analysis by Mark Allen Weiss

৮১.
Which of the following is a primary operation in a heap?
  1. In-order traversal
  2. Extract the minimum or maximum element
  3. Searching for an element in a sorted array
  4. Random insertion of elements in arbitrary positions
সঠিক উত্তর:
Extract the minimum or maximum element
উত্তর
সঠিক উত্তর:
Extract the minimum or maximum element
ব্যাখ্যা

The primary operations of a heap include:
Insertion: Adding a new element to the heap while maintaining its property.
Extraction: Removing the maximum element (in a max-heap) or the minimum element (in a min-heap), which requires reordering the heap to maintain its structure.

Example:
In a min-heap, the extract-min operation removes the smallest element (the root) and restructures the heap to maintain the heap property.

Source: Data Structures and Algorithm Analysis by Mark Allen Weiss

৮২.
Which of the following algorithms is used to find the shortest path in a graph with non-negative edge weights?
  1. Bellman-Ford Algorithm
  2. Dijkstra’s Algorithm
  3. Floyd-Warshall Algorithm
  4. Prim’s Algorithm
সঠিক উত্তর:
Dijkstra’s Algorithm
উত্তর
সঠিক উত্তর:
Dijkstra’s Algorithm
ব্যাখ্যা

Dijkstra’s Algorithm is used to find the shortest path from a source node to all other nodes in a graph with non-negative edge weights. It uses a greedy approach to always choose the next node with the smallest known distance.

Example:
In a road network, Dijkstra’s Algorithm would find the shortest route from one city to all other cities, assuming all road distances are non-negative.

Source: Data Structures and Algorithm Analysis by Mark Allen Weiss

৮৩.
The instruction cycle in a microprocessor involves which of the following stages?
  1. Fetch, decode, execute.
  2. Store, load, compute.
  3. Decode, compute, transfer.
  4. Fetch, compute, output.
সঠিক উত্তর:
Fetch, decode, execute.
উত্তর
সঠিক উত্তর:
Fetch, decode, execute.
ব্যাখ্যা

The instruction cycle of a microprocessor consists of three basic steps:
Fetch: Retrieve the instruction from memory.
Decode: Interpret the instruction to understand what operation is required.
Execute: Perform the required operation.

Example:
In a simple program, the CPU might fetch an instruction from memory, decode it to determine that it’s an addition operation, and then execute the addition using the ALU.

Source: Digital Logic and Computer Design by M. Morris Mano

৮৪.
Which of the following is a typical application for a microcontroller?
  1. Personal computers and workstations.
  2. Smartphones and high-end gaming systems.
  3. Embedded systems like home appliances, automobiles, and robots.
  4. Cloud computing and data centers.
সঠিক উত্তর:
Embedded systems like home appliances, automobiles, and robots.
উত্তর
সঠিক উত্তর:
Embedded systems like home appliances, automobiles, and robots.
ব্যাখ্যা

Microcontrollers are commonly used in embedded systems where a device performs a specific, dedicated function. They are integrated into applications such as home appliances (washing machines, microwave ovens), automobiles (engine control units), and robots (control systems for actuators and sensors).

Example:
The Arduino platform is a popular microcontroller used in robotics, where it controls the movement of motors, sensors, and actuators to complete a task.

Source: Microprocessor Architecture, Programming, and Applications by Ramesh S. Gaonkar,

৮৫.
Which of the following addressing modes in the 8086 microprocessor uses a register to hold the address of the operand?
  1. Immediate Addressing
  2. Indirect Addressing
  3. Indexed Addressing
  4. Register Addressing
সঠিক উত্তর:
Indirect Addressing
উত্তর
সঠিক উত্তর:
Indirect Addressing
ব্যাখ্যা

In indirect addressing, the operand’s address is stored in a register, and the register’s value is used to access the operand. This allows more flexible memory addressing.
Example:
MOV AX, [BX]: The BX register holds the memory address of the operand, and the data at that address is transferred to the AX register.

Source: Microprocessor Architecture, Programming, and Applications by Ramesh S. Gaonkar,

৮৬.
Which of the following is not a property of an equivalence relation?
  1. Reflexive
  2. Symmetric
  3. Transitive
  4. Antisymmetric
সঠিক উত্তর:
Antisymmetric
উত্তর
সঠিক উত্তর:
Antisymmetric
ব্যাখ্যা

An equivalence relation must satisfy the following properties:
Reflexive: Every element is related to itself.
Symmetric: If a is related to b, then b is related to a.
Transitive: If a is related to b, and b is related to c, then a is related to c.
However, antisymmetry is not required for an equivalence relation. Antisymmetric is a property of a partial order relation, not an equivalence relation.

Example:
The relation "is equal to" is an equivalence relation.

Source: Discrete Mathematics and Its Applications by Kenneth H. Rosen

৮৭.
A proper subset of a set A is:
  1. A set that is identical to A.
  2. A subset that contains all the elements of A.
  3. A subset that contains some but not all elements of A.
  4. A set that contains only one element of A.
সঠিক উত্তর:
A subset that contains some but not all elements of A.
উত্তর
সঠিক উত্তর:
A subset that contains some but not all elements of A.
ব্যাখ্যা

A proper subset of a set A is a subset that contains some, but not all, elements of A. A proper subset is always smaller than the original set.
Example:
If A = {1, 2, 3}, then {1, 2} is a proper subset of A, but {1, 2, 3} is not.

Source: Discrete Mathematics and Its Applications by Kenneth H. Rosen

৮৮.
The number of ways to choose r objects from a set of n distinct objects is given by:
  1. n! / (r! × (n - r)!)
  2. n × (n - 1) × (n - 2)
  3. nr
  4. r!
সঠিক উত্তর:
n! / (r! × (n - r)!)
উত্তর
সঠিক উত্তর:
n! / (r! × (n - r)!)
ব্যাখ্যা

The number of ways to choose r objects from a set of n distinct objects without regard to order is given by the combination formula:
C(n, r) = n! / (r! × (n - r)!).
Example:
For n = 5 and r = 2, the number of combinations is C(5, 2) = 5! / (2! × 3!) = (5 × 4) / 2 = 10.

Source: Discrete Mathematics and Its Applications by Kenneth H. Rosen

৮৯.
If a graph is k-connected, the minimum number of vertices whose removal can disconnect the graph is:
  1. k
  2. k-1
  3. k+1
  4. 2k
সঠিক উত্তর:
k-1
উত্তর
সঠিক উত্তর:
k-1
ব্যাখ্যা

A k-connected graph remains connected even after removing up to k-1 vertices. To disconnect the graph, at least k vertices need to be removed.
Example:
If a graph is 4-connected, removing 3 vertices may not disconnect it, but removing 4 vertices will disconnect it.

Source: Discrete Mathematics and Its Applications by Kenneth H. Rosen

৯০.
Which of the following is a decidable problem for regular languages?
  1. Determining whether a given regular language is finite.
  2. Determining whether a given regular language is context-free.
  3. Determining whether a given regular language is context-sensitive.
  4. Determining whether a given regular language is recursively enumerable.
সঠিক উত্তর:
Determining whether a given regular language is finite.
উত্তর
সঠিক উত্তর:
Determining whether a given regular language is finite.
ব্যাখ্যা

The problem of determining whether a given regular language is finite is decidable. One way to check this is by analyzing the state diagram or transition table of the corresponding finite automaton.

Example:
For a regular language defined by a finite automaton, if the automaton has no loops, the language is finite; if it has loops, it is infinite.

Source: Introduction to the Theory of Computation by Michael Sipser

৯১.
In a simple undirected graph, if a vertex has degree 0, then what is the vertex ?
  1. Isolated
  2. A leaf
  3. A cut-vertex
  4. A pendant vertex
সঠিক উত্তর:
Isolated
উত্তর
সঠিক উত্তর:
Isolated
ব্যাখ্যা

In graph theory, the degree of a vertex is the number of edges connected to it.
• If a vertex has a degree of 0, this means that there are no edges connected to that vertex.
• A vertex with degree 0 is called an isolated vertex because it is isolated from all other vertices in the graph.

Example:
In a graph with vertices {A, B, C, D}, if A is not connected to any other vertex, the degree of vertex A is 0, making it an isolated vertex.

Source: Graph Theory with Applications by J.A. Bondy and U.S.R. Murty

৯২.
Which of the following is the correct way to print an integer using formatted output in C?
  1. printf("%d", x);
  2. printf(x);
  3. printf("%s", x);
  4. print(x);
সঠিক উত্তর:
printf("%d", x);
উত্তর
সঠিক উত্তর:
printf("%d", x);
ব্যাখ্যা

In C, to print an integer, we use the printf function with the format specifier %d for decimal integers. The variable x will be printed in its integer format.

Example:
int x = 5;
printf("%d", x);

The output is 5

Source: C Programming: A Modern Approach by K. N. King.

৯৩.
Which of the following is not an example of a Black Box Testing technique?
  1. Boundary Value Analysis
  2. Equivalence Partitioning
  3. Control Flow Testing
  4. Decision Table Testing
সঠিক উত্তর:
Control Flow Testing
উত্তর
সঠিক উত্তর:
Control Flow Testing
ব্যাখ্যা

Black Box Testing refers to testing where the tester is not concerned with the internal workings of the application. Instead, the focus is on input and output behavior. Black Box Testing techniques are used to check if the software functions as expected, without knowing the internal structure of the program.

Examples of Black Box Testing techniques:
Boundary Value Analysis (BVA):
This technique involves testing the boundaries between partitions. For example, if a valid input range is between 1 and 10, the boundary values would be 1, 10, and values just outside the boundaries like 0 and 11.
Equivalence Partitioning:
In this technique, input data is divided into different partitions or classes that are expected to be processed in the same way. One test case from each partition is used to represent the entire partition.
Decision Table Testing:
This technique involves creating a decision table to test various input combinations and their corresponding outputs. It helps in identifying rules based on inputs and corresponding outputs.

Example:
Boundary Value Analysis: If the program accepts values from 1 to 100, boundary values to test would include 1, 100, 0, and 101.
Equivalence Partitioning: If a program accepts ages from 18 to 65, an equivalence class might be ages from 18 to 65 and test cases would include ages like 20, 50, and 64 (one from each class).

Source: Software Testing: Principles and Practices by Srinivasan Desikan, Gopalaswamy Ramesh

৯৪.
The Fourier Series is primarily used in which of the following fields?
  1. Digital Signal Processing
  2. Statistical Analysis
  3. Nonlinear Dynamics
  4. Thermodynamics
সঠিক উত্তর:
Digital Signal Processing
উত্তর
সঠিক উত্তর:
Digital Signal Processing
ব্যাখ্যা

The Fourier Series is widely used in Digital Signal Processing (DSP), where it helps analyze and decompose signals into their frequency components. It plays a vital role in filtering, modulation, compression, and many other DSP applications.

Example:
In audio compression algorithms like MP3, Fourier Series or similar techniques are used to break down the audio signal into frequency components for efficient storage and transmission.

Source: Discrete-Time Signal Processing by Alan V. Oppenheim and Ronald W. Schafer

৯৫.
What is the Nyquist rate in Pulse Code Modulation (PCM)?
  1. The minimum sampling rate required to avoid aliasing
  2. The rate at which the signal is quantized
  3. The rate at which data is encoded in PCM
  4. The maximum rate at which PCM can transmit data
সঠিক উত্তর:
The minimum sampling rate required to avoid aliasing
উত্তর
সঠিক উত্তর:
The minimum sampling rate required to avoid aliasing
ব্যাখ্যা

The Nyquist rate is the minimum sampling rate required to capture all the information in an analog signal without aliasing. According to the Nyquist-Shannon sampling theorem, the sampling rate should be at least twice the highest frequency present in the signal. This ensures that the signal can be perfectly reconstructed from its samples.

Example:
If an audio signal has a maximum frequency of 20 kHz, the Nyquist rate would be 40 kHz, meaning that the signal must be sampled at least 40,000 times per second to avoid aliasing.

Source: Signals and Systems by Alan V. Oppenheim and Alan S. Willsky

৯৬.
In a TDMA system, what happens if two users attempt to transmit during the same time slot?
  1. The system will allocate them different frequency bands
  2. The signals will interfere, resulting in data loss or errors
  3. The system will automatically assign them new time slots
  4. The system will ignore the transmission of both users
সঠিক উত্তর:
The signals will interfere, resulting in data loss or errors
উত্তর
সঠিক উত্তর:
The signals will interfere, resulting in data loss or errors
ব্যাখ্যা

In a TDMA system, if two users attempt to transmit during the same time slot, their signals will overlap and interfere with each other, leading to data loss or errors. This is why precise synchronization of time slots is critical in TDMA-based systems.

Example:
If two mobile phones try to transmit in the same time slot in a TDMA system, their signals will collide, causing communication failures.

Source: Fundamentals of Wireless Communication by David Tse and Pramod Viswanath.

৯৭.
In a simple graph, what is the maximum number of edges that can be drawn in a graph with 10 vertices?
  1. 15
  2. 25
  3. 35
  4. 45
সঠিক উত্তর:
45
উত্তর
সঠিক উত্তর:
45
ব্যাখ্যা

To find the maximum number of edges that can be drawn in a simple graph with 6 vertices, we use the following facts:
• A simple graph is one in which there are no loops (edges from a vertex to itself) and no multiple edges between any pair of vertices.
• The maximum number of edges in a simple graph occurs when every possible edge between distinct vertices is present.

Now, the maximum number of edges in a simple graph with n vertices is given by the formula for the complete graph;
Maximum edges = n(n−1)/2
Where,
n is the number of vertices.

Here, For n=10 (10 vertices):
Maximum edges
= 10×(10−1)/2
= 10×9/2
= 90/2
=45
The maximum number of edges that can be drawn in a simple graph with 10 vertices is 45.


Source: Discrete Mathematics with Applications by Susanna S. Epp.

৯৮.
How many ways can 4 people be arranged in a line?
  1. 4
  2. 8
  3. 12
  4. 24
সঠিক উত্তর:
24
উত্তর
সঠিক উত্তর:
24
ব্যাখ্যা

This problem is about arranging 4 distinct people in a line. The number of ways to arrange n distinct objects (or people) in a line is given by the factorial of n, denoted as n!. The formula for the number of arrangements (or permutations) is:
n!=n×(n−1)×(n−2)×⋯×1
For 4 people, we calculate:
4!=4×3×2×1=24
Thus, there are 24 different ways to arrange 4 people in a line.

Source: Discrete Mathematics with Applications by Susanna S. Epp.

৯৯.
In Adaptive Delta Modulation (ADM), how does the system decide when to increase or decrease the step size?
  1. Based on the average signal power
  2. By detecting rapid changes in the signal
  3. By monitoring the frequency spectrum
  4. Based on the signal-to-noise ratio (SNR)
সঠিক উত্তর:
By detecting rapid changes in the signal
উত্তর
সঠিক উত্তর:
By detecting rapid changes in the signal
ব্যাখ্যা

In ADM, the step size is adaptively adjusted based on the rate of change of the signal. If the signal changes rapidly, the system increases the step size to improve tracking accuracy. If the signal changes slowly, the step size is reduced to minimize quantization error.

Example:
For a speech signal with varying dynamics, ADM will adjust its step size when the speech volume changes, ensuring more precise representation.

Source: Digital Signal Processing: Principles, Algorithms, and Applications by John G. Proakis and Dimitris G. Manolakis

১০০.
উচ্চারণ স্থান অনুসারে 'র' কোন ধরনের ধ্বনি?
  1. কণ্ঠ্য
  2. তালব্য
  3. দন্তমূলীয়
  4. মূর্ধন্য
সঠিক উত্তর:
দন্তমূলীয়
উত্তর
সঠিক উত্তর:
দন্তমূলীয়
ব্যাখ্যা

• দন্তমূলীয় ব্যঞ্জন:
যেসব ব্যঞ্জনধ্বনি উচ্চারণের সময়ে জিভের ডগা উপরের পাটির দাঁতের গোড়ার সঙ্গে লেগে বায়ুপথে বাধা সৃষ্টি করে, সেগুলোকে দন্তমূলীয় ব্যঞ্জন বলে। নানা, রাত, লাল, সালাম প্রভৃতি শব্দের ন, র, ল, স দন্তমূলীয় ব্যঞ্জনধ্বনির উদাহরণ।

অন্যদিকে,
• মূর্ধন্য ব্যঞ্জন:
দন্তমূল এবং তালুর মাঝখানে যে উঁচু অংশ থাকে তার নাম মূর্ধা। যেসব ব্যঞ্জনধ্বনি উচ্চারণের সময়ে জিভের ডগা মূর্ধার সঙ্গে লেগে বায়ুপথে বাধা সৃষ্টি করে, সেগুলোকে মূর্ধন্য ব্যঞ্জন বলে। টাকা, ঠেলাগাড়ি, ডাকাত, ঢোল, গাড়ি, মূঢ় প্রভৃতি শব্দের ট, ঠ, ড, ঢ, ড়, ঢ় মূর্ধন্য ব্যঞ্জনধ্বনির উদাহরণ।

• কণ্ঠ্য ব্যঞ্জন:
যেসব ব্যঞ্জনধ্বনি উচ্চারণের সময়ে জিভের পিছনের অংশ উঁচু হয়ে আলজিভের কাছাকাছি নরম তালুর কাছে বায়ুপথে বাধা সৃষ্টি করে, সেগুলোকে কণ্ঠ্য ব্যঞ্জন বলে। কাকা, খালু, গাধা, ঘাস, কাঙাল প্রভৃতি শব্দের ক, খ, গ, ঘ, ঙ কণ্ঠ্য ব্যঞ্জনধ্বনির উদাহরণ।

• তালব্য ব্যঞ্জন:
যেসব ব্যঞ্জনধ্বনি উচ্চারণের সময়ে জিভের ডগা খানিকটা প্রসারিত হয়ে শক্ত তালুর কাছে বায়ুপথে বাধা সৃষ্টি করে, সেগুলোকে তালব্য ব্যঞ্জন বলে। চাচা, ছাগল, জাল, ঝড়, শসা প্রভৃতি শব্দের চ, ছ, জ, ঝ, শ তালব্য ব্যঞ্জনধ্বনির উদাহরণ।

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

১০১.
নিচের কোন শব্দটিতে ‘ণ’ - এর ভুল প্রয়োগ ঘটেছে?
  1. আপণ
  2. বিপণি
  3. পিণ্ডারি
  4. নিপুণ
সঠিক উত্তর:
পিণ্ডারি
উত্তর
সঠিক উত্তর:
পিণ্ডারি
ব্যাখ্যা

• তৎসম শব্দের বানানে ণ-এর সঠিক ব্যবহারের নিয়মকে ণ-ত্ব বিধান বলে।

• ‘ণ’ - এর ভুল প্রয়োগ ঘটেছে- পিণ্ডারি শব্দে।
• 'পিণ্ডারি' শব্দটির সঠিক বানান - পিন্ডারি।
• 'পিন্ডারি' অর্থ- মহারাষ্ট্রীয় অশ্বারোহী দস্যুদল, বর্গি।
'পিন্ডারি' মারাঠি শব্দ। বিদেশি শব্দে ণ-ত্ব বিধানের নিয়ম খাটে না।

অন্যদিকে,
----------------
• আপণ-

→ আপণ একটি পুরনো তদ্ভব শব্দ, যার অর্থ: নিজের মালিকানাধীন বা দোকান।
→ যদিও অনেকেই আপন ভাবেন, আসলে আপণ বানানটিও অভিধানসম্মতভাবে স্বীকৃত।
→ উদাহরণ: “আপণ প্রতিষ্ঠানে সে কর্মরত।”

• বিপণি-
→ শুদ্ধ বানান: বিপণি (অর্থ: দোকান)
→ ‘ণ’ ব্যবহারে ভুল নেই।

• নিপুণ-
→ শুদ্ধ বানান: নিপুণ (অর্থ: দক্ষ/কুশলী)
→ সঠিক প্রয়োগ।

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

১০২.
'অর্থবছর' এর ব্যাসবাক্য-
  1. অর্থ ও বছর
  2. অর্থের বছর
  3. অর্থ রূপ বছর
  4. অর্থ হিসাবের বছর
সঠিক উত্তর:
অর্থ হিসাবের বছর
উত্তর
সঠিক উত্তর:
অর্থ হিসাবের বছর
ব্যাখ্যা

সঠিক উত্তর হলো - ঘ) অর্থ হিসাবের বছর।

ব্যাখ্যা:
'অর্থবছর' একটি কর্মধারয় সমাস যার ব্যাসবাক্য হলো "অর্থ হিসাবের বছর"।

'অর্থবছর' এর প্রকৃত অর্থ: সরকারি বা প্রাতিষ্ঠানিক আর্থিক হিসাব-নিকাশের জন্য নির্ধারিত ১২ মাসের সময়কাল, যা সাধারণত ১ জুলাই থেকে ৩০ জুন পর্যন্ত হয়ে থাকে।

মধ্যপদলোপী কর্মধারয়:
- যে কর্মধারয় সমাসে ব্যাসবাক্যের মধ্যপদের লোপ হয়, তাকে মধ্যপদলোপী কর্মধারয় সমাস বলে।

যেমন:
- স্মৃতি রক্ষার্থে সৌধ = স্মৃতিসৌধ,
- সাহিত্য বিষয়ক সভা = সাহিত্যসভা,
- হাসি মাখা মুখ = হাসিমুখ,
- গণ নিয়ন্ত্রিত তন্ত্র = গণতন্ত্র ইত্যাদি।

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

১০৩.
'যথার্থ' শব্দটি সন্ধি-বিচ্ছেদর কোন নিয়মে হয়েছে?
  1. স্বরসন্ধির
  2. ব্যঞ্জনসন্ধির
  3. বিসর্গসন্ধির
  4. কোনোটিই নয়
সঠিক উত্তর:
স্বরসন্ধির
উত্তর
সঠিক উত্তর:
স্বরসন্ধির
ব্যাখ্যা

• 'যথার্থ' এর সঠিক সন্ধি বিচ্ছেদ = যথা + অর্থ।
- এটি স্বরসন্ধির উদাহরণ।

• সন্ধির নিয়ম:
- আ + অ = আ; সূত্র যোগে গঠিত শব্দ।

এরূপ আরও কিছু শব্দ,
- আশা + অতীত = আশাতীত,
- কথা + অমৃত = কথামৃত,
- মহা + অর্ঘ = মহার্ঘ ইত্যাদি।

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

১০৪.
কালকেতু উপাখ্যানের কবি কে?
  1. ভারতচন্দ্র রায়গুণাকর
  2. মুকুন্দরাম চক্রবর্তী
  3. কেতকাদাস ক্ষেমানন্দ
  4. বিজয় গুপ্ত
সঠিক উত্তর:
মুকুন্দরাম চক্রবর্তী
উত্তর
সঠিক উত্তর:
মুকুন্দরাম চক্রবর্তী
ব্যাখ্যা

• কালকেতু উপাখ্যান মুকুন্দরাম চক্রবর্তীর "চণ্ডীমঙ্গল" কাব্যের একটি অংশ।

• চণ্ডীমঙ্গল’ কাব্য:

- 'চণ্ডীমঙ্গল’ চণ্ডী নামক লৌকিক-পৌরাণিক দেবীর পূজা প্রচারের কাহিনি অবলম্বনে লিখিত কাব্য।
- চণ্ডীমঙ্গল কাব্যের আদি কবি মানিক দত্ত।
- চণ্ডীমঙ্গল ধারার প্রধান বা শ্রেষ্ঠ কবির নাম মুকুন্দরাম চক্রবর্তী৷

• এই কাব্যের দুটি উপাখ্যান রয়েছে-
১. একটি ব্যাধ দম্পতি কালকেতু ও ফুল্লরার কাহিনি, চণ্ডী বরে কালকেতুর ধনপ্রাপ্তি নতুন রাজ্যপত্তন, ধূর্ত ভাড়ুদত্তের ষড়যন্ত্রে প্রতিবেশী রাজার সঙ্গে যুদ্ধ।
২. দ্বিতীয় উপাখ্যানের নায়ক ধনপতি সওদাগর, অন্যান্য প্রধান চরিত্র তার দুই স্ত্রী লহনা ও খুল্লনা।

- চণ্ডীমঙ্গল কাব্যের কবি দ্বিজ মাধবকে 'স্বভাব কবি' বলা হয়।
- চণ্ডীমঙ্গল কাব্যে অন্যান্য কবি গুলো হলো: দ্বিজ রামদেব, মুক্তারাম সেন, হরিরাম, লালা জয়নারায়ণ সেন, ভবানীশঙ্কর দাস, অকিঞ্চন চক্রবর্তী।

• ‘কালকেতু উপাখ্যানে’ ফুল্লরার উদ্দেশ্যে কালকেতু বলেছে:
শাশুড়ি ননদি নাহি নাহি তোর সতা।
কার সঙ্গে দ্বন্দ্ব করি চক্ষু কৈলি রাতা।।

• চণ্ডীমঙ্গল কাব্যের প্রধান চরিত্রগুলাে হলো:
- কালকেতু,
- ফুল্লরা,
- ধনপতি,
- ভাঁড়ুদত্ত,
- মুরারি শীল প্রমুখ।

উৎস: বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা এবং বাংলাপিডিয়া; (‘কালকেতু উপাখ্যান’: মুকুন্দরাম চক্রবর্তী)।

১০৫.
'Profiteer' এর বাংলা পরিভাষা -
  1. শিক্ষানবিস
  2. মুনাফাখোর
  3. প্রতারণা
  4. কার্যক্রম-সমন্বয়ক
সঠিক উত্তর:
মুনাফাখোর
উত্তর
সঠিক উত্তর:
মুনাফাখোর
ব্যাখ্যা

• 'Profiteer' এর বাংলা পরিভাষা - মুনাফাখোর।

অন্যদিকে,
• 'Apprentice' এর বাংলা পরিভাষা- 'শিক্ষানবিস'।
• 'Deceit' এর বাংলা পরিভাষা- 'প্রতারণা'।
• ‘Programme co-ordinator’ শব্দের বাংলা পরিভাষা - 'কার্যক্রম সমন্বয়ক'।

উৎস: বাংলা একাডেমি, প্রশাসনিক পরিভাষা।

১০৬.
"ঘরের খেয়ে পরের মোষ তাড়ানো।" বাক্যটি কোন কারণে অশুদ্ধ?
  1. বানান ভুল আছে
  2. প্রত্যয়সাধিত শব্দের ভুল প্রয়োগ
  3. প্রবাদের বিকৃতি
  4. বিশেষ্য-বিশেষণের অপপ্রয়োগ ঘটেছে
সঠিক উত্তর:
প্রবাদের বিকৃতি
উত্তর
সঠিক উত্তর:
প্রবাদের বিকৃতি
ব্যাখ্যা

• "ঘরের খেয়ে পরের মোষ তাড়ানো" বাক্যটি অশুদ্ধ কারণ এটি একটি প্রচলিত প্রবাদের বিকৃত রূপ।

সঠিক প্রবাদ: "ঘরের খেয়ে বনের মোষ তাড়ানো"।

প্রবাদের অর্থ: "ঘরের খেয়ে বনের মোষ তাড়ানো" মানে নিজের ঘরে খাওয়া-দাওয়া করে অন্যের (বনের) কাজ করা - অর্থাৎ কৃতজ্ঞতা না দেখিয়ে অন্যের পক্ষে কাজ করা।

অশুদ্ধতার ধরন:
প্রাচীন প্রবাদের প্রচলিত রূপে পরিবর্তন ঘটিয়ে ভুল শব্দ ব্যবহার করলে বাক্যে অশুদ্ধি ঘটে।

উৎস: প্রমিত বাংলা ব্যাকরণ ও নির্মিতি, ড. হায়াৎ মামুদ ও ড. মোহাম্মদ আমীন।

১০৭.
'বন্দর' কোন ভাষার শব্দ?
  1. তৎসম
  2. আরবি
  3. মারাঠি
  4. ফারসি
সঠিক উত্তর:
ফারসি
উত্তর
সঠিক উত্তর:
ফারসি
ব্যাখ্যা

• 'বন্দর':
- শব্দটি ফারসি ভাষা হতে আগত।
- এটি একটি বিশেষ্য পদ।
এর অর্থ:
- সমুদ্র বা নদীর তীরবর্তী স্থান যেখানে নৌযানে পণ্য বোঝাই বা খালাস করা হয়।

• ফারসি ভাষা থেকে আগত আরো কিছু শব্দ হলো:
গ্রেপ্তারি, গ্রেফতার, দারোগা, লুঙ্গি, সাদা, আসমান, কাজি, খোয়াব, চেহারা, কাগজ, চশমা, চারপায়া, ছয়লাপ ইত্যাদি।

সূত্র: বাংলা একাডেমি আধুনিক বাংলা অভিধান।

১০৮.
‘ইচ্ছা’ এর সমার্থক শব্দ নয় কোনটি?
  1. স্পৃহা
  2. বাঞ্ছা
  3. বাসনা
  4. আহ্লাদ
সঠিক উত্তর:
আহ্লাদ
উত্তর
সঠিক উত্তর:
আহ্লাদ
ব্যাখ্যা

• ‘ইচ্ছা’ এর সমার্থক শব্দ:
- আকাঙ্ক্ষা, আশা, ইচ্ছা, প্রার্থনা, চাওয়া, স্পৃহা, অভিপ্রায়, সাধ, অভিরুচি, প্রবৃত্তি, মনোরথ, ঈপ্সা, অভীপ্সা, বাসনা, কামনা, বাঞ্ছা

অন্যদিকে,
‘আনন্দ’ শব্দের সমার্থক শব্দ:
- খুশি, আমোদ, মজা, হর্ষ, আহ্লাদ, স্ফূর্তি, সন্তোষ, পরিতোষ, প্রমোদ, উল্লাস, উচ্ছ্বাস।

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

১০৯.
মুসলমান নারী কর্তৃক লিখিত বাংলা সাহিত্যকর্ম ‘রূপজালাল’–এর লেখক–
  1. বেগম রোকেয়া
  2. নওয়াব ফয়জুন্নেসা চৌধুরী
  3. রহিমুন্নিসা
  4. শামসুর নাহার
সঠিক উত্তর:
নওয়াব ফয়জুন্নেসা চৌধুরী
উত্তর
সঠিক উত্তর:
নওয়াব ফয়জুন্নেসা চৌধুরী
ব্যাখ্যা

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

------------------
নবাব ফয়জুন্নেসা চৌধুরানী:
- নবাব ফয়জুন্নেসা চৌধুরানী ছিলেন জমিদার, নারীশিক্ষার প্রবর্তক, সমাজসেবক ও কবি।
- কুমিল্লা জেলার লাকসাম উপজেলাধীন পশ্চিমগাঁও গ্রামে এক জমিদার বংশে তিনি জন্মগ্রহণ করেন। তাঁর পিতা আহমদ আলী চৌধুরী ছিলেন হোমনাবাদ-পশ্চিমগাঁও-এর জমিদার।
- পারিবারিক পরিবেশে গৃহশিক্ষকের তত্ত্বাবধানে বাড়িতেই তিনি শিক্ষালাভ করেন। মুসলমানদের কঠিন পর্দাপ্রথার মধ্যে থেকেও ফয়জুন্নেসা আরবি, ফারসি ও উর্দুর পাশাপাশি বাংলা ও সংস্কৃত ভাষায়ও ব্যুৎপত্তি অর্জন করেন।

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

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

১১০.
'গন্তব্য' এর সঠিক প্রকৃতি-প্রত্যয় কোনটি?
  1. √ গম্‌ + অব্য
  2. √ গন্‌ + তব্য
  3. √ গম্ + তব্য
  4. √ গন্ত + অ
সঠিক উত্তর:
√ গম্ + তব্য
উত্তর
সঠিক উত্তর:
√ গম্ + তব্য
ব্যাখ্যা

• 'গন্তব্য'- এর সঠিক প্রকৃতি প্রত্যয় - √ গম্ + তব্য।

এখানে,
- '√ গম্‌' সংস্কৃত ক্রিয়াপ্রকৃতি এবং 'তব্য' সংস্কৃত কৃৎ প্রত্যয়।
- শব্দের অর্থ: গমনের লক্ষ্য।

- ধাতুর সঙ্গে যখন কোনো ধ্বনি বা ধ্বনি-সমষ্টি যুক্ত হয়ে বিশেষ্য বা বিশেষণ পদ তৈরি হয়, তখন ক্রিয়ামূল বা ধাতুকে বলা হয় ক্রিয়া প্রকৃতি বা প্রকৃতি।

- ক্রিয়া প্রকৃতির সঙ্গে যে ধ্বনি বা ধ্বনিসমষ্টি যুক্ত হয়, তাকে বলে কৃৎ-প্রত্যয়।
- যেমন- চল্ (ক্রিয়া প্রকৃতি)+ অন (কৃৎ-প্রত্যয়)= চলন (বিশেষ্য পদ)।

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

১১১.
'সজ্জন' এর বিপরীত শব্দ -
  1. বর্জন
  2. অসজ্জন
  3. দুর্জন
  4. খ এবং গ উভয়ই
সঠিক উত্তর:
খ এবং গ উভয়ই
উত্তর
সঠিক উত্তর:
খ এবং গ উভয়ই
ব্যাখ্যা

• 'সজ্জন' এর অর্থ: সৎলোক; সাধু ব্যক্তি।
- অসজ্জন অর্থ: অসাধু বা দুষ্ট লোক।
- 'দুর্জন' অর্থ - দুষ্ট বা খারাপ লোক।

সুতরাং,
• 'সজ্জন' এর বিপরীত শব্দ - "অসজ্জন এবং দুর্জন" উভয়ই।

• কিছু গুরুত্বপূর্ণ বিপরীত শব্দ:
• 'বর্জন' এর বিপরীত শব্দ - গ্রহণ।
• 'উৎকর্ষ' এর বিপরীত শব্দ - অপকর্ষ।
• 'গৃহী' এর বিপরীত শব্দ - সন্ন্যাসী।
• 'দাতা' এর বিপরীত শব্দ - গ্রহীতা।
• 'ক্ষয়িষ্ণু' এর বিপরীত শব্দ - বর্ধিষ্ণু।

উৎস: ভাষা শিক্ষা, ড. হায়াৎ মামুদ।

১১২.
নিম্নবিবৃত স্বরধ্বনি —




সঠিক উত্তর:

উত্তর
সঠিক উত্তর:

ব্যাখ্যা

• নিম্নবিবৃত স্বরধ্বনি — আ।

• স্বরধ্বনির উচ্চারণ:
উচ্চারণের সময়ে জিভের উচ্চতা অনুযায়ী, জিভের সম্মুখ-পশ্চাৎ অবস্থান অনুযায়ী এবং ঠোঁটের উন্মুক্তি অনুযায়ী স্বরধ্বনিকে ভাগ করা হয়।

উচ্চারণের সময়ে জিভ কতটা নিচে নামে সেই অনুযায়ী স্বরধ্বনি চার ভাগে বিভক্ত।
যথা -
১. উচ্চ স্বরধ্বনি - ই, উ।
২. উচ্চ -মধ্য স্বরধ্বনি - এ, ও।
৩. নিম্ন-মধ্য স্বরধ্বনি - অ্যা, অ।
৪. নিম্ন স্বরধ্বনি - আ।

• স্বরধ্বনি উচ্চারণের সময়ে ঠোঁট কতটুকু খোলা বা বন্ধ থাকে অর্থাৎ কী পরিমাণ উন্মুক্ত হয়, তার ভিত্তিতে স্বরধ্বনি চার ভাগে বিভক্ত।
- সংবৃত: [ই], [উ]।
- অর্ধ-সংবৃত: [ এ ], [ও]।
- বিবৃত: [আ]।
- অর্ধ-বিবৃত: [অ্যা], [অ]।

• সংবৃত স্বরধ্বনি উচ্চারণের সময়ে ঠোঁট কম খোলে; বিবৃত স্বরধ্বনি উচ্চারণের সময়ে ঠোঁট বেশি খোলে।

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

১১৩.
"মুহূর্ত তুলিয়া শির একত্র দাঁড়াও দেখি সবে,
যার ভয়ে তুমি ভীত সে অন্যায় ভীরু তোমা চেয়ে,
যখনি জাগিবে তুমি তখনি সে পলাইবে ধেয়ে।"- কে লিখেছেন?
  1. কাজী নজরুল ইসলাম
  2. হাসান আজিজুল হক
  3. সুকান্ত ভট্টাচার্য
  4. রবীন্দ্রনাথ ঠাকুর
সঠিক উত্তর:
রবীন্দ্রনাথ ঠাকুর
উত্তর
সঠিক উত্তর:
রবীন্দ্রনাথ ঠাকুর
ব্যাখ্যা

• "মুহূর্ত তুলিয়া শির একত্র দাঁড়াও দেখি সবে,
যার ভয়ে তুমি ভীত সে অন্যায় ভীরু তোমা চেয়ে,
যখনি জাগিবে তুমি তখনি সে পলাইবে ধেয়ে।" - কবিতাংশুটুকুর রচয়িতা - রবীন্দ্রনাথ ঠাকুর। এটি তাঁর 'চিত্রা' কাব্যগ্রন্থের এবার ফিরাও মোরে- কবিতার অংশবিশেষ।

'চিত্রা' কাব্যগ্রন্থ:
- রবীন্দ্রনাথ ঠাকুর রচিত কাব্যগ্রন্থ 'চিত্রা'।
- ১৩০২ বঙ্গাব্দ মোতাবেক ১৮৯৬ সালে প্রকাশিত হয়।
- এই কাব্যগ্রন্থে মোট ৩৫টি কবিতা রয়েছে।

এবার ফিরাও মোরে- কবিতার অংশবিশেষ-

মুহূর্ত তুলিয়া শির একত্র দাঁড়াও দেখি সবে,
যার ভয়ে তুমি ভীত সে অন্যায় ভীরু তোমা চেয়ে,
যখনি জাগিবে তুমি তখনি সে পলাইবে ধেয়ে;
যখনি দাঁড়াবে তুমি সম্মুখে তাহার, তখনি সে
পথকুক্কুরের মতো সংকোচে সত্রাসে যাবে মিশে;
দেবতা বিমুখ তারে, কেহ নাহি সহায় তাহার,
মুখে করে আস্ফালন, জানে সে হীনতা আপনার
মনে মনে। (সংক্ষেপিত)

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

উৎস: বাংলা ভাষা ও সাহিত্য জিজ্ঞাসা, চিত্রা কাব্যগ্রন্থ- রবীন্দ্রনাথ ঠাকুর ও বাংলাপিডিয়া।

১১৪.
সাকিব বলল, "আমি এখানে থাকব"। - বাক্যটির পরোক্ষ উক্তিতে রূপান্তর কোনটি?
  1. সাকিব বলল যে, সে সেখানে থাকবে।
  2. সাকিব বলল, "আমি সেখানে থাকব।"
  3. সাকিব বলল, "সে এখানে থাকবে।
  4. সাকিব জানাল যে আমি এখানে থাকব।
সঠিক উত্তর:
সাকিব বলল যে, সে সেখানে থাকবে।
উত্তর
সঠিক উত্তর:
সাকিব বলল যে, সে সেখানে থাকবে।
ব্যাখ্যা

সঠিক উত্তর — ক) সাকিব বলল যে, সে সেখানে থাকবে।

ব্যাখ্যা:
প্রত্যক্ষ উক্তি: বলল সাকিব, "আমি এখানে থাকব"।
সঠিক পরোক্ষ উক্তি: সাকিব বলল যে, সে সেখানে থাকবে।

উক্তি রূপান্তরের নিয়মসমূহ:
১. পুরুষের পরিবর্তন:
"আমি" → "সে" (প্রথম পুরুষ থেকে তৃতীয় পুরুষে)।

২. স্থানের পরিবর্তন:
"এখানে" → "সেখানে" (নিকট স্থান থেকে দূর স্থানে)।

৩. বাক্য গঠন:
উদ্ধৃতি চিহ্ন সরিয়ে "যে" সংযোজক অব্যয়।

৪. ক্রিয়ার রূপ:
"থাকব" → "থাকবে" (পুরুষ অনুযায়ী পরিবর্তন)।

অন্যান্য অপশনগুলো কেন ভুল:
ক) এখনও প্রত্যক্ষ উক্তি (উদ্ধৃতি চিহ্ন আছে) এবং পুরুষ পরিবর্তন হয়নি।
গ) পুরুষ ও স্থান পরিবর্তন হয়নি ("আমি এখানে" রয়ে গেছে)।
ঘ) এখনও প্রত্যক্ষ উক্তি (উদ্ধৃতি চিহ্ন আছে)।

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

১১৫.
"বীণার ঝঙ্কারসম যে প্রীতি ধ্বনিত হয় নিতি।" - এখানে 'প্রীতি' কোন পদ?
  1. বিশেষ্য
  2. বিশেষণ
  3. অব্যয়
  4. ক্রিয়া বিশেষণ
সঠিক উত্তর:
বিশেষ্য
উত্তর
সঠিক উত্তর:
বিশেষ্য
ব্যাখ্যা

• "বীণার ঝঙ্কারসম যে প্রীতি ধ্বনিত হয় নিতি" - এই বাক্যে 'প্রীতি' একটি বিশেষ্য পদ।

তবে,
"প্রীতিময় মুখ" - এখানে 'প্রীতিময়' বিশেষণ।
------------
এমন কিছু গুরুত্বপূর্ণ শব্দ:
- গাম্ভীর্য হলো বিশেষ্য পদ।
- গাম্ভীর্য শব্দের বিশেষণ রূপ - গম্ভীর।
- 'ইচ্ছা' শব্দটি বিশেষ্য পদ।
- জাত ও উদ্ধত - বিশেষণ পদ।
- গৈরিক - বিশেষ্য ও বিশেষণ পদ।

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

১১৬.
বাংলা একাডেমি কর্তৃক প্রকাশিত প্রথম বই-
  1. লাইলি মজনু
  2. বাংলাদেশের লোকজ সংস্কৃতি গ্রন্থমালা
  3. ব্যবহরিক বাংলা অভিধান
  4. আধুনিক বাংলা অভিধান
সঠিক উত্তর:
লাইলি মজনু
উত্তর
সঠিক উত্তর:
লাইলি মজনু
ব্যাখ্যা

বাংলা একাডেমি কর্তৃক প্রকাশিত প্রথম বই ছিল—
দৌলত উজির বাহ্‌রাম খাঁর- লাইলি মজনু।

বাংলা একাডেমি সম্পর্কিত কিছু তথ্য:
১৯৫২ সালের ভাষা আন্দোলন এবং এ দেশের মুসলিম মধ্যবিত্তের জাগরণ ও আত্মপরিচয় বিকাশের প্রেরণায় এ প্রতিষ্ঠানের জন্ম হয়।

- বাংলা একাডেমি প্রতিষ্ঠিত হয় ১৯৫৫ সালের ৩ ডিসেম্বর।
- প্রথম প্রকাশিত বইটি ছিল লাইলি মজনু, যা মধ্যযুগীয় বাংলা প্রেমকাব্যের একটি গুরুত্বপূর্ণ গ্রন্থ।
- পরে একাডেমি আঞ্চলিক ভাষার অভিধান, লোকসংস্কৃতি বিষয়ক গ্রন্থ এবং ব্যবহরিক বাংলা অভিধান, আধুনিক বাংলা অভিধান ইত্যাদি গুরুত্বপূর্ণ প্রকাশনা করে।

উৎস: বাংলা একাডেমি; প্রথম আলো পত্রিকা রিপোর্ট- লিংক।

১১৭.
'লালসালু'- উপন্যাসের কোন চরিত্রটি নারী বিদ্রোহ ও প্রতিবাদের প্রতীক?
  1. রহিমা
  2. আমেনা
  3. জমিলা
  4. হাসুনির মা
সঠিক উত্তর:
জমিলা
উত্তর
সঠিক উত্তর:
জমিলা
ব্যাখ্যা

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

• ধর্ম ব্যবসায়ী মজিদ অর্থ ও প্রভাব বৃদ্ধির সঙ্গে অল্পবয়সী দ্বিতীয় স্ত্রী গ্রহণ করে। সে গ্রামের মোড়লদেরও প্রভাবিত করে। পাশের গ্রামে অন্য পিরের আগমন হলে, নিজের দাপট খর্ব হবে বিবেচনায়, তাকে মারধর দিয়ে উচ্ছেদ করে।
• তবে স্বল্পবয়সী স্ত্রী জমিলা কর্তৃক মজিদ লাঞ্ছিত হয়। উপন্যাসে জমিলা বিদ্রোহিণী, প্রতিবাদের প্রতীক।
• 'লালসালু'র একটি বহুমাত্রিক ও কালোত্তীর্ণ উপন্যাস।
• ঔপন্যাসিক ধর্মব্যবসায়ীদের উপলক্ষ করে লিখেছেন: 'খোদার এলেমে বুক ভরে না তলায় পেট শূন্য বলে।'
• উপন্যাসটি 'Tree Without Roots' নামে ইংরেজিতে অনূদিত হয়ে (১৯৬৭) খ্যাতি অর্জন করে।
• ওয়ালীউল্লাহর পত্নী অ্যান মেরির ‘লালসালু'র ফরাসি অনুবাদের নাম- ল্য অরবরে সামস মায়েমে (১৯৬১)।

• উপন্যাসের উল্লেখযোগ্য চরিত্র:
- মজিদ,
- খালেক ব্যাপারি,
- জমিলা,
- রহিমা,
- আমেনা,
- আক্কাস,
- তাহেরের বাপ,
- হাসুনির মা।

-----------------------
• সৈয়দ ওয়ালীউল্লাহ্‌:
- সৈয়দ ওয়ালীউল্লাহ্‌ ছিলেন একজন কথাসাহিত্যিক, নাট্যকার।
- তিন ১৯২২ সালের ১৫ আগস্ট চট্টগ্রামের ষোলশহরে সৈয়দ বাড়িতে জন্মগ্রহণ করেন।
- তিনি ফেনি স্কুলের ছাত্রাবস্থায় ‘ভোরের আলো’ নামে হাতে লেখ পত্রিকার সম্পাদনা করেন।
- তাঁর প্রকাশিত প্রথম গল্প ‘হঠাৎ আলোর ঝলকানি’। এটি ঢাকা কলেজ ম্যাগাজিনে প্রকাশিত হয়।
- ১৯৪৫ থেকে ১৯৪৭ পর্যন্ত কলকাতার ‘দৈনিক স্টেটসম্যান’ পত্রিকার সহকারী সম্পাদক হিসেবে তিনি দায়িত্ব পালন করেন।
- তারঁ রচিত প্রথম উপন্যাস ‘লালসালু’ (১৯৪৮)।

• তাঁর রচিত অন্যান্য উপন্যাস:
- চাঁদের অমাবস্যা,
- কাঁদো নদী কাঁদো।
- দি আগলি এশিয়ান।

• তাঁর রচিত গল্পগ্রন্থ:
- নয়নচারা,
- দুই তীর ও অন্যান্য গল্প।

• তাঁর রচিত নাটক:
- বহিপীর,
- তরঙ্গভঙ্গ,
- উজান মৃত্যু।

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

১১৮.
'চৌচির' শব্দের অর্থ কোনটি?
  1. খণ্ডে খণ্ডে বিভক্ত
  2. খণ্ডবিখণ্ড
  3. চার খণ্ডে বা অংশে বিভক্ত
  4. উপরের সবগুলোই
সঠিক উত্তর:
উপরের সবগুলোই
উত্তর
সঠিক উত্তর:
উপরের সবগুলোই
ব্যাখ্যা

• বাংলা একাডেমি আধুনিক বানান অভিধান অনুসারে,
'চৌচির' শব্দের অর্থ- খণ্ডে খণ্ডে বিভক্ত; খণ্ডবিখণ্ড; চার খণ্ডে বা অংশে বিভক্ত।
অর্থ্যাৎ, সঠিক উত্তর - অপশন (ঘ)।



আরো কিছু শব্দার্থ:
- আভরণ শব্দের অর্থ - অলঙ্কার,
- আভাষ শব্দের অর্থ - ভূমিকা বা আলাপ,
- ‘সওগাত’ শব্দের অর্থ - উপঢৌকন; উপহার,
- আশীষ শব্দের অর্থ- শীর্ষ পর্যন্ত,
- আশি শব্দের অর্থ- ৮০ সংখ্যা,
- আশী শব্দের অর্থ- বিষদাঁত।

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

১১৯.
নিচের কোনটি যৌগিক ক্রিয়ার উদাহরণ?
  1. গরম করা
  2. উদয় হওয়া
  3. এগিয়ে চলা
  4. ঠনঠন করা
সঠিক উত্তর:
এগিয়ে চলা
উত্তর
সঠিক উত্তর:
এগিয়ে চলা
ব্যাখ্যা

• যৌগিক ক্রিয়ার উদাহরণ - এগিয়ে চলা।
-------------------------------
• যৌগিক ক্রিয়া:
অসমাপিকা ক্রিয়ার সঙ্গে সমাপিকা ক্রিয়া যুক্ত হয়ে যখন একটি ক্রিয়া গঠন করে, তখন তাকে যৌগিক ক্রিয়া বলে।
যেমন
- মরে যাওয়া,
- কমে আসা,
- এগিয়ে চলা,
- হেসে ওঠা,
- উঠে পড়া,
- পেয়ে বসা, ইত্যাদি।

অন্যদিকে,
সংযোগ ক্রিয়া:
বিশেষ্য, বিশেষণ বা ধ্বন্যাত্মক শব্দের পরে করা, কাটা, হওয়া, দেওয়া, ধরা, পাওয়া, খাওয়া, মারা প্রভৃতি ক্রিয়া যুক্ত হয়ে সংযোগ ক্রিয়া গঠিত হয়।
যেমন-
গরম করা, গান করা, উদয় হওয়া, ঠনঠন করা, বৃদ্ধি পাওয়া ইত্যাদি।

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

১২০.
"Have an axe to grind" means to _____.
  1. have a selfish reason
  2. have work for charity
  3. have preparation for the fight
  4. have a great goal
সঠিক উত্তর:
have a selfish reason
উত্তর
সঠিক উত্তর:
have a selfish reason
ব্যাখ্যা

• "Have an axe to grind" means to have a selfish reason.

• To have an axe/ax to grind (idiom):
- English Meaning: to have a selfish reason or strong opinion that influences your actions; an ulterior often selfish underlying purpose.
- Bangla Meaning: (লাক্ষণিক) ব্যক্তিস্বার্থ থাকা।

Example Sentences:
- Environmentalists have no political axe to grind - they just want to save the planet.
- The study should be conducted by a firm that has no axe to grind.

Source:
1. Cambridge Dictionary.
2. Merriam-Webster Dictionary.

১২১.
Neither of the two men wants ____ son educated.
  1. them
  2. his
  3. their
  4. its
সঠিক উত্তর:
his
উত্তর
সঠিক উত্তর:
his
ব্যাখ্যা

• Complete sentence: Neither of the two men wants his son educated.
- Bangla meaning: দুজনের কেউই চান না যে তার ছেলে শিক্ষিত হোক।

• One of, Each of, Either of, Neither of ইত্যাদি singular subjects হিসেবে ব্যবহৃত হয়, তাই এর পরে singular possessive pronoun (his, her, or its) বসে।
- Either দ্বারা দুইয়ের প্রত্যেকটি বুঝানো হয়।
- Neither দ্বারা দুইয়ের কোনটিই নয় বুঝানো হয়।

- প্রদত্ত বাক্যে "men" is masculine gender, তাই সঠিক possessive pronoun টি হবে- his.

অন্য অপশনগুলোর বিশ্লেষণ:
ক) them → "them" হলো object pronoun, not possessive.

গ) their → "their" হলো plural কিন্তু এখানে subject হলো singular.

ঘ) its → "its" ব্যবহৃত হয় non-human subjects (animals, objects) -এর জন্য।

১২২.
She slept very little that night.
Here, the underlined word 'little' is a/an-
  1. Noun
  2. Pronoun
  3. Adjective
  4. Adverb
সঠিক উত্তর:
Adverb
উত্তর
সঠিক উত্তর:
Adverb
ব্যাখ্যা

• She slept very little that night.
- Here, the underlined word 'little' is an Adverb.

- Here, 'little' modifies the verb "slept" by describing how much she slept.
- অর্থাৎ, 'little' এখানে "slept" verb টিকে modify করায় adverb হিসেবে কাজ করছে।
- "slept" verb টিকে How much দ্বারা প্রশ্ন করলে উত্তর পাওয়া যায় Very little.

• Little (adverb)
- English Meaning: not much; in only a small quantity or degree: slightly; not at all.
- Bangla Meaning: অতিসামান্য।

• Adverb:
- যেসব word noun বা pronoun ছাড়া অন্য যেকোন parts of speech, বিশেষ করে verb কে modify করে সেগুলোকে adverb বলে।
- Adverb সাধারণত Verb, Adjective কিংবা অন্য কোনো Adverb কে modify করে।
- বাক্যে Verb কে কোথায়, কখন, কীভাবে, কেন, কতটুকু, কতবার, ইত্যাদি দ্বারা প্রশ্ন করলে যে উত্তর পাওয়া যায়, তাই হলো adverb.

অন্যদিকে,
- 'Little' শব্দটি "ছোট; যথেষ্ট নয়; সামান্য পরিমাণে মাত্র" অর্থে- noun, pronoun, adjective হিসেবেও ব্যবহৃত হতে পারে। যেমন:
• Little (noun)
- Example: She felt better after she'd eaten a little.

• Little (pronoun)
- Example: Little has changed.

• Little (adjective)
- Example: He gave a little smile.

Source:
1. Cambridge Dictionary.
2. Merriam-Webster Dictionary.

১২৩.
Pick out the correctly spelt word:
  1. Remittance
  2. Remmitance
  3. Remmittance
  4. Rammitance
সঠিক উত্তর:
Remittance
উত্তর
সঠিক উত্তর:
Remittance
ব্যাখ্যা

• The correct spelling is - ক) Remittance.

• Remittance (Noun)
- English Meaning: Money that is sent by a foreign worker back to their own country.
- Bangla Meaning: অর্থপ্রেরণ; প্রেরিত অর্থ; প্রবাসী শ্রমিকের পাঠানো অর্থ।

• Ex. Sentence: Bangladesh receive most of its remittances from the middle east.
- Bangla Meaning: বাংলাদেশ তার বেশিরভাগ রেমিট্যান্স মধ্যপ্রাচ্য থেকে পায়।

- অন্যদিকে, বাকি অপশনের word গুলোর spelling ভুল।

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

১২৪.
Who is the heroine character of 'Hamlet'?
  1. Desdemona
  2. Portia
  3. Ophelia
  4. Cordelia
সঠিক উত্তর:
Ophelia
উত্তর
সঠিক উত্তর:
Ophelia
ব্যাখ্যা

• Ophelia is the heroine character of 'Hamlet'.

• Hamlet:
- Shakespeare রচিত tragedy গুলোর মধ্যে Hamlet is one of the most celebrated tragedies in English literature.
- তাঁর অন্যান্য tragedy গুলোর মত এটিও 5acts বিশিষ্ট।
- ১৫৯৯-১৬০১ সালের মধ্যে লেখা এই tragedy টি প্রকাশিত হয় ১৬০৩ সালে।
- এর কেন্দ্রীয় চরিত্র Hamlet ছিলেন prince of Denmark যিনি জার্মানি থেকে নিজ দেশে ফিরে আসে তাঁর বাবার শেষকৃত্যে অংশগ্রহণ করতে এবং জানতে পারে যে তার চাচা Claudius তার মাকে বিয়ে করেছে এবং এই চাচাই তার বাবার খুনী।
- সত্য উদঘাটনের পর বিভিন্ন ঘটনা প্রবাহের মধ্যে দিয়ে tragedy এর কাহিনী সামনে এগিয়ে যায় এবং শেষাংশে Hamlet এর মৃত্যুর মধ্যে দিয়ে এর সমাপ্তি ঘটে।

• Main characters:
- King Hamlet,
- Hamlet (Prince of Denmark),
- Ophelia (Heroine),
- Claudius (Hamlet's uncle),
- Gertrude (Queen),
- Horatio (Loyal and Best friend of Hamlet),
- Polonius (Ophelia's Father),
- Laertes (Ophelia's brother), etc.

• Famous quotations from Hamlet:
- "To be or not to be that is the question."
- "Frailty, thy name is woman."
- "Brevity is the soul of wit."
- "Listen to many, speak to a few."
- "Though this be madness, yet there is method in't."
- "Conscience does make cowards of us all."
- "One may smile, and smile, and be a villain."
- "There's a divinity that shapes our ends,
Rough-hew them how we will."
- "There is nothing either good or bad, but thinking makes it so."
- "There are more things in heaven and earth, Horatio,
Than are dreamt of in your philosophy."

• William Shakespeare (1564-1616):
- William Shakespeare একাধারে একজন English poet, dramatist এবং actor.
- তাকে 'English National Poet' বলা হয়।
- Stratford-upon-Avon -এ জন্মগ্রহণ করেছেন বলে তাকে Bard of Avon বা Swan of Avon বলা হয়।
- তাকে অনেকেই সর্বকালের সর্বশ্রেষ্ঠ নাট্যকার হিসেবে বিবেচনা করেন।
- Shakespeare occupies a unique position in world literature.
- William Shakespeare মূলত তাঁর Drama and Sonnet -এর জন্য পরিচিত।
- তিনি মোট ১৫৪ টি sonnet এবং ৩৭ টি play লিখেছেন।
- এছাড়া তিনি Long narrative poem ও লিখেছেন।

অন্যদিকে,
ক) Desdemona (Heroine) is from Othello.

খ) Portia (Heroine) is from The Merchant of Venice.

ঘ) Cordelia (One of three daughters) is from King Lear.

Source:
1. Britannica.
2. An ABC of English Literature by Dr. M. Mofizar Rahman.

১২৫.
Identify the synonym for 'Succumb'.
  1. Conquer
  2. Obdurate
  3. Submit
  4. Endure
সঠিক উত্তর:
Submit
উত্তর
সঠিক উত্তর:
Submit
ব্যাখ্যা

• The synonym for 'Succumb' is Submit.

• Succumb (Verb)
- English meaning: Fail to resist pressure, temptation, or some other negative force; die from the effect of a disease or injury.
- Bangla Meaning: (প্রলোভন, তোষামোদ ইত্যাদির) বশীভূত হওয়া; দমিয়া যাওয়া; মারা যাওয়া; আত্মসমর্পণ করা।

• Given options:
ক) Conquer - জয় করা; শক্তিবলে দখল করা; কারো ভালোবাসা, প্রশংসা ইত্যাদি অর্জন করা।

খ) Obdurate - একগুঁয়ে; অনমনীয়; অনুশোচনাহীন।

গ) Submit - আনুগত্য/অধীনতা/বশ্যতা স্বীকার করা; অনুবর্তী হওয়া; আত্মসমর্পণ করা; পেশ/দাখিল করা।

ঘ) Endure - দুঃখকষ্ট ভোগ করা; টিকে থাকা; স্থায়ী হওয়া।

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

১২৬.
George Bernard Shaw is the author of-
  1. The Family Reunion
  2. A Farewell to Arms
  3. No Man's Land
  4. Arms and the Man
সঠিক উত্তর:
Arms and the Man
উত্তর
সঠিক উত্তর:
Arms and the Man
ব্যাখ্যা

• George Bernard Shaw is the author of 'Arms and the Man'.

• Arms and the Man:
- এটি George Bernard Shaw রচিত একটি জনপ্রিয় নাটক।
- এটি একটি Romantic comedy, যা যুদ্ধ, প্রেম এবং মানব স্বভাবের উপর satire করে।
- এই নাটকটি ১৮৯৪ সালে মঞ্চস্থ হয় এবং ১৮৯৮ সালে প্রকাশিত হয়।
- এই নাটকটির settings হলো- Bulgaria -এর Petkoff household.
- নাটকটি যুদ্ধ এবং প্রেমের বিষয় নিয়ে গড়ে উঠেছে। এতে মূলত যুদ্ধের গৌরব এবং বাস্তবতার মধ্যে একটি বৈপরীত্য তুলে ধরা হয়েছে।
- নাটকের কেন্দ্রবিন্দুতে একজন সৈনিক এবং একজন উচ্চশ্রেণীর মহিলা রয়েছেন, এবং তাদের মধ্যে সম্পর্কের জটিলতা নাটকটিকে কৌতুকপূর্ণ এবং মজাদার করে তোলে।
- এটি George Bernard Shaw -এর রচনা ও নাট্যকর্মের একটি উল্লেখযোগ্য উদাহরণ।

• Main Characters:
- Captain Bluntschli,
- Raina Petkoff,
- Major Sergius Saranoff,
- Major Petkoff,
- Catherine Petkoff, etc.

• ​G. B. Shaw (1856-1950):
- তার পুরো নাম George Bernard Shaw.
- George Bernard Shaw 'Modern period' এর একজন Irish নাট্যকার এবং সাহিত্য সমালোচক।
- তিনি ১৯২৫ সালে নোবেল পুরস্কার পান।
- G.B. Shaw ছিলেন Fabian Society এর একজন সদস্য।
- তাঁর উপাধি হলো - The greatest modern English dramatist এবং তাঁকে The father of modern English literature বলা হয়।

​• Famous Plays of G.B. Shaw:
- Pygmalion (Romantic play),
- Man and Superman (Comedy play),
- Major Barbara (Social satire),
- Mrs. Warren's Profession (play),
- Arms and the Man (Romantic comedy),
- Heartbreak House (comedy play),
- Caesar and Cleopatra (play/tragedy),
- The Doctor's Dilemma (satire drama/play, Epilogue),
​- St. Joan of Arc,
- Candida,
- Geneva,
- You Never Can Tell,
- Androcles and the Lion,
- The Devil’s Disciple,
- Too True to Be Good,
- Widowers’ Houses,
- The Apple Cart,
- Buoyant Billions, etc.

অন্যদিকে,

ক) The Family Reunion is a play by T. S. Eliot.

খ) A Farewell to Arms is a novel by Ernest Hemingway.

গ) No Man's Land is a play by Harold Pinter.

Source:
1. Britannica.
2. Goodreads.

১২৭.
He left us waiting for his reply.
Here, 'waiting' is-
  1. Gerund
  2. Participle
  3. Infinitive
  4. Finite verb
সঠিক উত্তর:
Participle
উত্তর
সঠিক উত্তর:
Participle
ব্যাখ্যা

• He left us waiting for his reply.
- Here, 'waiting' is a Participle.

- Here, "waiting" functions as a present participle (adjective) that modifies the pronoun "us".
- অর্থাৎ, 'waiting' এখানে object "us" কে modify করায় adjective হিসেবে কাজ করছে, তাই এটি present participle.
- "Waiting" functions as an object complement that describes the state of the object "us" after the action of the verb "left".
- অর্থাৎ, verb+ing যখন noun/pronoun কে modify করে তখন তা adjective হিসেবে কাজ করে।
- এখানে বলা হয়েছে, সে আমাদের তার উত্তরের অপেক্ষায় (waiting → ongoing action) রেখে চলে গেল।

• Participle:
- A participle is a verb that ends in -ing (present participle) or -ed, -d, -t, -en, -n (past participle).
- Participles may function as adjectives, describing or modifying nouns/pronouns.
- Participle একই সাথে Verb ও Adjective এর কাজ করে।

• Participle মূলত তিন প্রকার। যথা:
1. Present participle:
- Verb -এর সাথে ing যোগ হয়ে যদি adjective -এর কাজ করে অর্থাৎ, একই সাথে Verb ও adjective -এর কাজ করে, তাহলে তাকে present participle বলে।
- সহজ ভাষায় → present participle হলো Verb + ing = adjective = Verb + adjective কাজ করে।
- Present participle দ্বারা চলমান sense বোঝায়।
- যেমন: I saw a flying kite.

2. Past participle:
- সাধারণত verb এর সাথে -ed যোগ করে তৈরি হয় (যেমন: played, walked), তবে অপ্রচলিত verb এর আলাদা রূপ থাকে (যেমন: eaten, driven, seen)।
- এটি perfect tense এবং passive voice তৈরিতে ব্যবহৃত হয়, এবং adjective হিসেবেও ব্যবহৃত হতে পারে।
- যেমন: The broken house needs fixing.

3. Perfect participle:
- এটি having + past participle দ্বারা তৈরি হয় (যেমন: having eaten, having seen)। এটি এমন বোঝাতে ব্যবহৃত হয় যে, একটি কাজ অন্য কাজের আগে সম্পন্ন হয়েছিল।
- যেমন: Having finished the task, he left.

Source: High School English Grammar and Composition by Wren And Martin.

১২৮.
The opposite of 'Spendthrift'-
  1. Wasteful
  2. Disdainful
  3. Tightfisted
  4. Imprudent
সঠিক উত্তর:
Tightfisted
উত্তর
সঠিক উত্তর:
Tightfisted
ব্যাখ্যা

The opposite of 'Spendthrift'- Tightfisted.

• Spendthrift (Noun, adjective)
- English Meaning: Spending money or resources freely and recklessly; wastefully extravagant.
- Bangla Meaning: অতিব্যয়ী; অপব্যয়ী; অপচেতা; অকৃপণ; মুক্তহন্ত; অপব্যয়ী ব্যক্তি।

• Synonyms:
- Wasteful (অপচয়ী), Extravagant (অপচয়কর), Waster (অমিতব্যয়ী), Prodigal (অপব্যয়ী; অপচয়ী; অমিতব্যয়ী)।
• Antonyms:
- Thrifty (মিতব্যয়ী), Parsimonious (ব্যয়কুণ্ঠ; কৃপণ), Mean (সংকীর্ণমনা), Miserly (কৃপন), Tight-fisted (ব্যয়কুন্ঠ)

অন্যদিকে,
- Disdainful - ঘৃণাপূর্ণ; তাচ্ছিল্যপূর্ণ।
- Imprudent - অবিমৃষ্যকারী; অবিবেচক; অবিচক্ষণ; হঠকারী।

- সুতরাং, অপশনের অর্থ বিবেচনা করে দেখা যায়, The opposite of 'Spendthrift'- Tightfisted.

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

১২৯.
Pick the correct verb form:
Do not let these children ____ in the sun.
  1. have playing
  2. play
  3. to play
  4. playing
সঠিক উত্তর:
play
উত্তর
সঠিক উত্তর:
play
ব্যাখ্যা

• Complete sentence: Do not let these children play in the sun.
- Bangla: এই বাচ্চাদের রোদে খেলতে দিও না।

• Causative Verb:

- যে Verb গুলোর সাহায্যে বাক্যের Subject নিজে কাজ না করে অন্যকে দিয়ে কাজ করায় সেই Verb গুলোকে বলা হয় causative verb.
- Have, Get, Help, Let, Make ইত্যাদি হলো বহুল প্রচলিত causative verb.
- এগুলোর সাহায্যে অনেক verb- কে causative verb -এ পরিণত করা যায়।

• Causative Verb হিসাবে 'let' -এর ব্যবহার:
- Let এরপরে কোনো ব্যক্তিবাচক object (Action doer) থাকলে এরপরে verb -এর base form বসে।
- Let এরপরে কোনো বস্তুবাচক object (Action receiver) থাকলে এরপরে be + verb -এর past participle form বসে।

• Structure:
1. Subject + let (any tense) + action doer + verb -এর base form + ext.
2. Subject + let (any tense) + action receiver + be + verb -এর past participle + ext.

- তাই প্রদত্ত শূন্যস্থানে সঠিক verb টি হবে- play.

১৩০.
A semi-autobiographical novel, 'Of Human Bondage' was written by-
  1. William Somerset Maugham
  2. William Faulkner
  3. Victor Hugo
  4. Joseph Conrad
সঠিক উত্তর:
William Somerset Maugham
উত্তর
সঠিক উত্তর:
William Somerset Maugham
ব্যাখ্যা

• A semi-autobiographical novel, 'Of Human Bondage' was written by William Somerset Maugham.

• Of Human Bondage:
- William Somerset Maugham রচিত ‘Of Human Bondage’ হলো একটি semi-autobiographical novel.
- এটি ১৯১৫ সালে প্রকাশিত হয় এবং লেখকের অন্যতম শ্রেষ্ঠ রচনা হিসেবে বিবেচিত।
- এতে মানুষের দুর্বলতা, ভালবাসা ও আত্মনিয়ন্ত্রণ নিয়ে গভীর আলোচনা করা হয়েছে।

• Short Summary:
- এই উপন্যাসে মূল চরিত্র ফিলিপ কেরি (Philip Carey)-এর জীবনকাহিনি বর্ণিত হয়েছে। ছোটবেলায় বাবা-মাকে হারিয়ে সে অনাথ হয়ে যায় এবং তার খোঁড়া পা (clubfoot) থাকার কারণে সবসময় হীনমন্যতায় ভোগে। ফিলিপ জীবনে নানা পথ খুঁজে বেড়ায়—ধর্ম, শিল্প, চিকিৎসা—কিন্তু কোথাও পূর্ণতা খুঁজে পায় না।

- লন্ডনে মেডিকেল ছাত্র থাকাকালীন সবচেয়ে বড় মোড় আসে যখন সে Mildred নামের এক নিষ্ঠুর ও স্বার্থপর waitress -এর প্রেমে পড়ে।মিলড্রেডের সঙ্গে সম্পর্ক তাকে বারবার ভেঙে ফেলে, কিন্তু শেষ পর্যন্ত জীবনের অর্থ ও স্বাধীনতা খুঁজে পেতে সে শিখে নেয়— মানুষ আসলে আবেগ ও আসক্তির দাস।

• Main characters:
- Philip Carey,
- Mildred Rogers,
- Sally Athelny,
- Thorpe Athelny, etc.

• William Somerset Maugham (1874-1965):
- William Somerset Maugham ছিলেন একজন প্রখ্যাত ইংরেজী লেখক, নাট্যকার এবং উপন্যাসিক।
- তিনি চিকিৎসাবিদ্যায় প্রশিক্ষণ নিলেও লেখালেখিকেই পেশা হিসেবে বেছে নেন।
- তাঁর চিকিৎসা অভিজ্ঞতা তার লেখায় গভীর প্রভাব ফেলেছে।
- তবে ১৯১৫ সালে প্রকাশিত তাঁর আত্মজীবনীভিত্তিক উপন্যাস Of Human Bondage তাঁকে প্রকৃত খ্যাতি এনে দেয়।
- তাঁর ছোটগল্পগুলো বিশেষভাবে জনপ্রিয়, যেখানে প্রায়ই উপনিবেশিক পটভূমিতে মানুষের মনস্তত্ত্ব, দুর্বলতা ও সম্পর্ক তুলে ধরা হয়েছে।
- Maugham তাঁর পরিষ্কার ভাষা, বাস্তবধর্মী বর্ণনা ও চরিত্র বিশ্লেষণের জন্য বিখ্যাত ছিলেন।
- তার লেখায় মানব প্রকৃতি, সামাজিক সম্পর্ক, এবং জীবনের জটিলতা সম্পর্কে গভীর অন্তর্দৃষ্টি পাওয়া যায়।

• Notable works (Novels):
- Liza of Lambeth,
- Of Human Bondage,
- The Sacred Flames,
- The Razor's Edge,
- Cakes and Ale,
- The Musician,
- The Moon and Sixpence,
- Lady Frederick, etc.

• Short Stories:
- The Ant and the Grasshopper,
- The Luncheon.

Source:
1. Britannica.
2. SparkNotes.

১৩১.
The news that you heard yesterday is known to all.
Here, the underlined part is a/an-
  1. Noun clause
  2. Relative clause
  3. Co-ordinate clause
  4. Principal clause
সঠিক উত্তর:
Relative clause
উত্তর
সঠিক উত্তর:
Relative clause
ব্যাখ্যা

• The news that you heard yesterday is known to all.
- Here, the underlined part is a Relative clause/adjective clause.

- এখানে, "that you heard yesterday" clause টি "news" noun টিকে modify করছে (by specifying which news is being referred to).
- It answers the question: Which news? → The news that you heard yesterday.

• Structure:
- Main clause: The news is known to all.
- Relative clause: that you heard yesterday (dependent clause describing "news").

• Adjective clause/Relative clause:
- যেসব sub-ordinate clause বাক্যে ব্যবহার হয়ে adjective এর কাজ করে তাদেরকে Adjective clause বলে।
- অর্থাৎ, যে clause টি বাক্যে noun/pronoun -এর পরে বসে ঐ noun/pronoun -কে modify করে তাকে adjective clause বলে।
- Adjective clause -কে Relative clause ও বলা হয়।
- Relative clause গুলো সাধারণত Relative pronoun (that, which, who, whose, whom, why, when) ইত্যাদি দ্বারা শুরু হয়।
- তবে মনে রাখতে হবে, who এবং which দ্বারা গঠিত clause টি যদি cause or purpose বোঝায় তবে সেটি Adverbial Clause হিসেবে বিবেচিত হবে।

- Adjective clause দুইটি স্থানে বসতে পারে:
1. Subject এর post-modifier হিসেবে- (Subject + adjective clause + verb + object).
- যেমন: The house where I grew up is now for sale.
2. Noun এর post-modifier হিসেবে- (Subject + verb + noun + adjective clause).
- যেমন: She wore the dress which was on sale.

• Note:
- Noun -এর পরে That যুক্ত clause টি Noun clause এবং Adjective clause উভয়ই হতে পারে।
• কখন Noun clause?
- Noun বা pronoun -এর apposition হিসেবে সাধারণত News, Hope, Belief, Fact, Rumour, ইত্যাদির পরে Noun Clause বসে।
- Apposition বলতে এমন কিছু বোঝায়, যা কোনো Noun বা pronoun সম্পর্কে অতিরিক্ত তথ্য প্রদান করে।
- এই অতিরিক্ত তথ্য noun/pronoun কে modify করে না। তাই তা adjective clause হবে না।
- যেমন: The news that Rajib got married took everyone by surprise.
- এই বাক্যে That যুক্ত clause টি 'News' সম্পর্কে অতিরিক্ত তথ্য প্রদান করছে, 'News' কে modify করছে না।
- Noun clause এর ক্ষেত্রে অর্থের দিক থেকে লক্ষ্য করলে "এটাই সেটা" এরকম তথ্য পাওয়া যায়।
- যেমন: 'that Rajib got married' টাই এখানে news.
- Noun clause এর ক্ষেত্রে আগের noun phrase টিকে বাদ দিলেও অর্থ ঠিক থাকে, কিন্তু that কে উঠিয়ে দেওয়া যায় না।
- যেমন: That Rajib got married took everyone by surprise.

• কখন Adjective clause?
- যখন noun/pronoun কে modify করে (দোষ, গুণ, সংখ্যা, পরিমাণ, ইত্যাদি বুঝায়) তখন adjective clause হয়।
- যেমন: The news that you heard yesterday is known to all.
- এই বাক্যে That যুক্ত clause টি 'News' কে modify করছে, অর্থাৎ, news কে describe করছে (that you heard yesterday).
- Adjective clause এর ক্ষেত্রে that -এর পরের clause টির অর্থ পরিপূর্ণ হয় না, এবং এক্ষেত্রে that কে উঠিয়ে দেওয়া যায়।
- যেমন: The news you heard yesterday is known to all.

অন্যদিকে,
• Co-ordinate clause:

- Joins two independent clauses by Co-ordinating conjunctions (yet, but, or, otherwise, and).
- যেমন: The news is true, and everyone knows it.

• Principal clause:

- An independent clause that can stand alone.
- যে সকল clause তাদের অর্থ প্রকাশের জন্য অন্য কোনো clause এর উপর নির্ভরশীল নয় তাদের principal clause বলে।
- আধুনিক English Grammar এ Simple sentence কেও clause বলা হয় কারণ Simple sentence গুলাে সর্বদাই principal clause হয়ে থাকে।
- Principal clause কে আবার Main clause বা Independent clause ও বলা হয়।
- যেমন: Because it was raining, we stayed indoors.

১৩২.
______ the day went on, the weather worsened.
  1. Just
  2. As
  3. Unless
  4. So
সঠিক উত্তর:
As
উত্তর
সঠিক উত্তর:
As
ব্যাখ্যা

• Complete sentence: As the day went on, the weather worsened.
- Bangla meaning: দিন যতই গড়িয়েছে, আবহাওয়া ততই খারাপ হয়েছে।

- বাক্যটিতে দুটি clause কে যুক্ত করতে এমন একটি conjunction প্রয়োজন যা progression of time দেখায়।
- অর্থাৎ, সময়ের অগ্রগতির সাথে সাথে অন্য clause -এর কাজটিও ঘটে।

- As is used to mean "while" or "during the time that", indicating that two actions are happening simultaneously and one is affecting the other.
- অর্থাৎ, Conjunction হিসেবে As (while; when; during the time that) - যখন; চলাকালীন; যতই অর্থে ব্যবহৃত হয়।
- তাই, এখানে সঠিক উত্তর হবে- As.

• As (conjunction)
- English Meaning: while; when; during the time that.
- Bangla Meaning: যখন; চলাকালীন; যতই।

অন্যদিকে,
ক) Just
- ঠিক; মাত্র; ন্যায্য; যুক্তিযুক্ত ইত্যাদি অর্থে (adjective, adverb) হিসেবে ব্যবহৃত হয়।
- যেমন: This is just what I expected.

গ) Unless
- except if 'যদি না' অর্থে এটি শর্ত বোঝাতে conjunction হিসেবে ব্যবহৃত হয়।
- এটি নিজেই negative অর্থ প্রদান করে।
- এজন্যে unless দ্বারা যে clause শুরু হয় তাতে no বা not বসে না।
- যেমন: Do not punish him unless he behaves roughly.

ঘ) So
- সুতরাং; অতএব; সে-কারণে; সেই জন্য ইত্যাদি অর্থে conjunction হিসেবে ব্যবহৃত হয়।
- It Indicates result of previous clause.
- যেমন: Nobody answered my knock, so I went away.

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

১৩৩.
The term "Pedagogy" refers to-
  1. The method of political rule.
  2. The art or profession of teaching.
  3. The art or science of teaching adults.
  4. The branch of medicine dealing with children.
সঠিক উত্তর:
The art or profession of teaching.
উত্তর
সঠিক উত্তর:
The art or profession of teaching.
ব্যাখ্যা

• The term "Pedagogy" refers to- The art or profession of teaching.

• Pedagogy (noun):
- English Meaning: The art, science, or profession of teaching; the study of the methods and activities of teaching.
- Bangla Meaning: শিক্ষণবিজ্ঞান।(আনুষ্ঠানিক) স্কুলশিক্ষক; শিক্ষকতার পেশা।

অন্যদিকে,
• Demagogy:
- English Meaning: the methods or practices of a demagogue; the method of political rule as demagogy.
- Bangla Meaning: বক্তৃতাসর্বস্ব/গলাবাজির রাজনীতি।

• Andragogy:
- English Meaning: The art or science of teaching adults.
- Bangla Meaning: বয়স্কশিক্ষা।

• Pediatric:
- English Meaning: The branch of medicine dealing with children.
- Bangla Meaning: শিশুচিকিৎসা।

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

১৩৪.
A note added at the end of a letter after it is signed is called _____ .
  1. Corrigendum
  2. Nota bene
  3. Postscript
  4. Footnote
সঠিক উত্তর:
Postscript
উত্তর
সঠিক উত্তর:
Postscript
ব্যাখ্যা

• A note added at the end of a letter after it is signed is called a Postscript.

• Postscript:
- A note or series of notes appended to a completed letter, article, or book.
- চিঠিতে স্বাক্ষরের পর যুক্ত অত্তিরিক্ত বার্তা বা বাক্যাবলীকে বলা হয় - Postscript.
- একে সংক্ষিপ্ত ভাবে - PS বলে।
- It comes from the Latin - postscriptum, which literally means “written after.”
- যার বাংলা অর্থ- পুনশ্চ, পত্রের পুনশ্চ লিখন।

• অন্যদিকে,
• Corrigendum:
- English Meaning: A thing to be corrected, typically an error in a printed book.
- Bangla Meaning: সংশোধনীয় বিষয়।

• Nota bene:
- English Meaning: —used to call attention to something important.
- Bangla Meaning: (সংক্ষেপ NB) সতর্কতার সঙ্গে লক্ষ করুন; লক্ষণীয়।

• Footnote:
- English Meaning: A note of reference, explanation, or comment usually placed below the text on a printed page.
- Bangla Meaning: পাদটীকা।

১৩৫.
Identify the correct sentence:
  1. She insisted with seeing her lawyer.
  2. She insisted in seeing her lawyer.
  3. She insisted on seeing her lawyer.
  4. She insisted to seeing her lawyer.
সঠিক উত্তর:
She insisted on seeing her lawyer.
উত্তর
সঠিক উত্তর:
She insisted on seeing her lawyer.
ব্যাখ্যা

• Correct sentence: She insisted on seeing her lawyer.

• Insist on doing something
- English Meaning: to demand something or say forcefully that you want something.
- Bangla Meaning: কোনো কিছুতে জোর দেয়া বা পীড়াপীড়ি করা।

- Insist on/upon এর পরে noun/gerund (-ing form of a verb) বসে।

More Examples:
- He insisted on my going there.
- She insists on doing everything her own way.

Source:
1. Cambridge Dictionary.
2. Merriam-Webster Dictionary.

১৩৬.
'পরিবেশ ও জীব-বৈচিত্র্য সংরক্ষণ ও উন্নয়ন' সংবিধানের কোন অনুচ্ছেদে বর্ণিত আছে?
  1. ১৮ক নং অনুচ্ছেদ
  2. ১৮ নং অনুচ্ছেদ
  3. ২২ নং অনুচ্ছেদ
  4. ২৪ নং অনুচ্ছেদ
সঠিক উত্তর:
১৮ক নং অনুচ্ছেদ
উত্তর
সঠিক উত্তর:
১৮ক নং অনুচ্ছেদ
ব্যাখ্যা

'পরিবেশ ও জীব-বৈচিত্র্য সংরক্ষণ ও উন্নয়ন' সংবিধানের ১৮ক নং অনুচ্ছেদে বর্ণিত আছে।

সংবিধানের ১৮(ক) নং অনুচ্ছেদ:
- রাষ্ট্র বর্তমান ও ভবিষ্যৎ নাগরিকদের জন্য পরিবেশ সংরক্ষণ ও উন্নয়ন করিবেন এবং প্রাকৃতিক সম্পদ, জীব- বৈচিত্র্য, জলাভূমি, বন ও বন্যপ্রাণির সংরক্ষণ ও নিরাপত্তা বিধান করবেন।

অন্যদিকে -
- গণপ্রজাতন্ত্রী বাংলাদেশের সংবিধানের ১৮ নং অনুচ্ছেদে জনস্বাস্থ্য এবং নৈতিকতা সম্পর্কে বলা হয়েছে।
- গণপ্রজাতন্ত্রী বাংলাদেশের সংবিধানের ২২ নং অনুচ্ছেদে রাষ্ট্রের নির্বাহী বিভাগসমূহ থেকে বিচারবিভাগের পৃথকীকরণের কথা বলা হয়েছে।
- ২৪ নং অনুচ্ছেদ : জাতীয় স্মৃতি নিদর্শন প্রভৃতি।

উৎস: বাংলাদেশের সংবিধান।

১৩৭.
বাংলার শেষ নবাব সিরাজউদ্দৌলা কোন যুদ্ধে পরাজিত হয়েছিলেন?
  1. বক্সারের যুদ্ধ
  2. কর্ণাটকের যুদ্ধ
  3. এলাহাবাদের যুদ্ধ
  4. পলাশী যুদ্ধ
সঠিক উত্তর:
পলাশী যুদ্ধ
উত্তর
সঠিক উত্তর:
পলাশী যুদ্ধ
ব্যাখ্যা

বাংলার শেষ নবাব সিরাজউদ্দৌলা পলাশী যুদ্ধে পরাজিত হয়েছিলেন।

পলাশী যুদ্ধ:
- নবাব সিরাজউদ্দৌলা ও ইস্ট ইন্ডিয়া কোম্পানির মধ্যে ১৭৫৭ সালের ২৩ জুন যে যুদ্ধ সংঘটিত হয়েছিল তাই পলাশীর যুদ্ধ নামে পরিচিত।
- এ যুদ্ধ আট ঘণ্টার মতো স্থায়ী ছিল।
- প্রধান সেনাপতি মীরজাফরের বিশ্বাসঘাতকতার কারণে নবাব সিরাজউদ্দৌলা কোম্পানি কর্তৃক পরাজিত হন।
- এ যুদ্ধের রাজনৈতিক ফলাফল ছিল সুদূরপ্রসারী ও ধ্বংসাত্মক।
- এর ফলে বাংলায় ব্রিটিশ শাসনের ভিত্তি প্রতিষ্ঠিত হয়।

⇒ ১৭৫৭ খ্রিস্টাব্দে ২৩ জুন ভাগীরথী নদীর তীরে পলাশীর আমবাগানে নবাব সিরাজউদ্দৌলার সঙ্গে ইংরেজ সেনাপতি রবার্ট ক্লাইভের যুদ্ধ হয়।
- এই যুদ্ধে নবাবের পক্ষে ছিলেন দেশপ্রেমিক মীরমদন, মোহন লাল এবং ফরাসি সেনাপতি সিনফ্রে। নবাবের পক্ষে সৈন্যসংখ্যা ছিল প্রায় ৬৫ হাজার।
- ইস্ট ইন্ডিয়া কোম্পানির পক্ষে ছিল মাত্র ৩ হাজার।
- জেতার সব ধরণের সুযোগ সুবিধার পরও নবাব পরাজিত হন তার সেনাপতি মীরজাফরের বিশ্বাসঘাতকতার কারণে।
- যুদ্ধের ফলে মীরজাফরকে বাংলার সিংহাসনে বসালেও প্রকৃত ক্ষমতা ছিল রবার্ট ক্লাইভের হাতে।
- ইংরেজরা বাংলায় একচেটিয়া ব্যবসা-বাণিজ্যের সুযোগ পায়।
- অপরদিকে ফরাসিরা এদেশ ছাড়তে বাধ্য হয়।
- এ ভাবেই এ যুদ্ধে বাংলা তথা ভারতের স্বাধীনতা ভূলুণ্ঠিত হয়।

উল্লেখ্য,
- বাংলার শেষ স্বাধীন নবাব ছিলেন সিরাজউদ্দৌলা।
- তিনি ১৭৫৭ সালের ২৩ শে জুন ইংরেজদের নিকট পলাশী যুদ্ধে পরাজিত হন। এর ফলে বাংলার স্বাধীনতার সমাপ্তি ঘটে।

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

১৩৮.
জাতীয় শিল্পনীতি ২০২২ অনুসারে, বৃহৎ শিল্পে কতজনের অধিক শ্রমিক কাজ করে?
  1. ২০০
  2. ২৩০
  3. ২৫০
  4. ৩০০
সঠিক উত্তর:
৩০০
উত্তর
সঠিক উত্তর:
৩০০
ব্যাখ্যা

জাতীয় শিল্পনীতি:
- সর্বশেষ জাতীয় শিল্পনীতি ২০২২ অনুসারে এসএমই ও অন্যান্য শিল্প প্রতিষ্ঠান/উদ্যোগ এর শ্রেণিবিন্যাস -

⇒ বৃহৎ শিল্প (Large scale industries):
- উৎপাদনের ক্ষেত্রে ‘বৃহৎ শিল্প’ (Large Industry) বলতে সেসব শিল্প প্রতিষ্ঠানকে বোঝাবে যেসব প্রতিষ্ঠানে জমি এবং কারখানা ভবন ব্যতীত স্থায়ী সম্পদের মূল্য প্রতিস্থাপন ব্যয়সহ (Replacement Cost) ৫০ কোটি টাকার অধিক কিংবা তৈরী পোশাক/শ্রমঘন শিল্প প্রতিষ্ঠান ব্যতীত যেসব শিল্প প্রতিষ্ঠানে ৩০০ জনের অধিক শ্রমিক নিয়োজিত রয়েছে। যে সকল তৈরী পোশাক/শ্রমঘন শিল্প প্রতিষ্ঠানের শ্রমিকের সংখ্যা ১০০০ এর অধিক কেবল সে সকল তৈরি পোশাক শিল্প বৃহৎ শিল্পের অন্তর্ভুক্ত হবে।
- সেবা শিল্পের ক্ষেত্রে ‘বৃহৎ শিল্প’ বলতে সেসব শিল্প প্রতিষ্ঠানকে বোঝাবে যেসব প্রতিষ্ঠানে জমি এবং কারখানা ভবন ব্যতিরেকে স্থায়ী সম্পদের মূল্য প্রতিস্থাপন ব্যয়সহ ৩০ কোটি টাকার অধিক কিংবা যেসব শিল্প প্রতিষ্ঠানে ১২০ জনের অধিক শ্রমিক নিয়োজিত রয়েছে।

উৎস: ক্ষুদ্র ও মাঝারি শিল্প ফাউন্ডেশন ওয়েবসাইট।

১৩৯.
বাংলাবান্ধা স্থলবন্দর কোন জেলায় অবস্থিত?
  1. পঞ্চগড়
  2. নীলফামারী
  3. চাঁপাইনবাবগঞ্জ
  4. দিনাজপুর
সঠিক উত্তর:
পঞ্চগড়
উত্তর
সঠিক উত্তর:
পঞ্চগড়
ব্যাখ্যা

বাংলাবান্ধা স্থলবন্দর:
- বাংলাবান্ধা স্থলবন্দরটি বাংলাদেশের পঞ্চগড় জেলার তেতুলিয়া উপজেলার বাংলাবান্ধা সীমান্তে অবস্থিত।
- এর বিপরীতে পশ্চিমবঙ্গের জলপাইগুড়ি জেলার ফুলবাড়ী সীমান্ত অবস্থিত।
- স্থলপথে আমদানি রপ্তানি সহজ করার জন্য ১২ জানুয়ারি, ২০০২ সালে বাংলাবান্ধা শুল্ক স্টেশনটিকে স্থলবন্দর ঘোষনা করা হয়।

⇒ বিভিন্ন স্থলবন্দরের নাম ও অবস্থান:
- বেনাপোল স্থলবন্দর: বেনাপোল, শার্শা, যশোর।
- সোনা মসজিদ স্থল বন্দর: চাঁপাইনবাবগঞ্জ।
- হিলি স্থলবন্দর: দিনাজপুর।
- ভোমরা স্থলবন্দর: সাতক্ষীরা।
- বুড়িমারী স্থলবন্দর: পাটগ্রাম, লালমনিরহাট।
- আখাউড়া স্থলবন্দর: আখাউড়া, বাহ্মনবাড়িয়া।
- নাকুগাঁও স্থলবন্দর: নালিতাবাড়ী, শেরপুর।
- তামাবিল স্থলবন্দর: গোয়াইনঘাট সিলেট।
- সোনাহাট স্থলবন্দর: ভুরুঙ্গামারী, কুড়িগ্রাম।
- দর্শনা স্থলবন্দর: দামুরহুদা, চুয়াডাঙ্গা।
- বিলোনিয়া স্থলবন্দর: বিলোনিয়া, ফেনী।

উৎস: বাংলাদেশ স্থলবন্দর কর্তৃপক্ষ।

১৪০.
জুলাই ঘোষণাপত্রে জুলাই গণঅভ্যুত্থানের সকল শহীদদের কী নামে আখ্যায়িত করা হয়েছে?
  1. জাতীয় সৈনিক
  2. জুলাই বীর
  3. জাতীয় বীর
  4. জুলাই সৈনিক
সঠিক উত্তর:
জাতীয় বীর
উত্তর
সঠিক উত্তর:
জাতীয় বীর
ব্যাখ্যা

জুলাই ঘোষণাপত্র:
- ‘জুলাই ঘোষণাপত্র’ হলো ২০২৪ সালের জুলাইয়ের গণ-অভ্যুত্থানের একটি দলিল যার মাধ্যমে জুলাই গণ-অভ্যুত্থানকে রাষ্ট্রীয় ও সাংবিধানিকভাবে স্বীকৃতি দেওয়া হবে।
- অন্যদিকে জুলাই জাতীয় সনদ হলো রাষ্ট্রের বিভিন্ন ক্ষেত্রে সংস্কার প্রস্তাব বাস্তবায়নে ঐকমত্যের একটি রাজনৈতিক দলিল।
- অন্তর্বর্তী সরকারের প্রধান উপদেষ্টা অধ্যাপক মুহাম্মদ ইউনূস ৫ আগস্ট, ২০২৫ তারিখে র ‘৩৬ জুলাই উদ্‌যাপন’ শীর্ষক অনুষ্ঠানে জুলাই ঘোষণাপত্র পাঠ করেছেন।

⇒ জুলাই ঘোষণাপত্রে ২৮টি ধারা অন্তর্ভুক্ত রয়েছে।
- জুলাই ঘোষণাপত্রের ২৪ নং ধারায় জুলাই গণঅভ্যুত্থানের সকল শহীদদের 'জাতীয় বীর' হিসেবে আখ্যায়িত করা হয়েছে।
- ২৪ নং ধারা: সেহেতু বাংলাদেশের জনগণ জুলাই গণ-অভ্যুত্থানের সকল শহীদদের জাতীয় বীর হিসেবে ঘোষণা করে শহীদদের পরিবার, আহত যোদ্ধা এবং আন্দোলনকারী ছাত্রজনতাকে প্রয়োজনীয় সকল আইনি সুরক্ষা দেওয়ার অভিপ্রায় ব্যক্ত করছে।

উৎস: প্রথম আলো।

১৪১.
বর্তমানে বাংলাদেশের চামড়াজাত পণ্যের সবচেয়ে বড় বাজার কোন দেশ? (অক্টোবর ২০২৫)
  1. যুক্তরাষ্ট্র
  2. যুক্তরাজ্য
  3. জার্মানি
  4. স্পেন
সঠিক উত্তর:
যুক্তরাষ্ট্র
উত্তর
সঠিক উত্তর:
যুক্তরাষ্ট্র
ব্যাখ্যা

দ্বিতীয় শীর্ষ রপ্তানি খাত:
- তৈরি পোশাকের পর দ্বিতীয় শীর্ষ রপ্তানি খাত চামড়া ও চামড়াজাত পণ্য।
- রপ্তানি উন্নয়ন ব্যুরোর (ইপিবি) তথ্য অনুযায়ী, ২০২৪-২৫ অর্থবছরে চামড়া ও চামড়াজাত পণ্য রপ্তানি হয়েছে ৩৪ কোটি মার্কিন ডলার।

উল্লেখ্য,
- বাংলাদেশের তৈরি চামড়া ও চামড়াবিহীন জুতা এবং চামড়া পণ্যের সবচেয়ে বড় বাজার যুক্তরাষ্ট্র।
- বিদায়ী ২০২৪-২৫ অর্থবছরে ৩৪ কোটি ডলারের চামড়াজাত পণ্য রপ্তানি হয়েছে। এর মধ্যে যুক্তরাষ্ট্রে ৯ কোটি ডলারের চামড়াজাত পণ্য রপ্তানি হয়েছে। তার বাইরে ভারতে ৭ কোটি ১৯ লাখ, জাপানে ৫ কোটি ৬৩ লাখ ও বেলজিয়ামে ২ কোটি ৮২ লাখ ডলারের চামড়াজাত পণ্য রপ্তানি হয়।
- চামড়া ও চামড়াজাত পণ্যের বাজার বিস্তারের জন্য ২০১৭ সালে ট্যানারি শিল্পের স্থানান্তর করা হয় সাভারের হেমায়েতপুরে।

উৎস: প্রথম আলো। [link]

১৪২.
কত সালে বাংলাদেশ গুমবিরোধী আন্তর্জাতিক সনদে স্বাক্ষর করেছে?
  1. ২০১২ সালে
  2. ২০১৪ সালে
  3. ২০১৮ সালে
  4. ২০২৪ সালে
সঠিক উত্তর:
২০২৪ সালে
উত্তর
সঠিক উত্তর:
২০২৪ সালে
ব্যাখ্যা

গুমবিরোধী আন্তর্জাতিক সনদ (ICPPED):
- ICPPED-এর পূর্ণরূপ: International Convention for the Protection of All Persons from Enforced Disappearance.
- স্বাক্ষরিত হয়: ২০ ডিসেম্বর, ২০০৬।
- কার্যকর হয়: ২৩ ডিসেম্বর, ২০১০।
- ICPPED জাতিসংঘের আওতাধীন একমাত্র আন্তর্জাতিক কনভেনশন যা এনফোর্স ডিসএপিয়ান্সকে কেন্দ্র করে গৃহীত হয়েছে, যার লক্ষ্য হলো গুম বন্ধের পাশাপাশি এই অপরাধের জন্য দায়মুক্তি বন্ধ করা, ন্যায়বিচার প্রতিষ্ঠা ও ক্ষতিগ্রস্ত ব্যক্তিদের সহায়তা দেওয়া।
- সনদে মোট ৪৫টি অনুচ্ছেদ আছে।
- ৩০ আগস্ট আন্তর্জাতিক গুমবিরোধী দিবস।

⇒ আগস্ট ২৯, ২০২৪ তারিখে বাংলাদেশ গুমবিরোধী আন্তর্জাতিক সনদে স্বাক্ষর করেছে।

উৎস: i) OHCHR ওয়েবসাইট।
ii) UNTC ওয়েবসাইট।

১৪৩.
দেশের ইতিহাসে প্রথম নারী শিক্ষা সচিব কে?
  1. রেহানা পারভীন
  2. জোবায়দা আক্তার
  3. সেলিনা বেগম
  4. নাজনিন খাতুন
সঠিক উত্তর:
রেহানা পারভীন
উত্তর
সঠিক উত্তর:
রেহানা পারভীন
ব্যাখ্যা

প্রথম নারী শিক্ষা সচিব:
- বাংলাদেশের ইতিহাসে প্রথম নারী শিক্ষা সচিব রেহানা পারভীন।

⇒ শিক্ষা মন্ত্রণালয়ের মাধ্যমিক ও উচ্চশিক্ষা বিভাগের নতুন সচিব হয়েছেন রেহানা পারভীন।
- তিনি এর আগে জাতীয় দক্ষতা উন্নয়ন কর্তৃপক্ষের (এনএসডিএ) নির্বাহী চেয়ারম্যান (সচিব) হিসেবে দায়িত্ব পালন করছিলেন।
- ১৮ আগস্ট, ২০২৫ জনপ্রশাসন মন্ত্রণালয় থেকে প্রজ্ঞাপন জারির মাধ্যমে রেহানা পারভীন আনুষ্ঠানিকভাবে দেশের প্রথম নারী শিক্ষা সচিব হিসেবে দায়িত্ব পেলেন।

উল্লেখ্য,
- শিক্ষা মন্ত্রণালয়কে ২০১৬ সালের নভেম্বরে দুটি বিভাগে ভাগ করা হয়।
- একটি হলো মাধ্যমিক ও উচ্চশিক্ষা বিভাগ এবং অন্যটি কারিগরি ও মাদ্রাসা শিক্ষা বিভাগ।
- ১৯৭১ সালের স্বাধীনতার পর থেকে অবিভক্ত শিক্ষা মন্ত্রণালয়ে মোট ৩৩ জন সিনিয়র সচিব ও সচিব দায়িত্ব পালন করেছেন।
- বিভাগ বিভক্ত হওয়ার পর মাধ্যমিক ও উচ্চশিক্ষা বিভাগে এখন পর্যন্ত সাতজন সিনিয়র সচিব ও সচিব দায়িত্ব পালন করলেও তাদের কেউ নারী ছিলেন না।

উৎস: প্রথম আলো।

১৪৪.
ব্যাংক কোম্পানি আইন কত সালে কার্যকর করা হয়?
  1. ১৯৭২ সালে
  2. ১৯৭৬ সালে
  3. ১৯৯১ সালে
  4. ১৯৯৯ সালে
সঠিক উত্তর:
১৯৯১ সালে
উত্তর
সঠিক উত্তর:
১৯৯১ সালে
ব্যাখ্যা

ব্যাংক-কোম্পানী আইন:
- ব্যাংক-কোম্পানী আইন ১৯৯১ সালে কার্যকর হয়।

⇒ ব্যাংক কোম্পানী আইন, ১৯৯১ বাংলাদেশে ব্যাংকিং খাতের নিয়ন্ত্রণ, পরিচালনা এবং কার্যক্রম নিয়ন্ত্রণের জন্য প্রণীত একটি আইন।
- এটি ব্যাংক-কোম্পানীগুলোর কার্যক্রম, শেয়ার, পরিচালনা পর্ষদ, লাইসেন্স, নিরীক্ষা এবং বাংলাদেশ ব্যাংকের ক্ষমতার বিষয়ে বিধান প্রদান করে।
- উদ্দেশ্য: ব্যাংক-কোম্পানীগুলোর কার্যক্রম নিয়ন্ত্রণ এবং অর্থনৈতিক স্থিতিশীলতা নিশ্চিত করা এবং জনস্বার্থ রক্ষা এবং ব্যাংকিং ব্যবস্থার স্বচ্ছতা ও দক্ষতা বৃদ্ধি।

উল্লেখ্য,
- ২০২৩ সালে এই আইনের অধিকতর সংশোধন করা হয়েছে, যাতে ব্যাংকিং ব্যবস্থাকে আরও আধুনিক ও স্বচ্ছ করা হয়।

উৎস: বাংলাদেশ ব্যাংক ওয়েবসাইট।

১৪৫.
বাংলাদেশ সরকার কত সালে 'ধূমপান ও তামাকজাত দ্রব্য ব্যবহার (নিয়ন্ত্রণ) আইন' প্রণয়ন করে?
  1. ২০০৫ সালে
  2. ২০০৭ সালে
  3. ২০০৮ সালে
  4. ২০১১ সালে
সঠিক উত্তর:
২০০৫ সালে
উত্তর
সঠিক উত্তর:
২০০৫ সালে
ব্যাখ্যা

ধূমপান ও তামাকজাত দ্রব্য ব্যবহার (নিয়ন্ত্রণ) আইন:
- বাংলাদেশ সরকার ২০০৫ সালে 'ধূমপান ও তামাকজাত দ্রব্য ব্যবহার (নিয়ন্ত্রণ) আইন' প্রণয়ন করে।

⇒ বাংলাদেশ সরকার ২০০৩ সালে বিশ্ব স্বাস্থ্য সংস্থার উদ্যোগে গৃহীত আন্তর্জাতিক চুক্তি এফসিটিসিতে (ফ্রেমওয়ার্ক কনভেনশন অন টোব্যাকো কন্ট্রোল) স্বাক্ষর করে।
- চুক্তির বিধানসমূহ প্রতিপালনে সরকার পরবর্তী সময়ে ২০০৫ সালে তামাক নিয়ন্ত্রণ আইন প্রণয়ন করে।
- এই আইনের ৪ ধারার ১ উপধারায় স্পষ্টভাবে বলা আছে, কোনো ব্যক্তি কোনো পাবলিক প্লেস ও পাবলিক পরিবহনে ধূমপান করতে পারবেন না, অর্থাৎ উন্মুক্ত স্থানে ধূমপান নিষিদ্ধ করা হয়েছে।

উৎস: i) ধূমপান ও তামাকজাত দ্রব্য নিয়ন্ত্রণ আইন, ২০০৫।
ii) প্রথম আলো।

১৪৬.
বাংলাদেশের অভিবাসী নারী শ্রমিকদের সর্বাধিক গন্তব্যস্থল কোন দেশ? (অক্টোবর ২০২৫)
  1. সৌদি আরব
  2. সংযুক্ত আরব আমিরাত
  3. জর্ডান
  4. লেবানন
সঠিক উত্তর:
সৌদি আরব
উত্তর
সঠিক উত্তর:
সৌদি আরব
ব্যাখ্যা

বাংলাদেশের অভিবাসী নারী শ্রমিকদের সর্বাধিক গন্তব্যস্থল:
- বাংলাদেশ জনশক্তি কর্মসংস্থান ও প্রশিক্ষণ ব্যুরোর (বিএমইটি) তথ্য মতে, বাংলাদেশের অভিবাসী নারী শ্রমিকদের সবচেয়ে বড় গন্তব্যস্থল মধ্যপ্রাচ্যের দেশগুলো।
- এর মধ্যে অভিবাসী নারী শ্রমিকরা সবচেয়ে বড় গন্তব্যস্থল সৌদি আরব।
- মোট নারী অভিবাসীর ৭২ শতাংশের গন্তব্য হলো সৌদি আরব।

এছাড়াও,
- অভিবাসী নারী শ্রমিকদের ২য় বড় গন্তব্যস্থল জর্ডান (১৮%)।
- অভিবাসী নারী শ্রমিকদের ৩য় বড় গন্তব্যস্থল কাতার (১৮%)।
- কুয়েত ও সংযুক্ত আরব আমিরাতে গন্তব্যের পরিমাণ ১%।

উৎস: BMET ওয়েবসাইট।

১৪৭.
বাংলাদেশের সিভিল সার্ভিস (বিসিএস) পরীক্ষা সর্বপ্রথম শুরু হয় -
  1. ১৯৭২ সালে
  2. ১৯৭৩ সালে
  3. ১৯৭৪ সালে
  4. ১৯৭৫ সালে
সঠিক উত্তর:
১৯৭৩ সালে
উত্তর
সঠিক উত্তর:
১৯৭৩ সালে
ব্যাখ্যা

বাংলাদেশ সিভিল সার্ভিস:
- BCS-এর পূর্ণরূপ: বাংলাদেশ সিভিল সার্ভিস (Bangladesh Civil Service)।
- বাংলাদেশ সিভিল সার্ভিসে কর্মকর্তা বা ক্যাডার নিয়োগের পরীক্ষাকে বলা হয় বিসিএস পরীক্ষা (BCS Examination)।
বাংলাদেশ কর্ম কমিশন (Bangladesh Public Service Commission – BPSC) দ্বারা এই পরীক্ষা গৃহীত হয়ে থাকে।

⇒ বাংলাদেশ সিভিল সার্ভিস যা ভারতীয় উপমহাদেশে ব্রিটিশ শাসন আমলের ইম্পেরিয়াল সিভিল সার্ভিস থেকে উদ্ভুত হয়েছে।
- জনগণের ভোটে নির্বাচিত নীতিনির্ধারকদের প্রণীত নীতি মাঠ পর্যায়ে বাস্তবায়নের জন্য বাংলাদেশ কর্ম কমিশন বা বাংলাদেশ পাবলিক সার্ভিস কমিশন (বিপিএসসি) কতৃক নিয়োগকৃত যে বেসামরিক কর্মকর্তা বা কর্মচারিরা কাজ করেন, তাদেরকেই বিসিএস ক্যাডার (BCS Cadre) বলা হয়।
- বাংলাদেশ সিভিল সার্ভিসে নিয়োগ পরীক্ষা গ্রহণের জন্য প্রণীত বিসিএস (বয়স, যোগ্যতা ও সরাসরি নিয়োগের জন্য পরীক্ষা) বিধিমালা-২০১৪ অনুযায়ী বিসিএস-এর নিম্নোক্ত ২৬টি ক্যাডারে উপযুক্ত প্রার্থী নিয়োগের উদ্দেশ্যে কমিশন কর্তৃক ৩ স্তরবিশিষ্ট পরীক্ষা গ্রহণ করা হয়। বাছাই পরীক্ষা হয় তিন ধাপে। ধাপগুলো হলো- প্রিলিমিনারি, লিখিত ও মৌখিক পরীক্ষা।

⇒ বাংলাদেশের সিভিল সার্ভিস (বিসিএস) পরীক্ষা সর্বপ্রথম শুরু হয় ১৯৭৩ সালে। স্বাধীনতার পর সেই বছর বাংলাদেশ সরকারি কর্ম কমিশন (BPSC) প্রথমবারের মতো বিসিএস-এর মাধ্যমে নিয়োগ কার্যক্রম পরিচালনা করে। তবে তখনকার পরীক্ষা ছিল শুধুমাত্র মৌখিক (viva-voce) ভিত্তিক। এরপর পর্যায়ক্রমে লিখিত ও মৌখিক পরীক্ষার সমন্বয়ে পূর্ণাঙ্গ বিসিএস পরীক্ষা চালু হয়।
- বাংলাদেশের প্রথম বিসিএস ক্যাডার মুক্তিযোদ্ধা খন্দকার আবুল কালাম।

উল্লেখ্য,
- ১৯৭২ সালের ডিসেম্বর মাসে বাংলাদেশের সংবিধান গৃহীত হয়। সংবিধান অনুযায়ী বাংলাদেশকে এককেন্দ্রিক রাষ্ট্র ঘোষণা করা হয়। তার ফলে কেন্দ্রীয় পর্যায়ের চাকরির প্রয়োজনীয়তা শেষ হয়ে যায়। সংবিধানে সিভিল সার্ভিস শব্দটা ব্যবহার করা হয় নি, তবে সকল শ্রেণীর সিভিল সার্ভেন্টকে প্রজাতন্ত্রের চাকরিতে নিয়োজিত ব্যক্তি বলে উল্লেখ করা হয়েছে। চাকরি সংক্রান্ত প্রাসঙ্গিক অধ্যায় (১৩৬ নং অনুচ্ছেদে) অন্যান্য বিষয়ের মধ্যে দুটি গুরুত্বপূর্ণ বিষয় আছে। প্রথম, এই অনুচ্ছেদে সিভিল সার্ভিসের সদস্যদের চাকরির শর্তাবলি নিয়ন্ত্রণে প্রয়োজনীয় আইন প্রণয়নের ক্ষমতা সংসদকে দেয়া হয়েছে। দ্বিতীয়, এতে সরকারকে সিভিল সার্ভিস পুনর্গঠন করার এবং সিভিল সার্ভিস সদস্যদের অসুবিধা ঘটতে পারে চাকরির এমন শর্তাবলি পরিবর্তন করারও ক্ষমতা দেয়া হয়েছে।

⇒ পাকিস্তান আমল থেকে উত্তরাধিকার সূত্রে প্রাপ্ত এই সিভিল সার্ভিসকে পুনর্গঠিত করার কাজেও সরকার হাত দেয়। এই লক্ষ্যে সরকার প্রশাসনিক ও চাকরি পুনর্গঠন কমিটি (এএসআরসি, ১৯৭৩) নামে একটি কমিটি গঠন করে। ঢাকা বিশ্ববিদ্যালয়ের উপাচার্য অধ্যাপক এম.এ চৌধুরী ছিলেন এই কমিটির প্রধান। চাকরি পুনর্গঠনে সরকারের ক্ষমতাকে কার্যকারিতা দেয়ার জন্য ১৯৭৫ সালে চাকরি (পুনর্গঠন ও শর্তাবলী) অধ্যাদেশ এবং এতদসংক্রান্ত একটা আইন জারি করা হয়। এই ক্যাডারের রিক্রুটমেন্ট করা হয়েছিল ১৯৭৩ সালে, তবে বিধিবিধান প্রণীত হয়েছিল ১৯৭৬ সালে।

উৎস: i) বাংলাদেশ সরকারী কর্ম কমিশন।
ii) বাংলাপিডিয়া।
iii) প্রথম আলো।

১৪৮.
রাজনৈতিক দল ও প্রার্থীর আচরণ বিধিমালা, ২০২৫ অনুসারে, নির্বাচনী আচরণ বিধিমালা লঙ্ঘনে সর্বোচ্চ জরিমাণা কত?
  1. ৫০ হাজার টাকা
  2. ৮০ হাজার টাকা
  3. ১ লক্ষ টাকা
  4. ১.৫ লক্ষ টাকা
সঠিক উত্তর:
১.৫ লক্ষ টাকা
উত্তর
সঠিক উত্তর:
১.৫ লক্ষ টাকা
ব্যাখ্যা

রাজনৈতিক দল ও প্রার্থীর আচরণ বিধিমালা, ২০২৫:
- ‘গণপ্রতিনিধিত্ব আদেশ ১৯৭২ এর সংশ্লিষ্ট অনুচ্ছেদ, যথাযথ কর্তৃপক্ষ কর্তৃক সংশোধন সাপেক্ষে, নির্বাচন কমিশন ‘রিপ্রেজেন্টেশন অব দ্য পিপল অর্ডার, ১৯৭২ (পি.ও নং ১৫৫ অফ ১৯৭২)’ এর আর্টিকেল ৯১বি এর আলোকে রাজনৈতিক দল ও প্রার্থীর আচরণ বিধিমালা-২০২৫ এর একটি খসড়া চূড়ান্ত অনুমোদন দিয়েছে।
- ২৯ জুন, ২০২৫ তারিখে ত্রয়োদশ জাতীয় সংসদ নির্বাচন সামনে রেখে রাজনৈতিক দল ও প্রার্থীর আচরণ বিধিমালা-২০২৫ এর খসড়া চূড়ান্ত করেছে নির্বাচন কমিশন (ইসি)। ‘রাজনৈতিক দল ও প্রার্থীর আচরণ বিধিমালা, ২০০৮’-এর আলোকে এ খসড়া চূড়ান্ত করা হয়েছে। যেখানে সংসদ নির্বাচনে রাজনৈতিক দল ও প্রার্থীদের আচরণ কেমন হবে, তা নিয়ে বেশ কিছু নতুন বিষয় সংযোজন করেছে কমিশন।

• মাইকে গণসংযোগের সময় শব্দের মাত্রা ৬০ ডেসিবেলে রাখতে হবে। প্রচারণার সময় তিন সপ্তাহ থাকছে। টিভিতে সংলাপের সুযোগ রাখা হয়েছে।
• যেসব প্রার্থী শিক্ষাপ্রতিষ্ঠানের সভাপতি বা সদস্য হিসেবে পরিচালনা পর্ষদে থাকবেন বা মনোনীত হয়েছেন বলে সিদ্ধান্ত হয়েছে, প্রার্থিতা চূড়ান্ত হওয়ার পর সেখান থেকে তাদের পদত্যাগ করতে হবে।
• নির্বাচনী আচরণ বিধিমালা লঙ্ঘনে যে নরমাল শাস্তি ছিল, ছয় মাস কারাদণ্ড ও সর্বোচ্চ ৫০ হাজার টাকা জরিমানা, এবার জরিমানা বাড়িয়ে সর্বোচ্চ দেড় লাখ টাকার প্রস্তাব রয়েছে।
• নির্বাচনি প্রচারণায় অপচনশীল দ্রব্য যেমন- রেক্সিন, পলিথিন, প্লাস্টিকসহ পরিবেশের জন্য ক্ষতিকর কোন উপাদানে তৈরি কোন নির্বাচনি প্রচারপত্র, লিফলেট, হ্যান্ডবিল, ফেস্টুন ও ব্যানার ব্যবহার করা যাবে না।
• নির্বাচনে প্রার্থীরা সামাজিক যোগাযোগমাধ্যম ব্যবহার করে নির্বাচনি প্রচার প্রচারণা চালাতে পারবে না। তবে প্রার্থী বা তার এজেন্টের অ্যাকাউন্ট আইডি, ই-মেইল আইডি, সামাজিক যোগাযোগ মাধ্যমের নাম রিটার্নিং অফিসারের নিকট দাখিল করতে হবে।
• প্রার্থীরা নির্বাচনি প্রচারণায় দুপুর ২টা থেকে রাত ৮টা পর্যন্ত মাইক ব্যবহার করতে পারবেন। তবে ৩টির অধিক মাইক্রোফোন বা লাউড স্পিকার ব্যবহার করতে পারবে না।
• মসজিদ, মন্দির, গির্জা বা অন্য কোন ধর্মীয় উপাসনালয়ে কোন প্রকার নির্বাচনী প্রচারণা চালানো যাবে না।

উৎস: i) বাংলাদেশ নির্বাচন কমিশন ওয়েবসাইট।
ii) বাংলাদেশ সংবাদ সংস্থা।

১৪৯.
কোন মুঘল সম্রাটের শাসনামলে ঢাকা গেইট নির্মিত হয়েছে?
  1. সম্রাট আওরঙ্গজেব
  2. সম্রাট জাহাঙ্গীর
  3. সম্রাট আকবর
  4. সম্রাট বাবর
সঠিক উত্তর:
সম্রাট আওরঙ্গজেব
উত্তর
সঠিক উত্তর:
সম্রাট আওরঙ্গজেব
ব্যাখ্যা

ঢাকা গেইট:
- ঢাকা গেইট ঐতিহাসিক মোগল স্থাপত্য নিদর্শন।
- এটি ঢাকা বিশ্ববিদ্যালয়ের দোয়েল চত্বর এলাকার ঐতিহাসিক স্থাপনা।
- এটি মীর জুমলা গেইট, ময়মনসিংহ গেইট বা রমনা গেইট নামেও পরিচিত ছিল।
- 'ঢাকা গেইট' এর নির্মাতা হলেন 'মীর জুমলা'।
- সম্রাট আওরঙ্গজেবের শাসনামলে ঢাকা গেইট নির্মিত হয়েছে।

উল্লেখ্য,
- মুঘল সম্রাট আওরঙ্গজেবের সময়ে বাংলার গভর্নর হয়ে আসেন মীর জুমলা।
- মীর জুমলা ১৬৬০ থেকে ১৬৬৩ সালের মধ্যে ঢাকা গেইট নির্মাণ করেছিলেন।
- সীমানা চিহ্নিত করতে এবং স্থলপথে শত্রুদের আক্রমণ থেকে রক্ষা করতে এটি নির্মাণ করা হয়।
- সম্প্রতি ঢাকা গেট সংস্কার শেষে নতুন করে উদ্বোধন হয় ঐতিহাসিক ঢাকা গেইট।

উৎস: i) জাতীয় তথ্য বাতায়ন।
ii) বিবিসি বাংলা।

১৫০.
১৯৭১ সালে বাংলাদেশের মুক্তিযুদ্ধের পাকিস্তানের আত্মসমর্পণ দলিলটির শিরোনাম কী?
  1. ডিক্লারেশন অব ইন্ডিপেনডেন্স
  2. ইন্সট্রুমেন্ট অব সারেন্ডার
  3. এগ্রিমেন্ট অব বাংলাদেশ
  4. কোনটিই নয়
সঠিক উত্তর:
ইন্সট্রুমেন্ট অব সারেন্ডার
উত্তর
সঠিক উত্তর:
ইন্সট্রুমেন্ট অব সারেন্ডার
ব্যাখ্যা

পাকিস্তানের আত্মসমর্পণের দলিল: INSTRUMENT OF SURRENDER 1971
- ১৯৭১ সালে পাকিস্তানের আত্মসমর্পণ দলিলটির শিরোনাম INSTRUMENT OF SURRENDER.
- এটি তিন প্রস্থে প্রস্তুত করা হয়। একটি প্রস্থ ভারত সরকার এবং দ্বিতীয় প্রস্থ পাকিস্তান সরকারের কাছে সংরক্ষিত আছে। তৃতীয় প্রস্থটি রয়েছে ঢাকার শাহবাগে জাতীয় জাদুঘরে।
- ১৯৭১ সালের ১৬ ডিসেম্বর বিকেল পাঁচটা এক মিনিটে রমনা রেসকোর্সে (বর্তমান সোহরাওয়ার্দী উদ্যান) মুক্তিবাহিনী-মিত্রবাহিনী যৌথ কম্যান্ডের পক্ষে লেফটেন্যান্ট জেনারেল জগজিৎ সিং অরোরা এবং পাকিস্তান বাহিনীর পূর্বাঞ্চলীয় কমান্ডের পক্ষে লেফটেন্যান্ট জেনারেল নিয়াজী পাকিস্তানের আত্মসমপর্ণের দলিলে স্বাক্ষর করেন।

উল্লেখ্য,
- ১৬ ডিসেম্বর ১৯৭১ সকালে মানেকশ ভারতের পূর্বাঞ্চল বাহিনীর চিফ অব জেনারেল স্টাফ মেজর জেনারেল জে এফ আর জেকবকে আত্মসমর্পণের দলিল ও আনুষ্ঠানিকতা চূড়ান্ত করার জন্য ঢাকায় পাঠান। ১৬ ডিসেম্বর বিকালে ঢাকার রেসকোর্স ময়দানে (বর্তমান সোহ্রাওয়ার্দী উদ্যান) পাকিস্তান সামরিক বাহিনীর ৯৩ হাজার সৈন্য বিনা শর্তে সম্মিলিত বাহিনীর কাছে আত্মসমর্পণ করে।
- এই আত্মসমর্পণ দলিলে স্বাক্ষর করেন পূর্বাঞ্চলের সম্মিলিত বাহিনী প্রধান লেঃ জেনারেল জগজিত সিং অরোরা ও পাকিস্তান সেনাবাহিনীর পূর্বাঞ্চলীয় অধিনায়ক লেঃ জেঃ এ কে নিয়াজী।
- এই আত্মসমর্পণ অনুষ্ঠানে বাংলাদেশ সরকারের প্রতিনিধিত্ব করেন মুক্তিবাহিনীর উপ-সেনা প্রধান ও বিমান বাহিনী প্রধান গ্রুপ ক্যাপ্টেন এ কে খন্দকার।

এছাড়াও,
- এই অনুষ্ঠানে মুক্তিবাহিনীর নেতৃস্থানীয় ব্যক্তিদের মধ্যে আরও উপস্থিত ছিলেন এস ফোর্স অধিনায়ক লেঃ কর্নেল কে এম সফিউল্লাহ, ২নং সেক্টরের ভারপ্রাপ্ত অধিনায়ক মেজর এ টি এম হায়দার এবং টাঙ্গাইল মুক্তি বাহিনীর অধিনায়ক জনাব কাদের সিদ্দিকী।

উৎস: i) মুক্তিযুদ্ধ -ই - আর্কাইভ।
ii) বাংলাদেশের ইতিহাস ও বিশ্বসভ্যতা, নবম-দশম শ্ৰেণি।
iii) দৈনিক ইত্তেফাক।

১৫১.
ইলিশ মাছ জিআই (ভৌগোলিক নির্দেশক) পণ্য হিসেবে স্বীকৃতি পায় -
  1. ২০১৫ সালে
  2. ২০১৬ সালে
  3. ২০১৭ সালে
  4. ২০১৮ সালে
সঠিক উত্তর:
২০১৭ সালে
উত্তর
সঠিক উত্তর:
২০১৭ সালে
ব্যাখ্যা

জিআই (GI):
- জিআই (GI) এর পূর্ণরুপ হলো (Geographical indication) ভৌগলিক নির্দেশক।
- জাতিসংঘের সংস্থা WIPO (World Intellectual Property Organization) হলো জিআই পণ্যের স্বীকৃতি দানকারী প্রতিষ্ঠান।
- কোনো একটি দেশের নির্দিষ্ট ভূখণ্ডের মাটি, পানি, আবহাওয়ার প্রেক্ষাপটে সেখানকার জনগোষ্ঠীর সংস্কৃতি যদি কোনো একটি পণ্য উৎপাদনে সবচেয়ে গুরুত্বপূর্ণ ভূমিকা পালন করে, তাহলে সেটিকে সেই দেশের জিআই পণ্য হিসেবে স্বীকৃতি দেওয়া হয়।
- দেশে ভৌগোলিক নির্দেশক পণ্য (নিবন্ধন ও সুরক্ষা) আইন পাস হয় ২০১৩ সালে।
- দেশের প্রথম জিআই পণ্য হিসেবে নিবন্ধন পায় জামদানি।

⇒ ইলিশ মাছ জিআই (ভৌগোলিক নির্দেশক) পণ্য হিসেবে স্বীকৃতি পায় ২০১৭ সালে।
- বাংলাদেশের জিডিপিতে ইলিশ মাছের অবদান ১ শতাংশের বেশি। দেশের মৎস্য উৎপাদনে যার অংশ প্রায় ১১ শতাংশ। বিশ্বের মোট উৎপাদিত ইলিশের ৮০ শতাংশের বেশি আহরিত হয় বাংলাদেশের নদ-নদী, মোহনা ও সাগর থেকে।

উৎস: i) পেটেন্ট, ডিজাইন ও ট্রেডমার্কস অধিদপ্তর ওয়েবসাইট।
ii) প্রথম আলো।

১৫২.
সংবিধানের পঞ্চদশ সংশোধনীর মাধ্যমে কতটি ক্ষেত্রে সংযোজন, পরিমার্জন ও প্রতিস্থাপন আনা হয়েছিল?
  1. ২২টি
  2. ৩৪টি
  3. ৪২টি
  4. ৫৪টি
সঠিক উত্তর:
৫৪টি
উত্তর
সঠিক উত্তর:
৫৪টি
ব্যাখ্যা

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

উল্লেখ্য,
- পঞ্চদশ সংশোধনীর মাধ্যমে ৫৪টি ক্ষেত্রে সংযোজন, পরিমার্জন ও প্রতিস্থাপন আনা হয়েছিল।
- পঞ্চদশ সংশোধনীর মাধ্যমে আওয়ামী লীগ সরকার ১৪২ অনুচ্ছেদ থেকে ‘গণভোটের’ বিধান বাদ দিয়েছিল।
- এ ছাড়া পঞ্চদশ সংশোধনীর মাধ্যমে অসাংবিধানিকভাবে রাষ্ট্রক্ষমতা দখলকে রাষ্ট্রদ্রোহ অপরাধ বিবেচনায় নিয়ে সংশ্লিষ্ট ব্যক্তিকে রাষ্ট্রদ্রোহের অপরাধে দোষী সাব্যস্ত করে সর্বোচ্চ শাস্তির বিধানও যুক্ত করা হয়। আগে মেয়াদ শেষ হওয়ার পরবর্তী ৯০ দিনে নির্বাচন করার বিধান থাকলেও পঞ্চদশ সংশোধনীতে পূর্ববর্তী ৯০ দিনের মধ্যে নির্বাচন করার বিধান সংযোজন করা হয়।

উৎস: i) BBC.
ii) প্রথম আলো।

১৫৩.
শিক্ষা ও গবেষণায় ২০২৫ সালে স্বাধীনতা পুরস্কার লাভ করে কে?
  1. বদরুদ্দীন মোহাম্মদ উমর
  2. মীর আবদুস শুকুর আল মাহমুদ
  3. অধ্যাপক জামাল নজরুল ইসলাম
  4. মোহাম্মদ মাহবুবুল হক খান
সঠিক উত্তর:
বদরুদ্দীন মোহাম্মদ উমর
উত্তর
সঠিক উত্তর:
বদরুদ্দীন মোহাম্মদ উমর
ব্যাখ্যা

স্বাধীনতা পুরস্কার ২০২৫:
- জাতীয় পর্যায়ে গৌরবোজ্জ্বল ও কৃতিত্বপূর্ণ অবদানের স্বীকৃতি হিসেবে ৭ জন বিশিষ্ট ব্যক্তি ২০২৫ সালের স্বাধীনতা পুরস্কার পেয়েছেন।
- পুরস্কারপ্রাপ্ত প্রত্যেককে পাঁচ লাখ টাকা, ১৮ ক্যারেটের ৫০ গ্রাম ওজনের স্বর্ণের পদক, পদকের একটি রেপ্লিকা ও একটি সম্মাননাপত্র দেওয়া হবে।

⇒ স্বাধীনতা পুরস্কার ২০২৫ প্রাপ্ত:
- বিজ্ঞান ও প্রযুক্তি: অধ্যাপক জামাল নজরুল ইসলাম (মরণোত্তর),
- সাহিত্য: মীর আবদুস শুকুর আল মাহমুদ (মরণোত্তর),
- সংস্কৃতি: নভেরা আহমেদ (মরণোত্তর),
- সমাজসেবা: স্যার ফজলে হাসান আবেদ (মরণোত্তর),
- মুক্তিযুদ্ধ ও সংস্কৃতি: মোহাম্মদ মাহবুবুল হক খান ওরফে আজম খান (মরণোত্তর),
- শিক্ষা ও গবেষণা: বদরুদ্দীন মোহাম্মদ উমর,
- প্রতিবাদী তারুণ্য: আবরার ফাহাদ (মরণোত্তর)।

উল্লেখ্য,
- স্বাধীনতা পদক বাংলাদেশের সর্বোচ্চ রাষ্ট্রীয় পুরস্কার।
- মুক্তিযুদ্ধের বীর শহীদদের স্মরণে রাষ্ট্রীয় পর্যায়ে সর্বোচ্চ স্বীকৃতি স্বরূপ ১৯৭৭ সালে বাংলাদেশ সরকার এ পুরস্কার প্রবর্তন করে।
- এ পুরস্কার প্রদানের ক্ষেত্রগুলি হলো স্বাধীনতা ও মুক্তিযুদ্ধে স্মরণীয় অবদান, ভাষা আন্দোলনে অবদান, শিক্ষা, সাহিত্য, বিজ্ঞান ও প্রযুক্তি, চিকিৎসা বিজ্ঞান, সাংবাদিকতা, জনসেবা, সামাজিক বিজ্ঞান, সঙ্গীত, ক্রীড়া, চারুকলা ও পল্লী উন্নয়নে অবদান।
- প্রতিটি পুরস্কারের মান একটি স্বর্ণপদক, সম্মাননাপত্র এবং নগদ অর্থ।
- স্বাধীনতা দিবসের প্রাক্কালে এ পুরস্কার প্রদান করা হয়।

উৎস: সংস্কৃতি বিষয়ক মন্ত্রণালয়।

১৫৪.
জাতিসংঘ 'সনদ' কার্যকর হয় -
  1. ১৯৪৫ সালের ২৪ অক্টোবর
  2. ১৯৪৪ সালের ২৬ জুন
  3. ১৯৪৫ সালের ২৫ এপ্রিল
  4. ১৯৪৪ সালের ২৪ সেপ্টেম্বর
সঠিক উত্তর:
১৯৪৫ সালের ২৪ অক্টোবর
উত্তর
সঠিক উত্তর:
১৯৪৫ সালের ২৪ অক্টোবর
ব্যাখ্যা

জাতিসংঘের প্রতিষ্ঠা:
- ১৯৪৫ সালের ২৫ এপ্রিল-২৬ জুন ৫০টি দেশের প্রতিনিধিরা সানফ্রান্সিসকো শহরে মিলিত হন।
- ২৬ জুন ১১১টি ধারা সম্বলিত জাতিসংঘ সনদ অনুমোদিত হয়।
- জাতিসংঘ সনদ কার্যকর হয় ১৯৪৫ সালের ২৪ অক্টোবর।
- মোট ৫১টি দেশ মূল সনদে স্বাক্ষর করেছিল।
- এ কারণে এই ৫১টি দেশকে জাতিসংঘের প্রতিষ্ঠাকালীন সদস্য ধরা হয়।

উৎস: রাষ্ট্রবিজ্ঞান-৩, বিএ এবং বিএসএস প্রোগ্রাম, বাংলাদেশ উন্মুক্ত বিশ্ববিদ্যালয়।

১৫৫.
বর্তমানে আসিয়ান কতটি সদস্য রাষ্ট্রের সমন্বয়ে গঠিত? (অক্টোবর ২০২৫)
  1. ১০টি
  2. ১১টি
  3. ১২টি
  4. ১৩টি
সঠিক উত্তর:
১০টি
উত্তর
সঠিক উত্তর:
১০টি
ব্যাখ্যা

আসিয়ান (ASEAN):
- দক্ষিণ-পূর্ব এশিয়ার আঞ্চলিক সহযোগিতা সংস্থা।
- আসিয়ান (ASEAN) দক্ষিণ-পূর্ব এশিয়ার দশটি দেশের একটি আঞ্চলিক সংস্থা, যা ৮ আগস্ট ১৯৬৭ সালে ব্যাংকক, থাইল্যান্ডে প্রতিষ্ঠিত হয়।
- প্রতিষ্ঠাতা সদস্য: ইন্দোনেশিয়া, মালয়েশিয়া, ফিলিপাইন, সিঙ্গাপুর ও থাইল্যান্ড।
- পরবর্তীতে যোগদানকারী দেশ: ব্রুনাই দারুস সালাম, ভিয়েতনাম, লাওস, মিয়ানমার ও কম্বোডিয়া।
- বর্তমানে আসিয়ান ১০টি সদস্য রাষ্ট্রের সমন্বয়ে গঠিত।
- আসিয়ান অর্থনৈতিক, রাজনৈতিক ও সামাজিক সহযোগিতা বৃদ্ধির লক্ষ্যে কাজ করে যাচ্ছে।

উৎস: ASEAN ওয়েবসাইট।

১৫৬.
নিম্নের কোন সংস্থাটি 'Soft Loan Window' নামে পরিচিত?
  1. IMF
  2. IDA
  3. IDB
  4. IFC
সঠিক উত্তর:
IDA
উত্তর
সঠিক উত্তর:
IDA
ব্যাখ্যা

• IDA:
- IDA (International Development Association) প্রতিষ্ঠিত হয় ২৪ সেপ্টেম্বর, ১৯৬০ সালে।
- এটি সহজ শর্তে ঋণ প্রদান করে, তাই এটি 'International Soft Loan Window' নামে পরিচিত।
- IDA-এর মূল উদ্দেশ্য দারিদ্র্য নিয়ন্ত্রণ এবং বিকাশে সাহায্য করা।
- এটি উন্নত দেশগুলির জন্য অনুকূল শর্তে ঋণ প্রদান করে, যাতে তারা অর্থনৈতিক ও সামাজিক উন্নতি অর্জন করতে সক্ষম হতে পারে।
- বর্তমান সদস্য সংখ্যা: ১৭৫টি।
- সদরদপ্তর: ওয়াশিংটন ডিসি, মার্কিন যুক্তরাষ্ট্র।
- IDA জরুরি সহায়তা প্রদানের জন্য ২০০৭ সালে Crisis Response Window চালু করে।

উৎস: আইডিএ ওয়েবসাইট ও বিশ্বব্যাংক।

১৫৭.
'গ্লোবাল ফায়ারপাওয়ার ইনডেক্স ২০২৫ অনুযায়ী', বাংলাদেশের অবস্থান কততম? (অক্টোবর ২০২৫)
  1. ৩৭তম
  2. ৩৫তম
  3. ৩৯তম
  4. ৩৩তম
সঠিক উত্তর:
৩৫তম
উত্তর
সঠিক উত্তর:
৩৫তম
ব্যাখ্যা

গ্লোবাল ফায়ারপাওয়ার ইনডেক্স (GFP)- ২০২৫:
• সূচক নির্ধারণের প্রধান মানদণ্ড:
- সামরিক ইউনিটের সংখ্যা;
- আর্থিক সক্ষমতা;
- লজিস্টিক দক্ষতা;
- ভৌগোলিক পরিস্থিতি।

• শীর্ষ তিন সামরিক শক্তিধর দেশ:
১. যুক্তরাষ্ট্র – ১ম স্থান (স্কোর: ০.০৭৪৪);
২. রাশিয়া – ২য় স্থান (স্কোর: ০.০৭৮৮);
৩. চীন – ৩য় স্থান (স্কোর: ০.০৭৮৮)।

• বাংলাদেশের অবস্থান:
মোট দেশ: ১৪৫,
- বাংলাদেশের র‌্যাংক: ৩৫তম,
- পাওয়ার ইনডেক্স স্কোর: ০.৬০৬২।

সূত্র: গ্লোবাল ফায়ারপাওয়ার ইনডেক্স (GFP) ওয়েবসাইট।

১৫৮.
২০২৬ সালের ফিফা বিশ্বকাপ কোন দেশে অনুষ্ঠিত হবে?
  1. কানাডা
  2. যুক্তরাষ্ট্র
  3. মেক্সিকো
  4. উপরোক্ত সবগুলো
সঠিক উত্তর:
উপরোক্ত সবগুলো
উত্তর
সঠিক উত্তর:
উপরোক্ত সবগুলো
ব্যাখ্যা

ফুটবল বিশ্বকাপ ২০২৬:
- আয়োজক দেশ: ৩টি (মার্কিন যুক্তরাষ্ট্র, কানাডা এবং মেক্সিকো)।
- এটি বিশ্বকাপ ফুটবলের ২৩তম আসর।
- সময়কাল: ১১ জুন, ২০২৬ - ১৯ জুলাই, ২০২৬।
- অংশগ্রহণকারী দেশ: ৪৮টি।
- অনুষ্ঠিত হবে ১০৪টি ম্যাচ।
- তিন দেশের ১৬টি ভেন্যুতে এই ম্যাচ অনুষ্ঠিত হবে।

⇒ FIFA World Cup:
- ফিফা বিশ্বকাপ (ফুটবল বিশ্বকাপ) একটি আন্তর্জাতিক ফুটবল প্রতিযোগিতা।
- এখানে ফিফাভুক্ত দেশগুলোর পুরুষ জাতীয় ফুটবল দল অংশ নেয়।
- ফিফা বিশ্ব ফুটবল নিয়ন্ত্রণকারী সংস্থা।
- ১৯৩০ সালে উরুগুয়েতে প্রথম বিশ্বকাপ প্রতিযোগিতার আয়োজন করা হয়।
- দ্বিতীয় বিশ্বযুদ্ধের কারণে ১৯৪২ এবং ১৯৪৬ এই ২টি বিশ্বকাপের আসর বসেনি।
- সর্বশেষ বিশ্বকাপ অনুষ্ঠিত হয়েছে কাতারে, ২০২২ সালে।
- এখন পর্যন্ত অনুষ্ঠিত হয় ফুটবল বিশ্বকাপের ২২টি আসর।
- ২০২২ এর শিরোপা জয়ী আর্জেন্টিনা।

উৎস: FIFA ওয়েবসাইট।

১৫৯.
'আন্তর্জাতিক ন্যায়বিচার আদালত' নিম্নের কোথায় অবস্থিত?
  1. যুক্তরাষ্ট্রের নিউইয়র্ক
  2. সুইজারল্যান্ডের জেনেভা
  3. সুইজারল্যান্ডের জুরিখ
  4. নেদারল্যান্ডের হেগ
সঠিক উত্তর:
নেদারল্যান্ডের হেগ
উত্তর
সঠিক উত্তর:
নেদারল্যান্ডের হেগ
ব্যাখ্যা

আন্তর্জাতিক আদালত (International Court of Justice - ICJ):
- International Court of Justice (ICJ) বা আন্তর্জাতিক ন্যায়বিচার আদালত ও বলা হয়।
- এটি জাতিসংঘের বিচারিক অঙ্গ এবং আন্তর্জাতিক আইন অনুযায়ী রাষ্ট্রসমূহের মধ্যে বিরোধ নিষ্পত্তি করে।
- ICJ শুধুমাত্র সেই বিরোধগুলি শুনানি করে, যা রাষ্ট্রগুলি স্বেচ্ছায় আদালতে নিয়ে আসে।
- ICJ আন্তর্জাতিক আইন সম্পর্কিত বিরোধ যেমন সীমান্তের সমস্যা, সমুদ্রসীমা, এবং চুক্তির ব্যাখ্যা সমাধান করে।
- এটি নেদারল্যান্ডের হেগ শহরে অবস্থিত।
- বিচারক সংখ্যা ১৫ জন।
- বিচারকরা নয় বছরের জন্য নির্বাচিত হন।
- প্রতি বছর এক তৃতীয়াংশ বিচারক অবসর গ্রহণ করেন।

উৎস: ICJ ওয়েবসাইট।

১৬০.
'ট্রয় নগরী' বর্তমানে কোন দেশে অবস্থিত?
  1. ইরাক
  2. গ্রীস
  3. তুরস্ক
  4. ইরান
সঠিক উত্তর:
তুরস্ক
উত্তর
সঠিক উত্তর:
তুরস্ক
ব্যাখ্যা

ট্রয় নগরী:
- ইতিহাস বিখ্যাত ট্রয় নগরী বর্তমান তুরস্কের হেসারলিক বা আনাতোলিয়া নামক স্থানে অবস্থিত।
- ঐতিহাসিক ট্রয় নগরীর অস্তিত্ব এবং এর ধ্বংসের ইতিহাস প্রাচীন গ্রীক হোমারের মহাকাব্য ইলিয়াড-এ পাওয়া যায়।
- ট্রয় নগরী ১৯৯৮ সালে ইউনেস্কোর ‘বিশ্ব ঐতিহ্য’ তালিকায় যুক্ত হয়।
- ট্রয়ের যুদ্ধ শুরু খ্রিষ্টপূর্ব ১২৫০ শতকে এবং শেষ খ্রিষ্টপূর্ব ১২৪০ শতকে।
- দীর্ঘ ১০ বছর ধরে চলেছিল যুদ্ধ।
- এই যুদ্ধ ট্রোজান যুদ্ধ নামে পরিচিত।
- যুদ্ধের কারণ ছিল হেলেন নামের এক সুন্দরী মহিলাকে কেন্দ্র করে, যিনি ট্রয়ের রাজা প্রিয়াম এর পুত্র পারিস দ্বারা অপহৃত হন।
- গ্রীক রাজা মেনেলাউস তার স্ত্রীর ফিরিয়ে আনার জন্য ট্রয়ের বিরুদ্ধে যুদ্ধ ঘোষণা করেন।

• ট্রয়ের ঘোড়া (Trojan Horse):
- ট্রয়ের ঘোড়া ছিল গ্রীক বাহিনীর একটি কৌশল। তারা একটি বিশাল কাঠামো, যা একটি ঘোড়ার মতো দেখতে, ট্রয়ের শহরে রেখে যায়। এতে গ্রীক সৈন্যরা লুকিয়ে ছিল। ট্রয়ের বাসিন্দারা এটি উপহার মনে করে শহরে নিয়ে আসে। রাতের বেলায় সৈন্যরা বের হয়ে শহরের দরজা খুলে দেয়, এবং গ্রীক বাহিনী ট্রয় ধ্বংস করে। এটি প্রতারণা ও কৌশলের প্রতীক হয়ে আছে।

উৎস: Britannica ওয়েবসাইট।

১৬১.
'World Trade Organization (WTO)' এর প্রতিষ্ঠাকালীন নাম কী ছিল?
  1. General Agreement on Tariffs and Trade
  2. General Assessment on Tariffs and Trade
  3. General Agreement on Tarifics and Trading
  4. General Agreement on Tariffs
সঠিক উত্তর:
General Agreement on Tariffs and Trade
উত্তর
সঠিক উত্তর:
General Agreement on Tariffs and Trade
ব্যাখ্যা

• WTO:
- WTO এর প্রতিষ্ঠাকালীন নাম General Agreement on Tariffs and Trade (GATT).
- WTO (World Trade Organization) ১ জানুয়ারি ১৯৯৫ সালে প্রতিষ্ঠিত হয়।
- WTO এর বর্তমান সদস্য ১৬৬টি ।
- বাংলাদেশ WTO এর সদস্য হয় ১জানুয়ারি, ১৯৯৫ সালে।
- WTO এর সদর দপ্তর সুইজারল্যান্ড।

উৎস: WTO ওয়েবসাইট ও Britannica.

১৬২.
মিয়ানমারের সশস্ত্র গোষ্ঠী ‘ARSA’ এর পূর্ণরূপ -
  1. Army of Rohingya State Alliance
  2. Arakan Rohingya Salvation Army
  3. Arakan Resistance and Security Army
  4. Armed Rohingya Security Alliance
সঠিক উত্তর:
Arakan Rohingya Salvation Army
উত্তর
সঠিক উত্তর:
Arakan Rohingya Salvation Army
ব্যাখ্যা

• Arakan Rohingya Salvation Army (ARSA):
- ARSA হল একটি সশস্ত্র রোহিঙ্গা গোষ্ঠী যা মিয়ানমারের রাখাইন রাজ্যে (পূর্বের আরাকান) রোহিঙ্গা জনগোষ্ঠীর স্বার্থ রক্ষার নামে কার্যক্রম চালায়।
- ARSA-আনুমানিক ২০১৩ সালে গঠিত হয়েছিল।
- পূর্বে Harakah al-Yaqin (HaY) নামে পরিচিত ছিল।
- এরা মিয়ানমারে রোহিঙ্গাদের জন্য একটি গণতান্ত্রিক মুসলিম রাষ্ট্র প্রতিষ্ঠার লক্ষ্যে সশস্ত্র তৎপরতা চালিয়ে আসছে।
- ২০১৬ ও ২০১৭ সালে মিয়ানমারের নিরাপত্তা বাহিনীর ওপর হামলা চালায়।
- ২০১৭ সালের আগস্টে ARSA-র হামলার প্রতিক্রিয়ায় মিয়ানমার সেনাবাহিনী ব্যাপক দমন-পীড়ন চালায়, যার ফলে দশ লক্ষাধিক রোহিঙ্গা বাংলাদেশে পালিয়ে আসে।

সূত্র: বিবিসি পত্রিকা রিপোর্ট।

১৬৩.
'নোবেল পুরস্কার' বিজয়ী প্রথম নারী কে?
  1. মেরি কুরি
  2. বার্থাভন সুটনার
  3. মেরি কুইন
  4. গ্রাজিয়া দেলেদ্দা
সঠিক উত্তর:
মেরি কুরি
উত্তর
সঠিক উত্তর:
মেরি কুরি
ব্যাখ্যা

মেরি কুরি (Marie Curie):
- নোবেল পুরস্কার বিজয়ী প্রথম নারী মেরি কুরি।
- তিনিই বিশ্বের একমাত্র ব্যক্তি, যিনি বিজ্ঞানের দুই দুইটি শাখায় নোবেল পুরস্কার পেয়েছেন।
- তেজস্ক্রিয়া গবেষণার পথিকৃৎ মেরি কুরি ১৯০৩ সালে পদার্থবিজ্ঞানে এবং ১৯১১ সালে রসায়নে নোবেল পুরস্কার লাভ করেন।
- তিনি ৭ নভেম্বর, ১৮৬৭ সালে পোল্যান্ডের ওয়ারশ শহরে জন্মগ্রহণ করেন।
- ১৮৯১ এর শেষের দিকে মেরি পোল্যান্ড থেকে ফ্রান্সের উদ্দেশে পাড়ি জমান।

অন্যদিকে,
- সাহিত্যে নোবেল জয়ী প্রথম নারী সেলমা লাগেরলফ।
- শান্তিতে প্রথম মহিলা নোবেল বিজয়ী বার্থাভন সুটনার।
- গ্রাজিয়া দেলেদ্দা ১৯২৬ সালে সাহিত্যে নোবেল পুরস্কার লাভ করেন।
- ১৯০১ - ২০২৪ সাল পর্যন্ত মোট ৬৫ জন নারী ৬৬ বার নোবেল পুরস্কার লাভ করেন।
- এর মধ্যে একমাত্র মেরি কুরি যিনি দুইবার নোবেল পুরস্কার লাভ করেন।

উৎস: Nobel Prize ওয়েবসাইট।

১৬৪.
'ফোর্টিফাই রাইটস' সংগঠনটি কী বিষয়ে কাজ করে?
  1. মানবাধিকার
  2. পরিবেশ
  3. রাজনৈতিক
  4. অর্থনৈতিক
সঠিক উত্তর:
মানবাধিকার
উত্তর
সঠিক উত্তর:
মানবাধিকার
ব্যাখ্যা

Fortify Rights:
- ফোর্টিফাই রাইটস (Fortify Rights) থাইল্যান্ডভিত্তিক একটি মানবাধিকার সংগঠন।
- এটি দক্ষিণ-পূর্ব এশিয়া এবং বিশ্বজুড়ে মানবাধিকার লঙ্ঘনের বিরুদ্ধে কাজ করে।
- প্রতিষ্ঠিত হয়: ২০১৩ সালে।
- এটি বিশেষভাবে মিয়ানমার, থাইল্যান্ড, এবং অন্যান্য অঞ্চলের মানবাধিকার পরিস্থিতি নিয়ে সক্রিয়ভাবে কাজ করছে।
- সম্প্রতি (মার্চ, ২০২৫] মিয়ানমারের রাখাইন রাজ্যে গৃহযুদ্ধের শিকার বেসামরিক নাগরিকদের মানবিক সহায়তা এবং বাণিজ্যিক কার্যক্রম অব্যাহত রাখতে বাংলাদেশ ও আরাকান আর্মিকে ‘মানবিক করিডর’ দেওয়ার আহ্বান জানিয়েছে ফোর্টিফাই রাইটস।

উৎস: সমকাল পত্রিকা এবং Fortify Rights ওয়েবসাইট।

১৬৫.
বর্তমানে বিশ্বের শীর্ষ অস্ত্র আমদানিকারক দেশ কোনটি? (অক্টোবর ২০২৫)
  1. ইউক্রেন
  2. সিরিয়া
  3. চীন
  4. কোনটি নয়
সঠিক উত্তর:
ইউক্রেন
উত্তর
সঠিক উত্তর:
ইউক্রেন
ব্যাখ্যা

অস্ত্র আমদানিকারক দেশ:
- স্টকহোম ইন্টারন্যাশনাল পিস রিসার্চ ইন্সটিটিউট (SIPRI)-এর প্রতিবেদন অনুযায়ী, বর্তমানে বিশ্বের শীর্ষ অস্ত্র আমদানিকারক দেশ ইউক্রেন।
- ২০২০ থেকে ২০২৪-এর মধ্যে ইউক্রেন সবচেয়ে বেশি অস্ত্র আমদানি করেছে।
- ২০২০ থেকে ২০২৪ পর্যন্ত সারা বিশ্বজুড়ে যে অস্ত্র রপ্তানি হয়েছে, তার নয় শতাংশ হয়েছে ইউক্রেনে।
- ৩৫টি দেশ ২০২০ থেকে ২০২৪-এর মধ্যে ইউক্রেনকে অস্ত্র দিয়েছে, তার মধ্যে ৪৫ শতাংশ অস্ত্র গেছে শুধুমাত্র যুক্তরাষ্ট্র থেকে।

• বৈশ্বিক অস্ত্র আমদানিতে শীর্ষ দেশ:
• ১ম: ইউক্রেন।
• ২য়: ভারত।
• ৩য়: কাতার।
• ৪র্থ: সৌদি আরব।
• ৫ম: পাকিস্তান।
- বৈশ্বিক অস্ত্র রপ্তানিতে শীর্ষ দেশ যুক্তরাষ্ট্র। ২০২০ থেকে ২০২৪-এর মধ্যে তারা ১০৭টি দেশকে অস্ত্র দিয়েছে। মোট অস্ত্র রপ্তানির ৪৩ শতাংশ অ্যামেরিকা থেকে হয়।

উৎস: Stockholm International Peace Research Institute ওয়েবসাইট এবং DW পত্রিকা রিপোর্ট।

১৬৬.
'বিশ্ব মানবিক ভাতৃত্ববোধ বিষয়ক সম্মেলন-২০২৫' নিচের কোথায় অনুষ্ঠিত হয়েছে?
  1. ভ্যাটিক্যান সিটি
  2. চীন
  3. যুক্তরাজ্য
  4. ফ্রান্স
সঠিক উত্তর:
ভ্যাটিক্যান সিটি
উত্তর
সঠিক উত্তর:
ভ্যাটিক্যান সিটি
ব্যাখ্যা

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

উৎস: Fondazione Fratelli tutti ওয়েবসাইট।

১৬৭.
'রোমান সাম্রাজ্যের' প্রথম সম্রাট নিম্নের কে ছিলেন?
  1. জুলিয়াস সিজার
  2. অগাস্টাস সিজার
  3. তুজিয়াস সিজার
  4. কোনটি নয়
সঠিক উত্তর:
অগাস্টাস সিজার
উত্তর
সঠিক উত্তর:
অগাস্টাস সিজার
ব্যাখ্যা

• অগাস্টাস সিজার:
- রোমান সাম্রাজ্যের প্রথম সম্রাট ছিলেন অগাস্টাস সিজার।
- তিনি মহাবীর জুলিয়াস সিজারের ভাগ্নে।
- অগাস্টাস সিজারের আসল নাম ছিল গাইয়াস অক্টাভিয়াস।
- জুলিয়াস সিজারের মৃত্যুর পর তিনি নিজের নাম পরিবর্তন করে অগাস্টাস সিজার রাখেন।
- ৬৩ খ্রিস্টপূর্বাব্দে রোমের সমরনায়ক ও সিনেট সদস্যরা যখন দুই ভাগে বিভক্ত, এমনই এক সময় জন্মলাভ করেন অগাস্টাস সিজার।

⇒ সম্রাট অক্টাভিয়ান অগাস্টাস (খ্রিস্টপূর্ব ৩১-১৪ খ্রিস্টাব্দ) রোমের ইতিহাসে সর্বাপেক্ষা বিখ্যাত শাসক ছিলেন।
- তাঁর শাসনামলে রোমীয় সভ্যতায় স্বর্ণযুগের সূচনা হয়।
- তিনি একজন বিচক্ষণ রাজনীতিক ও দূরদৃষ্টিসম্পন্ন শাসক ছিলেন।
- তাঁর সময়ে রোমীয় ইতিহাস, সাহিত্য-সংস্কৃতি, শিল্পকলা, বিজ্ঞানচর্চা চূড়ান্ত পর্যায়ে পৌঁছে।
- এই জন্য ইতিহাসে তাঁর সময়কালকে 'অগাস্টান যুগ' (Augustan Age) বলা হয়।

উৎস:Britannica ওয়েবসাইট এবং ইসলামের ইতিহাস ও সংস্কৃতি ১ম পত্র, এইচএসসি প্রোগ্রাম, বাংলাদেশ উন্মুক্ত বিশ্ববিদ্যালয়।

১৬৮.
'স্ট্যাচু অব লিবার্টি'-এর মূল নকশাকার নিম্নের কে?
  1. ফ্রেডরিক অগাস্ট বার্থোল্ডি
  2. উইলিয়াম নেপোলিয়ন
  3. ফ্রেডরিক থমাস
  4. প্রিয়ালো বার্থো
সঠিক উত্তর:
ফ্রেডরিক অগাস্ট বার্থোল্ডি
উত্তর
সঠিক উত্তর:
ফ্রেডরিক অগাস্ট বার্থোল্ডি
ব্যাখ্যা

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

এছাড়াও,
- মূর্তিটি একজন নারীর রূপে স্বাধীনতার মূর্তি।
- মূল ভাস্কর্যটির উচ্চতা ১৫১ ফুট, বেদিসহ এর উচ্চতা ৩০৫ ফুট (৯৩ মিটার)।
- এটি একহাত দিয়ে যে বইটি ধরে আছে সে বইয়ের ওপরে লেখা আছে একটি তারিখ, আর তা হল “৪ জুলাই, ১৭৭৬”।এই তারিখেই ব্রিটিশ শাসন থেকে যুক্তরাষ্ট্র স্বাধীন হয়েছিল!

উৎস: Britannica ওয়েবসাইট।

১৬৯.
নিম্নের কোন দেশ থেকে 'অস্ট্রেলিয়া' স্বাধীনতা লাভ করে?
  1. কানাডা
  2. যুক্তরাষ্ট্র
  3. যুক্তরাজ্য
  4. ফ্রান্স
সঠিক উত্তর:
যুক্তরাজ্য
উত্তর
সঠিক উত্তর:
যুক্তরাজ্য
ব্যাখ্যা

• অস্ট্রেলিয়া:
- অস্ট্রেলিয়া ওশেনিয়া মহাদেশের একটি সার্বভৌম রাষ্ট্র।
- আয়তনের দিক থেকে এটি ওশেনিয়ার সর্ব বৃহ‌ৎ রাষ্ট্র ও পৃথিবীর ৬ষ্ঠ বৃহত্তম রাষ্ট্র।
- রাজধানী: ক্যানবেরা।
- বিখ্যাত জনবহুল শহর: সিডনি।
- মুদ্রা: অস্ট্রেলিয়ান ডলার।
- সরকার প্রধান: প্রধানমন্ত্রী।
- সিডনিতে প্রধানমন্ত্রীর বাসভবনের নাম: কিরিবিলি হাউস।
- অস্ট্রেলিয়া যুক্তরাজ্য থেকে স্বাধীনতা লাভ করে ১৯০১ সালে।
- ১৯০১ সালে অস্ট্রেলিয়া ব্রিটিশ সাম্রাজ্যের অধীনে থাকা স্বাধীন কমনওয়েলথ দেশ হিসেবে প্রতিষ্ঠিত হয়।

উৎস: Britannica ওয়েবসাইট।

১৭০.
'World Government Summit- 2025' নিম্নের কোথায় অনুষ্ঠিত হয়েছে?
  1. সৌদি আরব
  2. সংযুক্ত আরব আমিরাত
  3. ইতালি
  4. জাপান
সঠিক উত্তর:
সংযুক্ত আরব আমিরাত
উত্তর
সঠিক উত্তর:
সংযুক্ত আরব আমিরাত
ব্যাখ্যা

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

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

১৭১.

    সঠিক উত্তর:
    উত্তর
    সঠিক উত্তর:
    ব্যাখ্যা

    প্রশ্ন:

    সমাধান:

    ১৭২.

    1. 0
    2. 2
    3. - 3
    4. 5
    সঠিক উত্তর:
    5
    উত্তর
    সঠিক উত্তর:
    5
    ব্যাখ্যা

    প্রশ্ন:

    সমাধান:

    ১৭৩.
    'ALGEBRA' শব্দের বর্ণ গুলোকে কত উপায়ে সাজানো যাবে যাতে A সবসময় প্রথম বর্ণ থাকে?
    1. 920
    2. 720
    3. 5040
    4. 360
    সঠিক উত্তর:
    720
    উত্তর
    সঠিক উত্তর:
    720
    ব্যাখ্যা

    প্রশ্ন: 'ALGEBRA' শব্দের বর্ণ গুলোকে কত উপায়ে সাজানো যাবে যাতে A সবসময় প্রথম বর্ণ থাকে?

    সমাধান:
    'ALGEBRA' শব্দে মোট 7 টি বর্ণ আছে। যথা A, L, G, E, B, R, A
    এখানে A বর্ণটি 2 বার আছে।

    যেহেতু প্রথম স্থান A দিয়ে বাধ্যতামূলকভাবে পূরণ করা হবে, তাই প্রথম স্থানের জন্য কোনো আলাদা বাছাই নেই।

    সুতরাং বাকি 6 টি বর্ণ L, G, E, B, R, A
    এখানে কোনো বর্ণই একাধিকবার নেই (কারণ A দুটির একটি প্রথমে ব্যবহার করায় বাকি 1 টি A আছে, তাই পুনরাবৃত্তি নেই)।

    ∴ বিন্যাস সংখ্যা = 6 টি ভিন্ন বস্তুর বিন্যাস = 6! = 6 × 5 × 4 × 3 × 2 = 720

    ১৭৪.
    x - 2y - 8 = 0 এবং 2x + y - 12 = 0 রেখাদ্বয়ের ঢালদ্বয়ের গুণফল কত?
    1. 1/3
    2. - 2
    3. 1/2
    4. - 1
    সঠিক উত্তর:
    - 1
    উত্তর
    সঠিক উত্তর:
    - 1
    ব্যাখ্যা

    প্রশ্ন: x - 2y - 8 = 0 এবং 2x + y - 12 = 0 রেখাদ্বয়ের ঢালদ্বয়ের গুণফল কত?

    সমাধান:
    দেওয়া আছে,
    x - 2y - 8 = 0 এবং 2x + y - 12 = 0

    আমরা জানি,
    সরল রেখার সাধারণ সমীকরণ, y = mx + c [যেখানে, m = ঢাল]

    এখন,
    প্রথম রেখার ঢাল:
    x - 2y - 8 = 0 সমীকরণটিকে y = mx + c আকারে সাজালে পাই,
    ⇒ 2y = x - 8
    ∴ y = (1/2)x - 4
    সুতরাং, প্রথম রেখার ঢাল, m1 = 1/2

    আবার,
    দ্বিতীয় রেখার ঢাল:
    2x + y - 12= 0 সমীকরণটিকে y = mx + c আকারে সাজালে পাই,
    ⇒ y = - 2x + 12
    সুতরাং, দ্বিতীয় রেখার ঢাল, m2 = - 2

    ∴ ঢালদ্বয়ের গুণফল = m1 × m2 = (1/2) × (- 2) = - 1
    এই দুটি রেখা পরস্পর লম্ব, কারণ তাদের ঢালদ্বয়ের গুণফল - 1

    ১৭৫.
    কোন ত্রিভুজের ১ম কোণ যদি ২য় কোণের চারগুণ এবং ৩য় কোণ যদি ১ম কোণের চেয়ে 63° বড় হয়, তাহলে ৩য় কোণটি কত ডিগ্রি?
    1. 115°
    2. 78°
    3. 52°
    4. 105°
    সঠিক উত্তর:
    115°
    উত্তর
    সঠিক উত্তর:
    115°
    ব্যাখ্যা

    প্রশ্ন: কোন ত্রিভুজের ১ম কোণ যদি ২য় কোণের চারগুণ এবং ৩য় কোণ যদি ১ম কোণের চেয়ে 63° বড় হয়, তাহলে ৩য় কোণটি কত ডিগ্রি?

    সমাধান:
    ধরি,
    ২য় কোণ = x
    ∴ ১ম কোণ = 4x
    ৩য় কোণ = 4x + 63°

    প্রশ্নমতে,
    x + 4x + 4x + 63° = 180°
    ⇒ 9x = 180° - 63°
    ⇒ 9x = 117°
    ⇒ x = 117°/9
    ∴ x = 13°

    ∴ ৩য় কোণ = 4x + 63 = 52° + 63° = 115°

    ১৭৬.
    চিনির মূল্য ৬% বেড়ে যাওয়ায় ১০৬০ টাকার পূর্বে যত কেজি চিনি কেনা যেত এখন তার চেয়ে ৩ কেজি চিনি কম কেনা যায়।পূর্বে চিনির দাম কেজি প্রতি কত ছিল?
    1. ২১.২০ টাকা
    2. ২৫ টাকা
    3. ২০ টাকা
    4. ১৮.২৫ টাকা
    সঠিক উত্তর:
    ২০ টাকা
    উত্তর
    সঠিক উত্তর:
    ২০ টাকা
    ব্যাখ্যা

    প্রশ্ন: চিনির মূল্য ৬% বেড়ে যাওয়ায় ১০৬০ টাকার পূর্বে যত কেজি চিনি কেনা যেত এখন তার চেয়ে ৩ কেজি চিনি কম কেনা যায়। পূর্বে চিনির দাম কেজি প্রতি কত ছিল?

    সমাধান:
    মনে করি,
    পূর্বমূল্য = ১০০ টাকা
    আবার,
    ১০৬০ টাকার ৬% = ১০৬০ × (৬/১০০) = ৬৩.৬০ টাকা

    বর্তমানে ৩ কেজি চিনির দাম ৬৩.৬০ টাকা
    বর্তমানে ১ কেজি চিনির দাম ৬৩.৬০/৩ = ২১.২০ টাকা

    আবার,
    ৬% বৃদ্ধিতে বর্তমান মূল্য = ১০০ + ৬ = ১০৬ টাকা

    এখন,
    ১০৬ টাকা বর্তমান দর হলে পূর্ব দর = ১০০ টাকা
    ∴ ১ টাকা বর্তমান দর হলে পূর্ব দর = ১০০/১০৬ টাকা
    ∴ ২১.২০ টাকা বর্তমান দর হলে পূর্ব দর = (১০০ × ২১.২০)/১০৬ টাকা
    = ২০ টাকা

    সুতরাং, পূর্বে চিনির দাম কেজি প্রতি ২০ টাকা।

    ১৭৭.
    8 + 4√2 + 4 + 2√2+..................... ধারাটির কততম পদ √2?
    1. 6
    2. 4
    3. 8
    4. 5
    সঠিক উত্তর:
    6
    উত্তর
    সঠিক উত্তর:
    6
    ব্যাখ্যা

    প্রশ্ন: 8 + 4√2 + 4 + 2√2+..................... ধারাটির কততম পদ √2?

    সমাধান:
    এটি একটি গুণোত্তর ধারা। যার
    ১ম পদ, a = 8
    এবং সাধারণ অনুপাত, r = 4√2/8 = √2/2 = 1/√2

    আমরা জানি,
    গুণোত্তর ধারার n তম পদ = arn - 1

    প্রশ্নমতে,
    arn - 1 = √2
    ⇒ 8 × (1/√2)n - 1 = √2
    ⇒ (1/√2)n - 1 = √2/8
    ⇒ (1/√2)n - 1 = √2/(√2)6 ; [(√2)6 = 8]
    ⇒ (√2)- (n - 1) = (√2)1 - 6
    ⇒ - (n - 1) = - 5
    ⇒ - n + 1 = - 5
    ⇒ n = 1 + 5
    ∴ n = 6

    অর্থাৎ ৬ষ্ঠ পদটি √2

    ১৭৮.
    4, 8 এবং 16 এর জ্যামিতিক গড় কত?
    1. 12
    2. 5
    3. 8
    4. 4
    সঠিক উত্তর:
    8
    উত্তর
    সঠিক উত্তর:
    8
    ব্যাখ্যা

    প্রশ্ন: 4, 8 এবং 16 এর জ্যামিতিক গড় কত?

    সমাধান:
    আমরা জানি,
    n সংখ্যক সংখ্যার গুণোত্তর গড় বা জ্যামিতিক গড় =

    ∴ 4, 8 এবং 16 এর জ্যামিতিক গড় = (4 × 8 × 16)1/3
    = (512)1/3
    = (83)1/3
    = 8

    ১৭৯.

    1. 0
    2. 2√2
    3. 4
    4. √2
    সঠিক উত্তর:
    2√2
    উত্তর
    সঠিক উত্তর:
    2√2
    ব্যাখ্যা

    প্রশ্ন:

    সমাধান:

    ১৮০.
    4 মিটার ব্যাস বিশিষ্ট বৃত্তের অভ্যন্তরে একটি বর্গ অঙ্কিত হলো। বৃত্ত ও বর্গের ক্ষেত্রফলের অনুপাত কত?
    1. π : 2√2
    2. π : 4
    3. 4 : π
    4. π : 2
    সঠিক উত্তর:
    π : 2
    উত্তর
    সঠিক উত্তর:
    π : 2
    ব্যাখ্যা

    প্রশ্ন: 4 মিটার ব্যাস বিশিষ্ট বৃত্তের অভ্যন্তরে একটি বর্গ অঙ্কিত হলো। বৃত্ত ও বর্গের ক্ষেত্রফলের অনুপাত কত?

    সমাধান:
    দেওয়া আছে,
    বৃত্তের ব্যাস =4 মিটার
    বৃত্তের ব্যাসার্ধ, r = 4/2 = 2 মিটার

    আমরা জানি,
    ∴ বৃত্তের ক্ষেত্রফল = πr2
    = π × 22 বর্গমিটার
    = 4π বর্গমিটার

    বর্গের কর্ণের দৈর্ঘ্য = বৃত্তের ব্যাসের দৈর্ঘ্য = 2 × 2 = 4 মিটার
    ∴ বর্গের এক বাহুর দৈর্ঘ্য = 4/√2 = 2√2 মিটার

    ∴ বর্গের ক্ষেত্রফল = (2√2)2 বর্গমিটার = 8 বর্গমিটার

    ∴ বৃত্ত ও বর্গের ক্ষেত্রফলের অনুপাত = 4π : 8
    = π : 2

    ১৮১.
    নিচের কোনটি অসামঞ্জস্যপূর্ণ?
    1. Linux
    2. Python
    3. Java
    4. Ruby
    সঠিক উত্তর:
    Linux
    উত্তর
    সঠিক উত্তর:
    Linux
    ব্যাখ্যা

    প্রশ্ন: নিচের কোনটি অসামঞ্জস্যপূর্ণ?

    সমাধান:

    • Linux:
    - Linux হলো একটি অপারেটিং সিস্টেম (Operating System) যা কম্পিউটার হার্ডওয়্যার এবং সফটওয়্যার ব্যবস্থাপনা করে।
    - এটি একটি প্ল্যাটফর্ম বা ভিত্তি যেখানে বিভিন্ন সফটওয়্যার রান করতে পারে।
    - Linux নিজেই কোনো প্রোগ্রামিং ভাষা নয়।
    - সাধারণত সার্ভার, ডেস্কটপ, মোবাইল বা এমবেডেড সিস্টেমে ব্যবহৃত হয়।

    • Python:
    - Python হলো একটি প্রোগ্রামিং ভাষা যা সাধারণত সফটওয়্যার ডেভেলপমেন্ট, ডেটা সায়েন্স, ওয়েব ডেভেলপমেন্ট ইত্যাদিতে ব্যবহৃত হয়।
    - এটি একটি ইন্টারপ্রেটেড এবং উচ্চ-স্তরের ভাষা।
    - Python Linux-এর মতো অপারেটিং সিস্টেম নয়।

    • Java:
    - Java হলো একটি প্রোগ্রামিং ভাষা এবং প্ল্যাটফর্ম।
    - এটি সাধারণত অ্যাপ্লিকেশন ডেভেলপমেন্ট এবং ওয়েব সার্ভিসে ব্যবহৃত হয়।
    - Java Linux-এর মতো অপারেটিং সিস্টেম নয়।

    • Ruby:
    - Ruby হলো একটি প্রোগ্রামিং ভাষা যা ওয়েব ডেভেলপমেন্ট, স্ক্রিপ্টিং এবং সফটওয়্যার ডেভেলপমেন্টে ব্যবহৃত হয়।
    - এটি Linux-এর মতো অপারেটিং সিস্টেম নয়।

    সুতরাং, অন্যগুলো প্রোগ্রামিং ভাষা হলেও Linux হলো অপারেটিং সিস্টেম।
    সঠিক উত্তর: ক) Linux.

    ১৮২.
    প্রশ্নবোধক স্থানে কোন সংখ্যা বসবে?

    1. 2
    2. 6
    3. 8
    4. 10
    সঠিক উত্তর:
    6
    উত্তর
    সঠিক উত্তর:
    6
    ব্যাখ্যা

    প্রশ্ন: প্রশ্নবোধক স্থানে কোন সংখ্যা বসবে?

    সমাধান:
    প্রথম সারিতে,
    9 + 1 + 5 = 15

    দ্বিতীয় সারিতে,
    4 + 8 + 3 = 15

    তৃতীয় সারিতে,
    2 + 6 + 7 = 15

    প্রত্যেক সারির সংখ্যাগুলোকে যোগ করা হয়েছে যাদের প্রত্যেকের যোগফল 15.

    সুতরাং, প্রশ্নবোধক স্থানে 6 বসবে।

    ১৮৩.
    বাংলা বর্ণবিন্যাসে ‘ধ' ব্যঞ্জন বর্ণের অবস্থান হচ্ছে: _______।
    1. ট বর্গের চতুর্থ
    2. চ বর্গের চতুর্থ
    3. ত বর্গের চতুর্থ
    4. প বর্গের চতুর্থ
    সঠিক উত্তর:
    ত বর্গের চতুর্থ
    উত্তর
    সঠিক উত্তর:
    ত বর্গের চতুর্থ
    ব্যাখ্যা

    প্রশ্ন: বাংলা বর্ণবিন্যাসে ‘ধ' ব্যঞ্জন বর্ণের অবস্থান হচ্ছে: _______।

    সমাধান:
    - বাংলা ব্যঞ্জন বর্ণমালায় বর্গ ৫ টি।
    - এগুলো হলো - ক, চ, ট, ত, প।

    প্রতিটি বর্গে ৫ টি করে বর্ণ আছে। যথা-
    - ক, খ, গ, ঘ, ঙ
    - চ, ছ, জ, ঝ, ঞ
    - ট, ঠ, ড, ঢ, ণ
    - ত, থ, দ, , ন
    - প, ফ, ব, ভ, ম

    - বাংলা বর্ণবিন্যাসে ‘ধ' ব্যঞ্জন বর্ণের অবস্থান ”ত” বর্গের চতুর্থ স্থানে।

    ১৮৪.
    যদি 11894 = ARID হয় তাহলে 172194 = ?
    1. ACID
    2. AMID
    3. QUID
    4. QUIT
    সঠিক উত্তর:
    QUID
    উত্তর
    সঠিক উত্তর:
    QUID
    ব্যাখ্যা

    প্রশ্ন: যদি 11894 = ARID হয় তাহলে 172194 = ?

    সমাধান:
    যদি 11894 = ARID হয় তাহলে 172194 = QUID

    ইংরেজি বর্ণমালার অবস্থান (A = 1, B = 2,..., Z = 26) বিবেচনা করে দেখা যায়-
    1 = A,
    18 = R,
    9 = I,
    4 = D
    ∴ 11894 = ARID

    একইভাবে,
    17 = Q,
    21 = U,
    9 = I,
    4 = D

    ∴ 172194 = QUID

    ১৮৫.
    প্রদত্ত চিত্রে কতগুলো ত্রিভুজ রয়েছে?

    1. 18
    2. 20
    3. 24
    4. 26
    সঠিক উত্তর:
    18
    উত্তর
    সঠিক উত্তর:
    18
    ব্যাখ্যা

    প্রশ্ন: প্রদত্ত চিত্রে কতগুলো ত্রিভুজ রয়েছে?

    সমাধান:
    উপরোক্ত বৃহৎ ত্রিভুজে মোট কতটি ত্রিভুজ আছে
    = pn(n - 1)/2
    = 3 × 4(4 - 1)/2
    = (3 × 12)/2
    = 18

    এখানে,
    p = আনুভূমিক রেখার সংখ্যা
    n = লম্বালম্বি বা তির্যক রেখার সংখ্যা

    ১৮৬.
    "তু, য়া, ভা" বর্ণগুলোর সাথে নিচের কোনটি যোগ করে বিন্যাস করলে একটি দেশের নাম পাওয়া যাবে?
    1. সু
    2. ভা
    3. নু

    সঠিক উত্তর:
    নু
    উত্তর
    সঠিক উত্তর:
    নু
    ব্যাখ্যা

    প্রশ্ন: "তু, য়া, ভা" বর্ণগুলোর সাথে নিচের কোনটি যোগ করে বিন্যাস করলে একটি দেশের নাম পাওয়া যাবে?

    সমাধান:
    "তু, য়া, ভা" বর্ণগুলোর সাথে "নু" বর্ণটি যোগ করে বিন্যাস করলে "ভানুয়াতু" শব্দটি পাওয়া যায়।

    • ভানুয়াতু:
    - ভানুয়াতু হলো দক্ষিণ-প্যাসিফিক মহাসাগরে অবস্থিত একটি দ্বীপ রাষ্ট্র।
    - এটি প্রায় ৮০টি ছোট-বড় দ্বীপ নিয়ে গঠিত।
    - রাজধানী হলো পোর্ট ভিলা।
    - দেশটির প্রধান ভাষা হলো বিসলামা, ইংরেজি ও ফরাসি।

    • মেলানেশিয়া:
    - মেলানেশিয়া হলো দক্ষিণ-প্যাসিফিকের একটি দ্বীপসমূহের অঞ্চল।
    - প্রধান দেশগুলো হলো পাপুয়া নিউ গিনি, ফিজি, সলোমন দ্বীপপুঞ্জ, ভানুয়াতু, ও নিউ ক্যালিডোনিয়া।
    - নামের অর্থ হলো “কালো দ্বীপসমূহ” (মেলা = কালো, নেশিয়া = দ্বীপ)।
    - এখানে মূলত আফ্রো-প্যাসিফিক জাতিগোষ্ঠীর মানুষ বসবাস করে।

    উৎস: World Atlas.

    ১৮৭.
    সাবিহা একটি বালিকা লাইনের যেকোন প্রান্ত থেকে ত্রয়োদশ অবস্থানে রয়েছে। ঐ লাইনে কতজন বালিকা আছে?
    1. ২৫ জন
    2. ২১ জন
    3. ২৭ জন
    4. ২৯ জন
    সঠিক উত্তর:
    ২৫ জন
    উত্তর
    সঠিক উত্তর:
    ২৫ জন
    ব্যাখ্যা

    প্রশ্ন: সাবিহা একটি বালিকা লাইনের যেকোন প্রান্ত থেকে ত্রয়োদশ অবস্থানে রয়েছে। ঐ লাইনে কতজন বালিকা আছে?

    সমাধান:
    সাবিহা সামনের দিক এবং পিছনের দিক উভয় দিক থেকেই ১৩তম অবস্থানে রয়েছে।

    ঐ লাইনে বালিকা আছে = ১২ + ১ + ১২ = ২৫ জন

    ১৮৮.
    ঘড়িতে ১০ টা ১০ মিনিট বাজলে আয়নার প্রতিবিম্বে কয়টা বাজতে দেখা যাবে?
    1. ৫ টা ১০ মিনিট
    2. ৩ টা ১৫ মিনিট
    3. ২ টা ১৫ মিনিট
    4. ১ টা ৫০ মিনিট
    সঠিক উত্তর:
    ১ টা ৫০ মিনিট
    উত্তর
    সঠিক উত্তর:
    ১ টা ৫০ মিনিট
    ব্যাখ্যা

    প্রশ্ন: ঘড়িতে ১০ টা ১০ মিনিট বাজলে আয়নার প্রতিবিম্বে কয়টা বাজতে দেখা যাবে?

    সমাধান:
    আমরা জানি,
    আয়নার সময় = ১১ : ৬০ - প্রকৃত সময়
    = ১১ : ৬০ - ১০ : ১০
    = ১ : ৫০

    সুতরাং, ঘড়িতে ১০ টা ১০ মিনিট বাজলে আয়নার প্রতিবিম্বে ১ টা ৫০ মিনিট বাজতে দেখা যাবে।

    ১৮৯.
    একটি বিয়ের অনুষ্ঠানে আনিছ সাহেব ও তাঁর স্ত্রী, তিন পুত্র ও তাদের স্ত্রী এবং প্রত্যেক পুত্রের ৩ জন করে সন্তান ছিলেন। ঐ অনুষ্ঠানে মোট কতজন উপস্থিত ছিলেন?
    1. ২০ জন
    2. ২৪ জন
    3. ১৭ জন
    4. ১৬ জন
    সঠিক উত্তর:
    ১৭ জন
    উত্তর
    সঠিক উত্তর:
    ১৭ জন
    ব্যাখ্যা

    প্রশ্ন: একটি বিয়ের অনুষ্ঠানে আনিছ সাহেব ও তাঁর স্ত্রী, তিন পুত্র ও তাদের স্ত্রী এবং প্রত্যেক পুত্রের ৩ জন করে সন্তান ছিলেন। ঐ অনুষ্ঠানে মোট কতজন উপস্থিত ছিলেন?

    সমাধান:
    মোট লোক = আনিছ সাহেব + তাঁর স্ত্রী + তাদের তিন পুত্র + তিন পুত্রের স্ত্রী + পুত্রদের মোট ৯ সন্তান
    = ১৭ জন।

    ∴ বিয়ের অনুষ্ঠানে মোট উপস্থিত ছিলেন ১৭ জন।