ASHISH SRIVASTAVA

▼
Sunday, 6 January 2019

Getting Available Server Disk Space (Total Size / Free Space) SQL Query

›
SELECT distinct(volume_mount_point), total_bytes/1048576 as Size_in_MB, total_bytes/1048576/1024 as Size_in_GB, available_bytes/1048576 ...
1 comment:
Saturday, 28 July 2018

Find Largest Element of an Array using Function in Python

›
# Find Largest Element of an Array using Function # python function to find maximum # in arr[] of size n def largest(arr,n): # Initi...
1 comment:
Thursday, 26 July 2018

Swap two variables without using third variable in Python

›
# Swap two variables without using third variable in Python a = input(" Please Enter the First Number: ") b = input(" Ple...
Wednesday, 25 July 2018

Two Number Sum in Python

›
# Simple Python program to Add Two Numbers number1 = input(" Please Enter the First Number: ") number2 = input(" Please E...
Thursday, 12 April 2018

Track your Facebook login attempt

›
Facebook provides a feature which allows you to see all active sessions from different devices and apps together with the date it was last...
Wednesday, 4 April 2018

Convert AM/PM time to 24 hours format C#

›
C# hh:mm tt (12 Hours to 24 Hours Format) convert using System.Globalization; var cultureSource = new CultureInfo("en-US", f...
Thursday, 15 March 2018

MVC asp.net Multi Level Menu Bind

›
Model: public class M_MenuModel     {         #region Variable         public Int32   MMID { get; set; }         public string MM_N...
‹
›
Home
View web version

Contributors

  • A
  • Ashish Srivastava
  • Manish Srivastava
Powered by Blogger.