JavaScript Tutorial If..Else..ElseIf, Switch Statements – PHP Basics February 10, 2022 0 Comments If...Else..ElseIf Statement is used when you want to perform different conditions in a program. If one condition is true another… Read more »
JavaScript Tutorial Date And Time – PHP Basics February 9, 2022 0 Comments In PHP to format a date or a time, 'date( )' function is used. This function makes time and date easy… Read more »
JavaScript Tutorial Form Validation – PHP Basics February 8, 2022 3 Comments Here, In this simple form validation "Name", "E-mail", "Subject", "Feedback" and "Gender" fields are required. These fields cannot be empty (error… Read more »
JavaScript Tutorial Hangman Game Using Python February 7, 2022 1 Comment This is a Python script of the classic game "Hangman". The word to guess is represented by a random alphabet… Read more »
JavaScript Tutorial Number Conversions Using JavaScript February 4, 2022 0 Comments This program coverts Decimal number to binary, hexadecimal and octal. Follow these Instructions or You can simply download source code… Read more »
JavaScript Tutorial Auto Sum Calculation Using JavaScript February 3, 2022 0 Comments This JQuery script will show how to auto calculate sum while you type values in the fields. It's a Simple… Read more »
JavaScript Tutorial Random Password Generator Using JavaScript February 2, 2022 0 Comments This Simple Program allows user to enter password length and generates Random Password according to user's length. Follow These Instructions… Read more »
JavaScript Tutorial Python Basics : Multiplication Table January 30, 2022 0 Comments Multiplication Table From 0 to 15. Python Code :- #multiplication table from 0 to 15 print(" ",end="") for i in… Read more »
JavaScript Tutorial Python Basics : How To Calculate Salary of Employee (with Taxable amount) January 29, 2022 2 Comments Simple Python Program To Calculate Salary of Employee with their certain Taxable amount. This program allows the user to enter values… Read more »
JavaScript Tutorial Python Basics : How To Calculate Average Number January 28, 2022 0 Comments This simple Python program allows the user to enter infinite values (with y/n condition ) and then add those entered numbers and… Read more »