1 votes
2 answers
1
Anyone have any idea about barc online exam cut off 2017
1 votes
1 answer
2
Do any one have any idea about Integrated PHD and Mtech after B.Tech using gate score? Which Institute provide I-phd and how much gate score is needed?Please help ?
2 votes
0 answers
3
Which of the following are true?s1: A stack can be implemented by two queue.s2: A queue can be implemented by two stack.
3 votes
1 answer
4
which of the following regular exp represetn the set of all string over{0,1} ending with 001. (0+1)*00+ 2. 00+(0+1)+ +00 3. Both
1 votes
0 answers
5
Mov R1,R2 : R1< R2Add R2,R3 : R2< R2+R3Sub R3,R4 : R3< R3-R4Mul R1,R4 : R1< R1*R4Div R3,R4 : R3< R3/R4The program consist x WAW , y RAW, Z WAR dependecies then the value ...
1 votes
0 answers
6
A m/c has 32 bit instruction and 10 bit address. There are two types of instrucitons exists in m/c. One address instruction and two address instruction . Suppose the max ...
5 votes
1 answer
7
function(n){ val=0; for( i=1 to n) { if(n<=10000) for(j=1 to n) for(k=1 to n) val = val+1; else for( j=1 to n) val = val +1; } }what may be the time complexity of the fu...
0 votes
1 answer
9
Identify the correct sequence for searching 105 in a binary search tree?a. 500,250,190,220,150,120,105b. 80,800,500,90,270,280,105c. 20,30,80,200,90,120,105d. 30,50,80,20...
0 votes
1 answer
10
The best case time complexity to merge two sorted file of size m and n isA. O(m) B. O(n) C. O(MIN{m,n}) D. O(m+n)
0 votes
1 answer
11
An unsorted list contain log(n) (base 2) distinct elements. The time complexity to find an element in this list that is neither maximum nor minimum is?
0 votes
1 answer
12
The number of distinct BSTs that can be drawn having the same inorder traversal of tree as 6,12,20,32,45 are........
0 votes
1 answer
13
In getting the minimal expression for the function f(A,B,C,D) = sum(1,5,6,7,11,12,13,15) which of the following is no a prime implicant?A. ABC' (B). A'C'D (C) BD (D) ...
0 votes
1 answer
14
Consider an instruction pipe containing 4 stages as follows:FI=100NSDI=150NSEI=300 NSWO=200 NS1O instructions are exexuted in a pipe lining system. What is the speed up f...
0 votes
1 answer
15
0 votes
2 answers
16
How many onto function are there from a set with 5 element to a set with 4 elements?A. 340 B. 240 C. 440 D. 540
2 votes
2 answers
17
If sender window size is 75 and we are using Go back -N protocol then what will be sequence number required and what is the value of N?A. 0 to 75 and 76 B. 0 to 74 a...
0 votes
0 answers
18
Let A[1:n] be an array such that A[i]=i . An algorithm randomly permutes the elements of A, call the resulting array A' . Let X denote the number of location such that A'...
1 votes
1 answer
19
How many minimum number must be chosen from a set {1,2,3,...8} such that at least 2 of them must have sum=9?