1 votes
2
Is in conservative 2pl we release the locks after it commit $\mathbf{or}$locks can be released at any point of time and need not after commit operation ?Please Explain wi...
1 votes
3
In the switch statement, if we write default case above all then will it be executed?a = 2;switch(a){default : print("abc");case 2 : print("xyz");}what will be the o/p ?
0 votes
4
https://gateoverflow.in/1036/gate2004-39WHAT IS DIFFERENCE BETWEEN TYM COMPLEXITY AND PROGRAM EXECUTION TIME??
0 votes
5
Can we take image as an input in linked list using c programming?If 'yes' then how to implement that?
4 votes
7
#include <stdio.h>void reverse(int i);int main(){reverse(1);}void reverse(int i){if (i 5)return ;printf("%d ", i);return reverse((i++, i));}I am not able to understand h...
1 votes
8
Please explain B and B+ tree Concept
0 votes
9
The maximum number of dimesions in array are .......................................in c language.
2 votes
11
What is the difference between height and levels for a tree. What will be the value of height and level for root node and why?
2 votes
12
Has anybody tried their hands in Raspberry Pi? Or have an experience with Arduino?? I meant in terms of practical exposure. If yes, kindly share your valuable insights an...
0 votes
13
1 votes
14
2 votes
16
Number of Cateogires are 5, Thier total weights are w1,w2,w3,w4,w5={7,2,4,8,6}b1,b2,b3,b4,b5={5,6,4,3,2}M=6=Maximum Capacity= WI am having confusion How to solve using dy...