Which one is not an addressing mode?
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
During a phone conversation, which mode of communication takes place?
Created: 2 days ago
A
Simplex
B
Full-duplex
C
Half-duplex
D
Multiplex
Answer: খ)
Full-duplex 0
Updated: 2 days ago
Communication modes:
A priority queue is best-implemented using a:
Created: 2 days ago
A
Stack
B
Linked list
C
array
D
heap
Answer: ঘ)
Heap
A priority queue is an abstract data type where each element has
a priority, and the element with the highest (or lowest) priority is served
first.

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