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

The register SP in a microprocessor:

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
Points to the top of the stack
২৬৪২

Consider 3 processes (P1, P2, P3) and 2 resources (R1, R2). If P1 holds R1 & requests R2, P2 holds R2 & requests R1, what is the minimum number of additional resource units of R1 or R2 needed to the deadlock assuming no preemption?

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
1 unit of R1 or 1 unit of R2
২৬৪৩

UDP is a ______ protocol.

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
Connection-less
২৬৪৪

Which of the following is not a characteristic of problems suited for Dynamic programming (SP means subproblems)?

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
Independent SP
২৬৪৫

Contrapositive of “If it rains, the home team wins”:

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
If it does not rain then the home team does not win
২৬৪৬

Greedy methods guarantee an optimal solution when:

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
Problems have optimal substructure and greedy choice property
২৬৪৭

For a connected acyclic graph with v vertices and e edges we have:

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
v = e + 1
২৬৪৮

Find the output of the following code snippet: #include #define MULTIPLY(a,b) a/b int main(){ int x=5, y=2, result; result = MULTIPLY(y+x,y+x); printf("%d",result); return 0; }

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
9
২৬৪৯

A 16-bit address bus can address a maximum of ____ KB memory.

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
64
২৬৫০

A* search algorithm is:

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
Complete and optimal if the heuristic is admissible