Author: Fabian Ros

Posted in JavaScript Tutorial Python Tutorial

Hangman Game Using Python

This is a Python script of the classic game “Hangman”. The word to guess is represented by…

Posted in JavaScript Tutorial JS Tutorial

Number Conversions Using JavaScript

This program coverts Decimal number to binary, hexadecimal and octal. Follow these Instructions or You can simply…

Posted in JavaScript Tutorial JS Tutorial

Auto Sum Calculation Using JavaScript

This JQuery script will show how to auto calculate sum while you type values in the fields….

Posted in JavaScript Tutorial JS Tutorial

Random Password Generator Using JavaScript

This Simple Program allows user to enter password length and generates Random Password according to user’s length….

Posted in JavaScript Tutorial Python Python Tutorial

Python Basics : Multiplication Table

Multiplication Table From 0 to 15. Python Code :- #multiplication table from 0 to 15 print(” “,end=””)…

Posted in JavaScript Tutorial Python Python Tutorial

Python Basics : How To Calculate Salary of Employee (with Taxable amount)

Simple Python Program To Calculate Salary of Employee with their certain Taxable amount. This program allows the user…

Posted in JavaScript Tutorial Python Python Tutorial

Python Basics : How To Calculate Average Number

This simple Python program allows the user to enter infinite values (with y/n condition ) and then add those…

Posted in JavaScript Tutorial Python Python Tutorial

Python Basics : How To Add Numbers

In order to show, we are going to add two numbers using Arithmetic Operators. This simple Python program allows the…

Posted in Java Tutorial JavaScript Tutorial

Read And Write Images In Java

To read and write image files from local disk or from any URL, javax.imageio.ImageIO class is used. javax.imageio.ImageIO is a final…

Posted in Java Tutorial JavaScript Tutorial

How To Format Date In Java?

SimpleDateFormat class of java.text package is used to format given Date object in different pattern. This class has 2 important methods –…

Posted in Java Tutorial JavaScript Tutorial

Java – Decimal To Binary, Decimal To Octal And Decimal To HexaDecimal Conversion

In this tutorial i am going to show you how to convert “Decimal to Binary”, “Decimal to…