Transaction State Diagram Tutorial Transaction Sate Diagram represents the life cycle of a transaction in DBMS. In this tutorial we will learn about different states of a transaction. Transaction State Diagram The Transaction State Diagram shows the basic states through which transaction flow through its lifetime. Transaction state diagram is as shown in following figure. […]
Author: admin
Transaction in DBMS
Transaction in DBMS Transaction in DBMS is a logical unit of operations to be performed on Data stored in database. In this tutorial we will learn about basics of transaction, advantages and disadvantages of transaction. What is a Transaction in DBMS ? Transaction in DBMS is a series of instructions followed by a single user or […]
Anomalies in Database with Example
Anomalies in Database with Example Anomalies in Database are the main cause of Data Redundancy in DBMS. In this tutorial we will learn about anomalies in database with examples. A person who design the database must have the knowledge about anomalies in database. In Database normalization approach we try to remove the database anomalies. What […]
Functional Dependency in DBMS
Functional Dependency in DBMS Functional Dependency in DBMS is the basic of Database Normalization. In this tutorial we will learn about Functional Dependency Concepts such as functional dependency introduction, functional dependency example .and Inference rules for functional dependency with example. Frequently Asked Questions Some frequently asked questions asked from functional dependency are are given below […]
Sum of Natural Numbers Program using Recursion
Sum of Natural Numbers Program using Recursion C Program to find Sum of Natural Numbers using Recursion is discussed here in this tutorial. Algorithm Step 1 – First we declared a function sum( ) to calculate the sum of N natural numbers which accept a parameter K here K represent to the number up to […]
C Program to Find Factorial using Recursion
C Program to Find Factorial using Recursion In this tutorial we have explained the C Program to find the factorial using recursion. C Program to calculate the Factorial of a non negative number using recursive approach is discussed here in this tutorial. Algorithm Step 1– Declare function fact() that take the number as parameter. Step […]
C Program to find Sum of Array Elements Using Function
C Program to find Sum of Array Elements Using Function Here in this tutorial we have explained and implemented a c program to find the sum of array elements using function by passing array as function parameter. C Program to find Sum of Array Elements Using Function is given below #include <stdio.h> float calculateSum(float num[]); […]
Call By Reference Program in C
Call By Reference Program in C The difference between the Call by Value and the Call by Reference method is generally asked in the University Examination and also asked in technical interview. The difference between call by value and call by reference is that in the case of the call by value method, if we […]
Call by Value Program in C
Call by Value Program in C Call by Value Program in C is a method of passing the arguments to function and call the function in main( ) method. In tutorial we have discussed the concept of formal argument and actual argument. We have explained the concept of call by value method with help of […]
C Program to Print Fibonacci Series
C Program to Print Fibonacci Series The Fibonacci series is the sequence of numbers in which every number is the sum of the preceding two numbers in the sequence. For example 0 1 1 2 3 5 8 13 21 C Program to Print the Fibonacci series is given below. #include <stdio.h> int main( ) […]
C Program to Reverse a Number
C Program to Reverse a Number C Program to Reverse a Number or find the reverse of a number is mostly asked in University exam. The program is given below #include <stdio.h> #include<conio.h> void main( ) { int n, reverse = 0, remainder; printf(“Enter an integer: “); scanf(“%d”, &n); while (n != 0) { remainder […]
C Program to Calculate the Power of a Number
C Program to Calculate the Power of a Number C Program to calculate the power of a number is generally asked in university exam. We can implement this program in c using predefined pow ( ) function and can also implement without using pow( ) function. Here in this tutorial we have implemented power calculation […]
Program to Check Vowel or Consonant in C
Program to Check Vowel or Consonant in C Five English alphabet letter a , e, i, o and u are known as vowels. All other alphabets are consonant. In this tutorial we will learn to implement a program in c to check whether a Character is a Vowel or Consonant using switch case. This program […]
Even Odd Program Using Ternary Operator
Even Odd Program Using Ternary Operator In C Programming ternary operator or conditional operator is an alternative of if else statement in c programming. syntax of ternary operator is given as ( condition ) ? expression 1 : expression 2 if the mentioned condition is true then expression 1 will be execute otherwise expression 2 will […]
C Program to find Transpose of a Matrix
C Program to find Transpose of a Matrix Write a Program in C to find the Transpose of a Given Matrix . Matrix Transpose program in C is generally asked in University exam of C Programming subject. In this tutorial transpose of a matrix program is explained with output and program. Transpose of a matrix […]
Matrix Multiplication Program in C
Matrix Multiplication Program in C Matrix Multiplication Program in C is an important program for the C Programming Subject. Matrix Multiplication in C Program is generally asked in AKTU Examination. In this tutorial we have explained the Matrix Multiplication in C Program with implementation and output. This matrix multiplication with example program will be definitely […]
Top 3 C Array Solved Programs
C Array Solved Programs C Array Solved Programs are discussed and explained in this tutorial. These programs are generally asked in technical interview and in university exam of C Programming. These Programs are based on One Dimensional Array in C. I hope that These c array solved programs will be beneficial for the students. Program […]
Python Programming Questions for Practice
Python Programming Questions for Practice In this tutorial we have list down some important python programming questions for practice which are generally asked in technical interview and also in semester examination of different Universities. If are a beginners to Python Programming language or you have Python Programming as a Subject in Your Semester then these […]
Operators in C Programming
Operators in C Programming In this tutorial we will learn about Operators in C Programming. Various types of operators are explained with example. This tutorial will be useful for the students learning C Programming. Let’s start with introduction of Operators in C. Frequently Asked Questions Some frequently asked question from operators in C tutorial are […]
Passing Array to Function in C Language
Passing Array to Function in C Language In this tutorial we will learn how to pass array to function as an argument in C. In C programming there are some situations in which we have to pass the more than one than one variables of same types as an argument to function. For example we […]