২৬৩১
“Either all of its operations are executed or none.” — This refers to:
উত্তর
Atomicity
২৬৩২
Interrupt-driven I/O is preferred over polling because it:
উত্তর
Reduces CPU idle time
২৬৩৩
What is the output of the following C code? #include int main(){ int arr[5] = {1,2,3,4,5}; int *p = (arr+2); printf("%d",p[-1]); return 0; }
উত্তর
3
২৬৩৫
____ testing is performed without a knowledge of the internal implementation.
উত্তর
Black box
২৬৩৯
Which one is correct to declare & initialize array in C?
উত্তর
int arr[5] = {1,2,3,4,5};
২৬৪০
______ algorithm is used to find a shortest path in a positive weighted graph.
উত্তর
Dijkstra’s