Java Program to Draw Star Shapes

  • Java: Java Programming Concepts
Java Program to Draw Star Shapes

This Java program creates a simple graphical application that draws rows of stars using Java's Swing library. The program creates a window with rows of…

Java Celestial Volume Calculator: Earth and Sun Volumes Comparison

  • Java: Java Programming Concepts

This Java program calculates and displays information about the volumes of the Earth and the Sun. It also show the ratio of their volumes.

Ouputs the Zodiac signs

  • Java: Java Programming Concepts

The following Java program shows the Zodiac sign corresponding to a given date. This little program can be used to find your Zodiac sign if…

Blackjack Java Game Challenge

  • Java: Java Programming Concepts

The Blackjack game written in Java provides a graphical user interface (GUI) for players to enjoy a simplified version of the classic card game. Upon…

Java Code to Demonstrate Recursion

  • Java: Java Programming Concepts

The Java code implements a simple graphical application that visually represents and counts blobs within a grid by using recursion. A blob is a group…

Java Source Code: Create Different Borders of a Label

  • Java: Java Programming Concepts

This is a Java source code for a simple graphical application that demonstrates how to use various types of borders in Swing, a Java GUI…

A Java Application for Two-Way Chatting

  • Java: Java Programming Concepts

This Java Code supports two-way chatting between users. It implements a client for the ConnectionBroker server, which can set up a relayed connection between a…

Car Race Game

  • C++ Source Code: C++ Programming Concepts

This is a simple C++ program to make a car race game. It uses object oriented approach to generate different objects in the game such…

Data Protection in C++ – Object Oriented Programming Concept

  • C++ Source Code: C++ Programming Concepts

This is a very basic C++ program that demonstrates data protection in a very simple way. Data protection in Object Oriented Programming is controlling access…

Design patterns

  • C++ Source Code: C++ Programming Concepts

"describe a problem which occurs over and over again in our environment, and then describe the core of the solution to that problem, in such…