0 votes
1
From a complete binary tree T of 8 leaf nodes, two leaf nodes a and b are selected randomly and uniformly. What is the expected distance between a and b in T?
1 votes
2
What is the output of tho following program?main(){ int x=2, y=5; if(x<y) return (x=x+y); else printf("z1"); printf("z2"); }$z2$$z1z2$Compilation errorNone of these
2 votes
5
Number System Question...What are all the options that can't be exactly represented...Question is like b7 b6 ....
3 votes
6
Value of Global variable counter in C program is .
0 votes
8
1)Suppose that G is cyclic group of order 10 with generator a €G .Order of a^8 is...2)(G,*) is an abelian group which of the following must hold A)for all g€G. g-...
–1 votes
9
A $32$-$bit$ adder is formed by cascading $4$-$bit$ CLA adder.The gate delays (latency)for getting the sum bits is$16$$18$$17$$19$
0 votes
11
ptrdata is a pointer to a data type . The expression *ptrdata++ is evaluated as ( in C++) a) *(ptrdata++) b) (*ptrdata)++c) *(ptrdata)++ d) depends on compiler
1 votes
13
primary index , secondary index and clustered index are sparse indexes or dense?
2 votes
15
1 0 [3x] dx
1 votes
16
If all state of DFA is final then it accpets $\sum$ (i.e) regulartrue or false
0 votes
17
What is best time complexity to search element in sorted doubly linkedlist??O(n) O(nlogn) O(log n) O(n2)
1 votes
18
What is the maximum size of data that the transport layer can pass to the Network layer below?
1 votes
22
The first address of a block should be exactly divisible by no. Of address of a block Explain with example
1 votes
24
2 votes
27
1 votes
28
What could be the best algorithm from the following when the time complexity is measured based bon the number of swaps performed by the sorting algorithm?1. Selection sor...
0 votes
29
What is the time complexity to construct a binary tree when inorder and preorder traversal of the tree is given?1. O(n)2.O(n log n)3. O(n2)4.O(n2 log n)