Procedure in SQL Procedure in SQL and advantage and disadvantages of Procedure are discussed here i this tutorial. Questions based on procedure are general asked in GATE and UGC NET exam. What is Procedure in SQL ? PL/SLQ is the advancement over SQL. PL/SQL has the power of combining then procedural statements. Procedure is an […]
Author: admin
Huffman Tree in Data Structure
Huffman Tree in Data Structure Huffman Tree in Data Structure is used in Huffman Coding. In this tutorial we will learn about Huffman coding tree in data structure. Questions based on Huffman tree are generally asked in different university examination of Data Structure subject and also in GATE and UGC NET exam. Frequently Asked Questions […]
Floyd Warshall Algorithm Example
Floyd Warshall Algorithm Example Floyd warshall algorithm example in C or Data structure is used to find the all pairs shortest path it means shortest path among all the vertices pairs in a given weighted graph. In this tutorial we have explained the floyd warshall algorithm example. Frequently asked Questions Some frequently asked questions are […]
Dijkstra Shortest Path Algorithm in DS
Dijkstra Shortest Path Algorithm in Data Structure Dijkstra shortest path algorithm in data structure is used to find the shortest path from one vertex to all other remaining vertices in the given weighted graph. Dijkstra algorithm is also known as single shortest path algorithm because in this algorithm there is a single source vertex. In […]
Operating System GATE Questions with Solution- SET1
Operating System GATE Questions – Set1 The operating system gate questions are important to practice for GATE exam. Operating System is a scoring subject for the GATE Computer Science Exam. In this tutorial, we are going to discuss Operating System GATE questions with solution and explanations. Questions based on CPU Scheduling, page replacement Algorithms, process […]
Top 7 Best Microsoft Office Alternatives of 2024
Top 7 Best Microsoft Office Alternatives of 2024 Top 7 Best Microsoft Office Alternatives of 2024 are discussed here in this post. MS office is a popular package used for documents, presentation, spreadsheets and for database etc. Microsoft Office is mostly used in industry as well as in academic institutions and universities. Microsoft Office is […]
AVL Tree Questions and Answers
AVL Tree Questions AVL tree questions are explained here in this tutorial with solution. AVL Tree questions are generally asked in GATE CSE exam and also in UGC NET exam. AVL tree questions and answers explained in tutorial are also asked in previous year Data Structure Subject of AKTU examination. AVL practice problems discussed in […]
Binary Search Tree Problems and Solution
Binary Search Tree Problems and Solution Binary Search Tree Problems are generally asked in GATE ,UGC NET exam and also in University examination. There are two types of problems based on Binary Search Tree. These problems are (1) Construct or Build a Binary Search Tree for given sequence of numbers. (2) What will the Binary […]
Evaluation of Postfix Expression Examples
Evaluation of Postfix Expression Evaluation of Postfix Expression using Stack is an important topic in Data Structure for AKTU Data Structure Exam. Problem solving questions based on evaluation of postfix expression is generally asked in various university examination and also in competitive examination such as GATE and UGC NET. Today in this tutorial we will […]
Infix to Postfix Conversion using Stack Examples
Infix to Postfix Conversion using Stack Example Infix to postfix conversion using stack examples with answers are explained here in this tutorial. Infix to postfix conversion using stack based problem solving questions are generally asked in university examination and also in competitive examination. Today in this tutorial we have discussed the procedure to convert a given […]
Implementation of Queue using Linked List
Implementation of Queue using Linked List Implementation of Queue using Linked List in C is an important topic to be asked in University Examination and also in Competitive exam. In this tutorial we have explained with example how can we implement queue using linked list. Insertion and deletion operations on queue using Linked List are […]
Queue Data Structure
Queue Data Structure Queue Data Structure follow the FIFO principle. In this tutorial we will learn about basic introduction of Queue, different operations on Queue and Array Implementation of Queue is also explained. After the study of this tutorial students can easily answer the following frequently asked questions based on queue. Students also will be […]
Data Structure Imporatnt Questions from Unit 2
Data Structure Imporatnt Questions from Unit 2 Data Structure Important Questions asked from first unit are given in this tutorial. In this tutorial we have discussed the important topics and subtopics data structure first unit as per AKTU Data Structure Subject Syllabus. Data Structure Second Unit Topics and Subtopics As per AKTU Data Structure Syllabus […]
Data Structure Imporatnt Questions from Unit 1
Data Structure Imporatnt Questions from Unit 1 Data Structure Important Questions asked from first unit are given in this tutorial. In this tutorial we have discussed the important topics and subtopics data structure first unit as per AKTU Data Structure Subject Syllabus. Data Structure First Unit Topics and Subtopics As per AKTU Data Structure Syllabus […]
Deletion in Doubly Linked List at the End
Deletion in Doubly Linked List at the End Deletion in doubly linked list at the end means deleting the last node of a doubly linked list. In this tutorial, we will learn about how can we delete the last node of a doubly linked list. The algorithm and C Program to perform deletion in a […]
Deletion in Doubly Linked List from Beginning
Deletion in Doubly Linked List from Beginning Deletion in Doubly Linked List is an important operation. In this tutorial we will understand how can we delete a node in doubly linked list. Questions based on doubly linked list are asked in University examination. Doubly Linked List Deletion can be performed in following cases. (1) Deletion […]
Insertion after a Specified Node in Circular Linked List
Insertion after a Specified Node in Circular Linked List In this tutorial we will learn about how can we insert a new node after a specified node in circular linked list. We can also understand this as inserting a new node after a given node. To insert a new node after a specified node in […]
Insertion at the End of Circular Linked List
Insertion at the End of Circular Linked List In this tutorial we will learn about the Insertion at the end of Circular Singly Linked List. In previous tutorial we have discussed the Insertion in the beginning of circular linked list. Algorithm or steps to insert a new node at the end of circular linked list […]
Insertion at Beginning in Circular Singly Linked List
Insertion at Beginning in Circular Singly Linked List In Previous Tutorial we have already discussed and explained about how to create and display a Circular Singly Linked List in Data Structure in C. In this tutorial we will learn how to insert a new node at the beginning of the Circular Singly Linked List. To […]
Circular Linked List in Data Structure
Circular Linked List in Data Structure using C In this tutorial we will learn about the basic concepts of Circular Linked List in Data Structure using C. Content covered in this tutorial includes the introduction of Circular Linked List, Creating and displaying a Circular Linked List. This tutorial will be useful for the computer science […]