One of my friends asked me one question when he tries to check the execution plan the he received an
Continue readingAuthor:
How to Enable and Disable All Constraint for Table and Database in SQL Server
The best way to insert valid data in database is with the constraints. It is also known as data enhancing,data
Continue readingC Program to Implement RADIX SORT Algorithm
#include<stdio.h> void radixsort(int arr[], int n); int main() { int arr[100],num,i; printf(“How many elements do you want to Enter for
Continue readingC++ Program to Perform Conversion from Celsius to Fahrenheit or Fahrenheit to Celsius
#include<iostream> int main() { float temp,conv_result; int choice; std::cout<<“Conversion of Temperature From ” << “\n 1.Celcius to Fahrenheit”; std::cout<<“\n 2.Fahrenheit
Continue readingCaesar Cipher Encryption & Decryption in C and C++
Caesar Cipher:- Caesar cipher is one of the earliest known and simplest ciphers. It is a type of replacement cipher
Continue readingPython program to check whether a number is Prime or not
# Taking one number below and check it is prime or not number = 13 if number > 1: for
Continue readingPython Program to Calculate the Area of a Triangle
we are using below formula to calculate area of triangle s = (a+b+c)/2 area = √(s(s-a)*(s-b)*(s-c)) a = 4
Continue readingPython Program to Find Armstrong Number
Find Below Program to check Armstrong numbers in certain interval # take input from the user low_range = int(input(“Enter lower
Continue readingInsertion Sort Program in C
Implementing Insertion Sort Algorithm #include<stdio.h> int main() { int arr[20],num,Temp,i,j; printf(“\n\n How Many Number do you want to enter…: “);
Continue readingPython Program to Print the Fibonacci series
Program to display the Fibonacci sequence up to n-th term where n is provided by the user count = int(input(“enter
Continue reading