2 votes
1 answer
1
0 votes
1 answer
4
I have scored 77.67 in GATE 2019. The rank predictor predicts my rank around 48 - 51.How accurate is the rank predictor?And if the predicted rank is accurate, then from w...
0 votes
1 answer
6
The given table shows the result of the class of 30. Find the probability that a given student who is passed in exam is a girl?
0 votes
0 answers
7
#include<stdio.h>int main ( ){ int demo ( ); // What is this and what does it do? demo ( ); (*demo) ( );}int demo ( ){ printf("Morning");}
1 votes
1 answer
10
What is the time complexity to find the Kth largest element in a Min-Heap? Or equivalently, What is the time complexity to find Kth smallest element in Max-Heap?
0 votes
1 answer
11
All the places where I have read the Ham-Cycle problem, the graph used is directed. Is the problem of finding Ham-Cycle on an undirected graph also NP-Complete or not?
4 votes
2 answers
13
T(n) = sqrt(n) * T(sqrt(n)) + n Given solution is O(log log n). But my solution is O(n log log n).'wolframalpha'' shows the answer same as mine. You can find the solution...