Recent activity by mohitjarvissharma

1 answer
2
Given 2-sorted arrays each of n-elements and distinct. How much time it will take to find middle element of the union sorted array?a) O(1)b) O(logn)c) O(n)d) None of thes...
3 answers
4
5 answers
7
A program consists of two modules executed sequentially. Let $f_1(t)$ and $f_2(t)$ respectively denote the probability density functions of time taken to execute the two ...
3 answers
10
Write a regular expression for all strings of $0$’s and $1$’s in which the total number of $0$’s to the right of each $1$ is even. Justify your answer.
1 answer
11
Given a pointer to a node to be deleted what is the time complexity to delete a node in the circular linked list :i think answer is O(1).Am i right?
2 answers
13
fallacy , contradiction and invalid argument are same or different
2 answers
14
#include <stdio.h main() { char *p = "Sanfoundry C-Test"; p[0] = 'a'; p = 'b'; printf("%s", p); }
2 answers
15
#include <stdio.h>main(){char *p = 0;*p = 'a';printf("value in pointer p is %c\n", *p);}
1 answer
16
which is the best book for Gate cse topicwise previous year solved paper solution ?
1 answer
17
what is the recurrence relation for binary search and linear search?please explain how to derive them.
1 answer
19
How radix sort considered to be an application of linked list? Tell me clearly
1 answer
20
i could not remember the strassen matrix multiplication equation is it necessary to remember the equationwhich is given by https://www.geeksforgeeks.org/easy-way-remember...
0 answers
22
Should i leave out the proving questions in peter linz?I have a good idea about how to use theorems but struggle with proving questions. Since there is a constraint on ti...
0 answers
26
Is reema thareja a suitable book for GATE Data structures?
1 answer
29
2 answers
30
HelloI am reading chapters from Galvin and attempting its back exercises.However, there is nothing to compare my answers to, I mean there are no answers given anywhere.Do...