0 votes
2
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.
0 votes
3
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 votes
4
fallacy , contradiction and invalid argument are same or different
3 votes
5
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...
0 votes
6
#include <stdio.h>main(){char *p = 0;*p = 'a';printf("value in pointer p is %c\n", *p);}
0 votes
7
#include <stdio.h main() { char *p = "Sanfoundry C-Test"; p[0] = 'a'; p = 'b'; printf("%s", p); }
1 votes
8
which is the best book for Gate cse topicwise previous year solved paper solution ?
2 votes
9
what is the recurrence relation for binary search and linear search?please explain how to derive them.
0 votes
10
How radix sort considered to be an application of linked list? Tell me clearly
1 votes
11
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...