Highest voted questions in Programming and DS

1 votes
2 answers
1902
1 votes
1 answer
1903
1 votes
2 answers
1905
In a circularly linked list organization, insertion of a record involves the modification ofno pointer$1$ pointer$2$ pointers$3$ pointers
1 votes
3 answers
1906
In C programming language, if the first and the second operands of operator $+$ are of types int and float, respectively, the result will be of type intfloatcharlong int
1 votes
1 answer
1907
What will be the value of $x$ and $y$ after execution of the following statement(C language) n = 5; x = n++; y = -x;$5,-4$$6,-5$$6,-6$$5,-5$
1 votes
2 answers
1909
1 votes
2 answers
1910
If queue is implemented using arrays, what would be the worst run time complexity of queue and dequeue operations?$O(n),O(n)$$O(n),O(1)$$O(1),O(n)$$O(1),O(1)$
1 votes
5 answers
1914
1 votes
3 answers
1915
1 votes
3 answers
1919
Kadane algorithm is used to findMaximum sum subsequence in an arrayMaximum sum subarray in an arrayMaximum product subsequence in an arrayMaximum product subarray in an a...