The chromatic index of a bipartite graph with at least one edge is:
A
1
B
2
C
3
D
4
উত্তরের বিবরণ
Answer: ক)
1
Chromatic Index: The minimum number of colors needed to color the
edges of a graph so that no two edges incident on the same vertex have the same
color.
Bipartite Graph: A graph whose vertices can be divided into
two disjoint sets U and V, with edges only between U and V, no edges
within the same set.
Vizing's Theorem:
For any simple graph, the chromatic index χ′(G) is either:
Δ(G) or Δ(G)+1
Δ(G) = maximum degree of the graph.
Special case for bipartite graphs:
If the graph is bipartite, the chromatic index is exactly equal to its maximum
degree (Δ(G)
Since a bipartite graph has at least one edge, its maximum
degree Δ(G)≥1
Step 1: Minimum chromatic index
For a bipartite graph with at least one edge, the smallest possible maximum
degree is 1 (e.g., a single edge).
So the chromatic index = maximum degree = 1 if it’s just
one edge.
Step 2: General case
For general bipartite graphs, chromatic index = maximum degree.
For example:
A star graph K1,n → max degree = n → chromatic
index = n.
But the question asks for simple bipartite graph with ≥1 edge and
not a specific graph, so the minimum guaranteed chromatic index = 1.
Chromatic index of a bipartite graph = maximum degree Δ
Minimum guaranteed chromatic index (for any bipartite graph with at
least one edge) = 1

0
Updated: 17 hours ago
_____ method is a first order optimization method.
Created: 1 day ago
A
Newton
B
Quasi-Newton
C
Gradient descent
D
Conjugate gradient
Answer: গ)
Gradient Descent 0
Updated: 1 day 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
A router processes packets @1 Gbps; if 10 packets (1200 bytes each) arrive at once, queuing delay for the 10th packets (in µs) is:
Created: 1 day ago
A
96
B
86.4
C
115.2
D
120
Answer: খ)
86.4 µs
Explanation:
link rate R=1 Gbps =109 bits/s, Packet
size L=1200 bytes.
Convert packet size to bits: L=1200
bytes×8=9600 bits
Transmission time per packet:
Ttx=L/R
=9600/109 s
=9.6×10−6 s
=9.6 μs
The 10th packet waits for the 9 packets ahead of it to be transmitted, so queuing
delay = 9×Ttx=9×9.6 μs= 86.4 μs.
যদি প্রশ্নে ট্রান্সমিশনের মোট সময় অর্থাৎ
১০টা প্যাকেট ট্রান্সমিট হতে কত সময়
লাগবে তাহলে
Total transmit time: 10×9.6 μs= 96 μs
(কিন্তু এখানে চাওয়া হয়েছে ১০ম প্যাকেটের জন্য Queuing delay) তাই উত্তর হবে খ) 86.4 µs

0
Updated: 14 hours ago
Hyper-threading:
Created: 17 hours ago
A
creates multiple physical cores
B
Allows a single physical core to execute multiple threads simultaneously
C
reduces cache size
D
Only applied to GPU
Hyper-Threading (HT) হলো Intel-এর একটি Simultaneous Multithreading (SMT) প্রযুক্তি, যা একটি single physical CPU core-কে এমনভাবে কাজ করতে সক্ষম করে যেন সেটি দুটি আলাদা logical (virtual) core। এর ফলে প্রসেসর একসাথে একাধিক থ্রেড পরিচালনা করতে পারে, যা পারফরম্যান্স ও রিসোর্স ব্যবহারে দক্ষতা বাড়ায়।
-
মূল ধারণা: Hyper-Threading মূলত একটি ফিজিক্যাল কোরের রিসোর্সগুলো (যেমন রেজিস্টার ও execution unit) ভাগ করে দেয় দুটি ভার্চুয়াল থ্রেডের মধ্যে। ফলে একটি কোর একই সময়ে দুটি নির্দেশনা (instruction stream) একসাথে প্রক্রিয়া করতে পারে।
-
প্রধান সুবিধা: এটি CPU utilization বৃদ্ধি করে, idle সময় কমায় এবং multithreaded application গুলোর গতি বাড়ায়।
-
কাজের ধরন: প্রতিটি ফিজিক্যাল কোরে দুইটি থ্রেড চালু থাকে, যা অপারেটিং সিস্টেমে আলাদা লজিক্যাল প্রসেসর হিসেবে দেখা যায়।
-
সীমাবদ্ধতা: যদিও এটি throughput বাড়ায়, তবুও এটি দ্বিগুণ পারফরম্যান্স দেয় না, কারণ দুটি থ্রেড একই ফিজিক্যাল রিসোর্স ভাগ করে নেয়।
অতএব, সঠিক উত্তর হলো খ) — Allows a single physical core to execute multiple threads simultaneously, কারণ Hyper-Threading প্রযুক্তি একটি কোরকেই একাধিক থ্রেড একসাথে চালাতে সক্ষম করে।

0
Updated: 17 hours ago