1. Hangman Game in Python 2. Color game using Tkinter in Python
Home
/
All posts
Hangman Game in Python
The origins of Hangman are obscure meaning not discovered, but it seems to have arisen in Victorian times, ” says Tony Augarde, author of T...
Color game using Tkinter in Python
Tkinter is widely used for developing GUI applications. Along with applications, we can also use Tkinter GUI to develop games. Let’s try...
JAVA PROJECTS
1.A Group chat application in Java 2. Java program explaining the generation of Password 3.Java program explaining the generation ...
Java program explaining the generation of OTP(One Time Password)
// Java code to explain how to generate OTP // Here we are using random() method of util // class in Java import java.util.*; public ...
Java program explaining the generation of Password
// Java code to explain how to generate random // password // Here we are using random() method of util // class in Java import java.ut...
A Group chat application in Java
In this post, a group chat application using MulticastSocket (Java Platform SE 7) class is discussed. A MulticastSocket is a (UDP) Datagra...