ACID Properties A transaction is a single logical unit of work which accesses and possibly modifies the contents of a database. Transactions access data using read and write operations.In order to maintain consistency in a database, before and after the transaction, certain Read More …
Blog
Explain Different Operators In C++ Programming Language
C++ Operators In this tutorial, we will learn about the different types of operators in C++ with the help of examples. In programming, an operator is a symbol that operates on a value or a variable. Operators are symbols that Read More …
Write a C++ program to explain exception handling in C++
One of the advantages of C++ over C is Exception Handling. Exceptions are run-time anomalies or abnormal conditions that a program encounters during its execution. There are two types of exceptions: a)Synchronous, b)Asynchronous(Ex:which are beyond the program’s control, Disc failure Read More …
Develop SRS for Online Examination Form Submission System. SRS should be as per
IEEE standard SRS template. Make necessary assumptions.
Software Requirement Specification (SRS) for Online Examination Introduction:The following subsections of the SRS document provide an overview of the entire SRS.i) Purpose: The purpose of the project is to provide online facility to Institutes to conduct onlineexams and to Students Read More …
What Is A Kruskal’s Spanning Tree Algorithm
Kruskal’s algorithm to find the minimum cost spanning tree uses the greedy approach. This algorithm treats the graph as a forest and every node it has as an individual tree. A tree connects to another only and only if, it Read More …
What Is File Management System?
A file management system is an application that is used to store, arrange, and access files stored on a disk or other storage location. The main purpose of a file manager is to enable users to create and store new Read More …
What is DBMS?(Database Management System)
DBMS software primarily functions as an interface between the end user and the database, simultaneously managing the data, the database engine, and the database schema in order to facilitate the organization and manipulation of data. Though functions of DBMS vary Read More …
Write A C++ Program to display the table of a given number use appropriate formatting to display the table
#include <iostream> using namespace std; int main {} { int i , n; cout <“Enter any number:”; cin>>n; for i=1; <=10; ++i) cout <<“\n” <<n<<“*<<i<<“=”<<n* i; return 0; } OUTPUT 6*1=6 6*2=12 6*3=18 6*4=24 6*5=30 6*6=36 6*7=42 6*8=48 6*9=54 6*10=60
What is Avl Tree?
AVL tree is a self-balancing Binary Search Tree (BST) where the difference between heights of left and right subtrees cannot be more than one for all nodes.
IGNOU BCA Examination June 2019 Date sheet
IGNOU Date Sheet BCA (June-2019) Morning: 10a.m-01p.m Evening: 02p.m-5p.m 1 Semester S.no Date Timing Subject 1 13/6/2019 Evening FEG -02 2 21/6/2019 Morning ECO 1 3 15/6/2019 Evening BCS 11 4 17/6/2019 Evening BCS 12 2 Semester S.no Date Timing Read More …