Advertisement
Advertisement
Data Structures & Algorithms Quizzes, Questions & Answers
Recent Data Structures & Algorithms Quizzes
Questions: 10 | Attempts: 424 | Last updated: Mar 22, 2025
-
Sample QuestionWhat is the output of the code given below? #include void main() { int arr[] = {10, 20, 30, 40, 50, 60}; int *ptr1 = arr; int *ptr2 = arr + 6; printf("Number of Elements : %d", (ptr2 - ptr1)); printf("Number of Bytes : %d", (char*)ptr2 - (char*) ptr1); }
Questions: 10 | Attempts: 230 | Last updated: Mar 20, 2025
-
Sample QuestionWhat is the output of the code given below? #include void main() { int arr[] = {10, 20, 30, 40, 50, 60}; int *ptr1 = arr; int *ptr2 = arr + 6; printf("Number of Elements : %d", (ptr2 - ptr1)); printf("Number of Bytes : %d", (char*)ptr2 - (char*) ptr1); }
Questions: 25 | Attempts: 5278 | Last updated: Mar 22, 2025
-
Sample QuestionYang termasuk struktur data sederhana yaitu
Questions: 10 | Attempts: 647 | Last updated: Mar 22, 2025
-
Sample QuestionWhich of these is not a function of classification of data?
Questions: 35 | Attempts: 1102 | Last updated: Mar 20, 2025
-
Sample QuestionWhich statements are false regarding MapReduce?
Questions: 20 | Attempts: 139 | Last updated: Mar 19, 2025
-
Sample QuestionWhat is the function of 'r+' module in opening a file ?
Questions: 10 | Attempts: 363 | Last updated: Mar 21, 2025
-
Sample QuestionStruct Node{ int val; struct Node *next; }*head; int get_max() { struct Node* temp = head->next; int max_num = temp->val; while(______) { if(temp->val > max_num) max_num = temp->val; temp = temp->next; } return max_num; } Which of the following lines should be inserted to complete the above code?
Questions: 15 | Attempts: 2222 | Last updated: Mar 22, 2025
-
Sample QuestionThese are algorithm paradigms except one:
Questions: 15 | Attempts: 135 | Last updated: Apr 15, 2025
-
Sample QuestionWhich box is used for writing the processing instructions and doing calculations in a Flowchart?
Questions: 10 | Attempts: 7969 | Last updated: Jul 3, 2025
-
Sample QuestionWhat add-in program serves as the data analyzing tool in Excel?
Advertisement