What is the language used for Artificial Intelligence
lisp
c
c++
cobol
What is the character set used in JAVA 2.0 ?
Unicode
Binary
Ascii
None of the Given Answers
Why there is no recursion in Fortran ?
There is no dynamic allocation
There is no memory allocation
There is dynamic allocation
None of the Given Answers.
What is the worst case complexity of Quick sort?
O(n2)
O(log n2)
O(nn)
None of the Given Answers
In a sequential search, what is the average number of comparisons it takes to search through n elements ?
(n+1)/2
(n+1)/4
(2n+1)/2
None of the Given Answers
What is the size of the array declared as double * X[5] ?
5 * sizeof ( double * )
10 * sizeof ( double * )
5 * sizeof ( int * )
None of the Given Answers
A binary search tree with node information as 1,2,3,4,5,6,7,8 is given. Write the result obtained on preorder traversal of the binary search tree ?
53124768
53214768
53124678
None of the Given Answers
In (3*4096+15*256+3*16+3). How many 1's are there in the binary representation of the result ?
10
12
13
19
If the logical memory of 8 X 1024 is mapped into 32 frames, then the number of bits for the logical address are____ ?
13
18
19
None of the Given Answer
There are processes which take 4,1,8,1 machine cycles respectively. If these are executed in round robin fashion with a time quantum of 1, what is the time it take for process 4 to complete ?