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

The memory sizes in mainframe computers and advanced technology microcomputer are expressed as -

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

Which network protocol is used to send Email?

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
SMTP
৩১১৩

Which enables us to send the same letter to different people?

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
mail merge
৩১১৪

Which of the following is not the Section Break Option?

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
Previous Page
৩১১৫

Suppose a C program has floating constant 1,414. what's the best way to convert this as 'float' data type?

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
1.414f or 1.414F
৩১১৬

Consider the following variable declarations and definitions in C 1) int var 9_ = 1; ii) int 9_ var= 2; iii) int_ = 3; Choose the correct statement w.r.t. above variables.

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
Both i) & iii) are valid
৩১১৭

For a given integer, which of the following operators can be used to 'set' and 'reset' a particular bit respectively?

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
I and &
৩১১৮

Let x be an integer which can take a value of 0 or 1. The statement if x == 0) x = 1; else x = 0, is equivalent to which one of the following?

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
x = 1 - x;
৩১১৯

Which of the following is not a stable sorting algorithm in its typical implementation?

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
Quick Sort
৩১২০

Randomized quicksort is an extension of quicksort where the pivot is chosen randomly. What is the worst case complexity of sorting n numbers using randomized quicksort?

উত্তর সিলেক্ট করলে সঠিক ও ভুল দেখাবে।
বিস্তারিত
উত্তর
O(n2)