Recent activity by Durgesh_7979

1 answer
1
please solve in paper formet Explain the properties of B-Tree Also Construct B+ tree with order P=410,5,30,40,20,17,90,45,93,60,20,50,29
2 answers
2
In QuickSort algorithm, which of the following statements is NOT true regarding the partition process?a) Partition always divides the array into two non-empty subsets.b) ...
2 answers
3
char st[] = {‘G’,’A’,’T’,’E’,’\0’};then string ka length 4 hoga ya 5 with null character?
2 answers
6
The following table describes a binary relation. Find the set of ordered pairs that is this relation, as in the definition of a binary relation.$$\begin{array}{c|c|c|c|c|...
1 answer
8
Could anyone confirm is this a part of TOC gate syllabus or not? Thank you!
1 answer
9
Which of the following are the products of grounded theory?A. Experimental frameworkB. ConceptsC. HypothesesD. Attributes of a categoryE. Theoretical dilution
1 answer
14
Under what category does Universal Serial Bus fall: System Bus or a Network connection or something else?
1 answer
15
The total number of binary trees possible with height n - 2 having n nodes are?(2n - 5)^ 2n - 3 (2n - 7)^2n - 3(n - 3) ^2n - 2(2n - 7)^ 2n - 2
1 answer
16
3 answers
17
#include<stdio.h void print(int n) { printf("Hello "); if(n++ == 0) return ; print(n); n++; } int main() { void print(); print(-4); }How many times printf execute?? And H...
1 answer
18
Given: (p$ \vee$ q) is True. Find the truth value of statements, 1. p is false or q is true. (Can't determine) 2. If p is false then q is true. (True) is my answer correc...