T
Tusher Academy
Menu
Home একাডেমি ভর্তি পরীক্ষা চাকরি পরীক্ষা ব্লগ প্যাকেজ যোগাযোগ
Quick actions
Login Register
অনুসন্ধান করুন
তথ্য প্রযুক্তি
বিষয়ভিত্তিক
২৬৩১

“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
২৬৩৪

In machine learning, supervised learning means:

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
Training with labeled data
২৬৩৫

____ testing is performed without a knowledge of the internal implementation.

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
Black box
২৬৩৬

Which one is not an addressing mode?

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
Sequential
২৬৩৭

The number of binary strings of length 5 is:

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
32
২৬৩৮

A half-adder circuit has:

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
2 inputs, 2 outputs
২৬৩৯

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