In Agile, backlog refers to the list of:
A
completed tasks
B
pending bugs
C
features and tasks to be developed
D
rejected requirements
উত্তরের বিবরণ
Agile পদ্ধতিতে (যেমন Scrum) backlog হলো এমন একটি তালিকা যেখানে ভবিষ্যতে সম্পন্ন করার জন্য নির্ধারিত কাজগুলো সংরক্ষিত থাকে। এটি প্রকল্প বা পণ্যের উন্নতির জন্য প্রয়োজনীয় features, user stories, tasks, ও enhancements-এর অগ্রাধিকারভিত্তিক একটি তালিকা।
মূল ধারণা:
-
Product Backlog: এতে এখনো বাস্তবায়ন না হওয়া features, improvements, user stories, এবং fixes অন্তর্ভুক্ত থাকে।
-
Sprint Backlog: এটি Product Backlog-এর একটি উপসেট, যেখানে নির্দিষ্ট sprint-এর জন্য নির্বাচিত কাজগুলো থাকে।
অর্থাৎ, backlog নির্দেশ করে—
-
ভবিষ্যতে ডেভেলপ বা ইমপ্লিমেন্ট করা হবে এমন features, tasks, এবং user stories।
-
এটি কখনোই completed বা rejected কাজের তালিকা নয়; বরং এটি Agile টিমের করণীয় তালিকা (to-do list)।
বিভ্রান্তি নিরসন:
অনেকে pending bugs ও features/tasks to be developed-এর মধ্যে বিভ্রান্ত হন, কিন্তু backlog মূলত সেই features ও tasks-এর তালিকা যা এখনো ডেভেলপ করা বাকি, bug fixing list নয়।

0
Updated: 2 days ago
OS System Calls performs the following basic operations on files:
Created: 2 days ago
A
Read, Write, Delete
B
Write, Print, Reposition
C
Delete, Truncate, Sort data
D
Modify, update, sort data
System calls হলো এমন একধরনের প্রোগ্রামিং ইন্টারফেস যা user programs ও operating system-এর মধ্যে যোগাযোগ স্থাপন করে। ফাইল ব্যবস্থাপনায় (file management) এই system call গুলো ব্যবহার করে প্রোগ্রামগুলো ফাইলের ওপর মৌলিক কাজ সম্পন্ন করতে পারে।
বিস্তারিতভাবে:
-
Read: ফাইল থেকে ডেটা পড়ার জন্য ব্যবহৃত হয়।
-
Write: ফাইলে ডেটা লেখার কাজ করে।
-
Delete: ফাইলকে স্থায়ীভাবে স্টোরেজ থেকে মুছে ফেলে।
-
এ ছাড়াও open, close, rename ইত্যাদি system call বিদ্যমান, কিন্তু Read, Write, Delete হলো মূল এবং সবচেয়ে মৌলিক ফাইল অপারেশন।
ভুল বিকল্পগুলো:
-
(খ) Write, Print, Reposition → Printing কোনো মূল file operation নয়, এবং reposition (seek) কেবল সহায়ক।
-
(গ) Delete, Truncate, Sort data → Sorting system call-এর মাধ্যমে করা হয় না।
-
(ঘ) Modify, Update, Sort → OS কখনও sorting পরিচালনা করে না; এটি অ্যাপ্লিকেশন স্তরে সম্পন্ন হয়।

0
Updated: 2 days ago
What does the 'continue' statement do inside a loop?
Created: 2 days ago
A
exits the loop entirely
B
terminates the program
C
re-execute the loop twice
D
skip the rest of the current iteration and move to the next
Answer: ঘ)
Skip the rest of the current iteration and move to the next
Explanation:
The continue statement in programming (C, C++, Java, Python, etc.) is used
inside loops:
When the program encounters continue, it
immediately skips the remaining statements in the current iteration.
Then, the loop proceeds with the next iteration (checking the loop
condition for while/for loops).
Example in C:
for(int i = 1; i <= 5; i++) {
if(i == 3) {
continue; // skip printing 3
}
printf("%d ", i);
}
Output:
1 2 4 5
Notice that 3 is skipped, but the loop continues.
Incorrect options:
(ক) Exits the loop
→ that’s break
(খ) Terminates the
program → that’s exit()
(গ) Re-execute loop
twice → not related

0
Updated: 2 days ago
Which one is not an addressing mode?
Created: 2 days ago
A
Immediate
B
Direct
C
Indirect
D
Sequential
Answer: ঘ)
Sequential
Addressing modes specify how the operand of an instruction
is accessed in a CPU.
Common addressing modes:

0
Updated: 2 days ago