1 answer
2
The total number of ways in which 5 balls of different color can be distributed among 3 persons so that each person gets at least one ball is:
1 answer
3
Memory=1GB16 bit processorSystem is byte addressableHow many address lines required?I think 30 should be the ans as though processor is of 16bit but system is byte addre...
2 answers
4
1 answer
5
What will be the worst case time complexity for the following code segment?int count=0,N; for(i=0;i<N*2;i++){ for(j=0;j<i/3;i++){ for(k=0;k<j*j;k++){ count++; } } }Option...
1 answer
6
3 answers
9
6. A team P of 20 engineers can complete work or task in 32 days. Another team Q of 16 engineers can complete same task in 30 days.Then the ratio of working capacity of 1...
4 answers
10
A can do piece of work in 30 days while Bonku alone can do it in 40 days. If they work together, how long will it take to complete the work?
3 answers
11
A certain tree has two vertices of degree $4$, one vertex of degree $3$ and one vertex of degree $2$. If the other vertices have degree $1$, how many vertices are there i...
1 answer
12
Pr( Z 0 ) = ??How to calculate it? Ans is 0.5. Do we use standard normal variate(Z) table? Do GATE provide such table?
2 answers
15
plz tell how it take common B’ and B
2 answers
16
Which of the following is used to get back all the transactions back after rollback?a)Rollbackb)Commitc)undo d)Redo
1 answer
17
0 answers
18
0 answers
19
In this Question, two option is same ..how can decide which true or false
1 answer
20
1 answer
21
1 answer
23
An LCD TV is available at Rs. 27780 cash price of three equal annual instalments at 15 per cent per annum under CI compounding annually. Find each instalment amount(in Rs...
2 answers
27
Why B-tree & B+ tree is used in database indexing instead of other tree like BST, Binary tree etc??
1 answer
28
int main(){ int a,b; a = 10; b = 11; printf(“%d %d”, a++,b );}The number of tokens is
1 answer
29
What is the output??