ASHISH SRIVASTAVA
(Move to ...)
▼
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...
Friday 9 March 2018
Update a table using JOIN in SQL Server
›
UPDATE t1 SET t1.TID = t2.DOID FROM dbo.Table1 AS t1 INNER JOIN dbo.Table2 AS t2 ON t1.CommonField = t2.[Common Fie...
‹
›
Home
View web version