৩১১১
The memory sizes in mainframe computers and advanced technology microcomputer are expressed as -
উত্তর
Megabytes
৩১১৫
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)