Through below Script we are able to find out the User database Size in SQL Server. Check User database size
Continue readingAuthor:
Factorial Program in C Using Pointers
#include<stdio.h> void find_Factorial(int,int *); int main() { int i,fact,num; printf(“Please Enter a number: “); scanf(“%d”,&num); find_Factorial(num,&fact); printf(“Factorial of %d number
Continue readingHow to Generate a Random String in Python
In this post, I will show you how to generate a random string of length n in Python. for example,
Continue readingGenerate Random Strings and Passwords in Python
If password contains characters, digits and special symbols are considered as a strong password. For example, if we want to
Continue readingPython Program to Check whether Year is a Leap Year or not
In this tutorial, we are going to write a Python program to check whether the input year is leap year
Continue readingPython Program to Find Factorial of Number
In This program going to take an input from user and finds the factorial of that number using a recursive
Continue readingPython Program to Check Alphabet
In this tutorial, we are going to write a Python program and check whether the entered character is an Alphabet
Continue readingPython Program to Convert Decimal to Hexadecimal
In this post, we will see how to convert the decimal number into hexadecimal number using the built-in Python function.
Continue readingSQL SERVER :- Temporary Stored Procedures in SQL Server
In this post, I am going to discuss about SQL Server Temporary Stored Procedure with examples. Temporary Stored Procedures:- The
Continue readingHow to convert ArrayList to Array and Array to ArrayList in java ?
Let’s see the below example to convert ArrayList to Array and Array to ArrayList in Java: import java.util.*; public class
Continue reading