Binary Tree Data Structure A tree whose elements have at most 2 children is called a binary tree. Since each element in a binary tree can have only 2 children, we typically name them the left and right child. A Read More …
Blog
Explain any two rotations performed on an
AVL tree with the he* of example.
AVL Tree- AVL trees are special kind of binary search trees. In AVL trees, height of left subtree and right subtree of every node differs by at most one. AVL trees are also called as self-balancing binary search trees. Example- Following Read More …
What is splay tree ? How is it different
from a tree ? Explain
A splay tree is a binary search tree with the additional property that recently accessed elements are quick to access again. Like self-balancing binary search tree All normal operations on a binary search tree are combined with one basic operation, called splaying. Advantages Good performance Read More …
Write linear/sequential search algorithm
and calculate time and space complexity
o
Searching- Searching is a process of finding a particular element among several given elements. The search is successful if the required element is found. Otherwise, the search is unsuccessful. Searching Algorithms- Searching Algorithms are a family of algorithms used for Read More …
Write short notes on the following :CASE tool
CASE Tools CASE tools are set of software application programs, which are used to automate SDLC activities. CASE tools are used by software project managers, analysts and engineers to develop software system. There are number of CASE tools available to Read More …
Discuss the following types of testing
techniques :White Box testing
7 Different Types of White Box testing techniques | White box Testing Tools Whitebox testing is one of the popular kind, which has attracted a lot of users because of the functionality. There are Different Types of White Box testing Read More …
Discuss the following types of testing
techniques :(i) Black Box testing
The black box is a powerful technique to check the application under test from the user’s perspective. Black box testing is used to test the system against external factors responsible for software failures. This testing approach focuses on the input Read More …
Explain the process and technical related
issues in software maintenance
Software Maintenance is the process of modifying a software product after it has been delivered to the customer. The main purpose of software maintenance is to modify and update software application after delivery to correct faults and to improve performance. Read More …
List and discuss the importance of various
types of feasibility studies.
Types of Feasibility Study in Software Project Development Feasibility Study in Software Engineering is a study to evaluate feasibility of proposed project or system. Feasibility study is one of stage among important four stages of Software Project Management Process. As name suggests feasibility study Read More …
List and explain all the components of a
Management Information System.
Components of Management Information System (MIS) MIS is a system that takes data as input, processes it to generate information that can help the management of an organization in decision-making and strategic planning. Today, most organizations implement the MIS so Read More …