A 16-bit address bus can address a maximum of ____ KB memory.
A
16
B
32
C
64
D
128
উত্তরের বিবরণ
Address Bus হলো এমন একটি বাস যা মেমরির নির্দিষ্ট লোকেশন বা ঠিকানা নির্দেশ করতে ব্যবহৃত হয়। এর প্রস্থ (width) যত বেশি হয়, তত বেশি মেমরি লোকেশন অ্যাক্সেস করা যায়।
মূল তথ্যসমূহ:
-
Address Bus Width নির্দেশ করে কতগুলো ইউনিক মেমরি লোকেশন CPU অ্যাক্সেস করতে পারবে।
-
গাণিতিক সূত্র:
-
যদি Address Bus হয় 16-bit, তবে:
অর্থাৎ 16-বিট Address Bus-এর মাধ্যমে সর্বাধিক 64 KB মেমরি অ্যাক্সেস করা সম্ভব।
উপসংহার:
Address Bus যদি 16-bit হয়, তবে সর্বাধিক 64 KB মেমরি অ্যাক্সেস করা যায় — তাই সঠিক উত্তর গ) 64।

0
Updated: 2 days ago
A half-adder circuit has:
Created: 2 days ago
A
1 input, 2 outputs
B
2 inputs, 2 outputs
C
2 inputs, 1 output
D
3 inputs, 2 outputs
Answer: খ)
2 inputs, 2 outputs
Explanation:
A half-adder is a combinational circuit that adds two single-bit binary
numbers.
It has:
Inputs: 2 → (A, B)
Outputs: 2 →
SUM = A ⊕ B (XOR gate)
CARRY = A · B (AND gate

0
Updated: 2 days ago
_____ method is a first order optimization method.
Created: 4 days ago
A
Newton
B
Quasi-Newton
C
Gradient descent
D
Conjugate gradient
Answer: গ)
Gradient Descent 0
Updated: 4 days ago
Explanation:
First-order optimization methods are numerical techniques used to
find the minimum or maximum of a function. These methods rely on only the first-order
derivatives (gradients) of the function to guide the search
for the optimal solution.
Common First-Order Methods:
1. Gradient Descent: This is the most basic first-order method. It
iteratively updates the solution by moving in the direction
of the negative gradient. The step size, or
learning rate, determines how far to move in each iteration.
2. Forward-Backward Splitting
3. Douglas-Rachford Splitting
4. Alternating Direction Method of Multipliers (ADMM)
5. Primal-Dual Algorithms
For a connected acyclic graph with v vertices and e edges we have:
Created: 2 days ago
A
v = e
B
v = e + 1
C
v = e + 2
D
v + 1 = e
একটি connected acyclic graph-কে বলা হয় tree, যা গ্রাফ তত্ত্বে একটি গুরুত্বপূর্ণ গঠন। এতে কোনো cycle (বৃত্তাকার পথ) থাকে না এবং প্রতিটি নোড অন্য নোডের সঙ্গে সংযুক্ত থাকে।
মূল তথ্যসমূহ:
-
Tree-এর মৌলিক বৈশিষ্ট্য:
-
এটি connected, অর্থাৎ প্রতিটি নোডের মধ্যে অন্তত একটি পথ বিদ্যমান।
-
এটি acyclic, অর্থাৎ কোনো বৃত্তাকার সংযোগ (cycle) নেই।
-
-
মূল সম্পর্ক:
-
কোনো tree-এর ক্ষেত্রে সর্বদা এই সম্পর্কটি সত্য —
যেখানে,
-
v = শীর্ষবিন্দুর সংখ্যা (number of vertices)
-
e = প্রান্তের সংখ্যা (number of edges)
-
-
-
উদাহরণ:
-
যদি কোনো tree-তে 5টি vertex থাকে, তবে প্রান্তের সংখ্যা হবে 4টি (e = 4)।
-
যদি 7টি vertex থাকে, তবে e = 6 হবে।
-
অতএব, একটি connected acyclic graph বা tree-এর ক্ষেত্রে সম্পর্কটি হলো v = e + 1, তাই সঠিক উত্তর খ) v = e + 1।

0
Updated: 2 days ago