Facebook

adsense

Thursday, 12 May 2016

HangMan Game in java

One player thinks of a word or phrase; the others try to guess what it is one letter at a time. The player draws a number of dashes equivalent to the number of letters in the word. If a guessing player suggests a letter that occurs in the word, the other player fills in the blanks with that letter in the right places. If the word does not contain the suggested letter, the other player draws one element of a hangman's gallows. As the game progresses, a segment of the gallows and of a victim is added for every suggested letter not in the word. The number of incorrect guesses before the game ends is up to the players, but completing a character in a noose provides a minimum of six wrong answers until the game ends. The first player to guess the correct answer thinks of the word for the next game.






Click Here To Download The Source Code

Note:
There is a .txt file present where some of the words are already stored you may add and remove the words

Tuesday, 4 August 2015

PAGE 4

                         " JAVA PROGRAMS "


                           <<PREVIOUS PAGE 

PAGE 3

PAGE 2

PAGE 1

Wednesday, 29 July 2015

Send An Email Using Java App

Amazing application that will send an email using java gui programming 
The application just require the email address of sender and receiver and than type the subject and message .This application is greatly beneficial for the final semester project fro there final project the output is given below and you can download this app by clicking on below link 



Click Here to download the source code

Wednesday, 1 July 2015

University Banking management System

The following java project contains the java source code and java examples used for university banking system. University banking plays an important role in the System of University Transactions.
The source code and files included in this project are listed in the project files section, please make sure whether the listed source code meet your needs there.



Click Here To Download The Source Code

Tuesday, 30 June 2015

PacMan in java



The following java project contains the java source code and java examples used for pac man. it is a pac man game still need a litttle work with the monster AI
The source code and files included in this project are listed in the project files section, please make sure whether the listed source code meet your needs there.




Click Here To Download The Source Code

Sunday, 28 June 2015

Software Security System


Software security assurance is a process that helps design and implement software that protects the data and resources contained in and controlled by that software. The following source code and examples are used for Software security system.
The source code and files included in this project are listed in the project files section, please make sure whether the listed source code meet your needs there.



Click Here To Download The Source Code

Note :
  Username : sss
   password : sss

Thursday, 25 June 2015

Tennis game in java

The following java project contains the java source code and java examples used for tennis game. I did this as my assignment hope you all will like it.
The source code and files included in this project are listed in the project files section, please make sure whether the listed source code meet your needs there.

CLICK HERE to download the source code

Monday, 22 June 2015

Pharmacy management System

The following Java project contains the java code java examples used for Simple Pharmacy Management System in Java.
The source code and files included in this project are listed in the project files section, please make sure whether the listed source code meet your needs there.



Click here to download the source code

Tuesday, 26 May 2015

Airline Reservation System in java GUI

Airline reservation System will reserve the seats for passenger for the specific flight.It will tell the timing, route ,number of seat for the flight.
This is an outstanding project for the IT student's for the Semester final project.This program will save all the data records of the passenger and their luggage and many more username and password is given below.
You can download this project and explore more functionality present in it.

Sample output:
                       





Click Here to download the source code
 After this please wait for 5 sec and than click on skip ad button to download the code



Note :
  1. After Click on "Click Here" please wait for 5 sec and than click on skip ad button to download the code
  2. Username :- admin                Password :- admin
  3. The main class is loginPage ,so start from there.
  4. If you like the program Please do comment below so i will post more program like that
  5. Do Share the post with Google+ ,facebook,twitter,whatsapps or any other material you have

Friday, 22 May 2015

Snake game in java

Real Snake game in java with great graphics including GUI 
The game will turn over whenever it touches the boundary or touch itself .Game will show the length,Score and Time of game.
You will definately going to "Like" this game .




Click Here to download source code of project


Note :
  1. After Click on "Click Here" please wait for 5 sec and than click on skip ad button to download the code
  2. If you like the program Please do comment below so i will post more program like that
  3. Do Share the post with Google+ ,facebook,twitter,whatsapps or any other material you have 

Tuesday, 19 May 2015

Prison Management System in java

An application is to be developed that manages the wardens and prisoners at a prison. Each prisoner is identified by a unique number. Details, such as name and number of days left to serve in prison, need to be stored for each prisoner as well as the unique identifier. Some prisoners are categorized as high security prisoners, in which case additional information must be stored, such as security level and whether or not the prisoner can share a cell with another prisoner. Wardens have a rank in the range 1 to 5, where a rank of 5 indicates the highest level of experience.
The application must provide at least the following functionalities:
- Add a new prisoner
- Find and display a prisoner, identified by number
- Release a prisoner, identified by number (a prisoner can only be released, at the discretion of the prison services, if they have less than 7 days left to serve)
- Delete a prisoner (this function will come into play in the event of death of a prisoner)
- Add a new prison warden
- Delete a prison warden
- Display all the wardens
- Display all the prisoners


Sample Output :
    




Note :
  1. After Click on "Click Here" please wait for 5 sec and than click on skip ad button to download the code
  2. If you like the program Please do comment below so i will post more program like that
  3. Do Share the post with Google+ ,facebook,twitter,whatsapps or any other material you have .


Monday, 18 May 2015

QUESTION 20

Write code to find the First non repeated character in the String ?
Solution :
Another good Java interview question, This question is mainly asked by Amazon and equivalent companies. See first non repeated character in the string : Amazon interview question

<PREVIOUS || Main Page || NEXT >
         GIVE YOUR COMMENT BELOW

QUESTION 19

What is difference between StringBuffer and StringBuilder in Java ?
Solution :
Classic Java questions which some people thing tricky and some consider very easy. StringBuilder in Java is introduced in Java 5 and only difference between both of them is that Stringbuffer methods are synchronized while StringBuilder is non synchronized. See StringBuilder vs StringBuffer for more differences

             <PREVIOUS || Main Page || NEXT >
               GIVE YOUR COMMENT BELOW

QUESTION 18

What is the difference between creating String as new() and literal?
Solution :
When we create string with new() Operator, it’s created in heap and not added into string pool while String created using literal are created in String pool itself which exists in PermGen area of heap.

String s = new String("Test");

does not  put the object in String pool , we need to call String.intern() method which is used to put  them into String pool explicitly. its only when you create String object as String literal e.g. String s = "Test" Java automatically put that into String pool.

            <PREVIOUS || Main Page || NEXT >
              GIVE YOUR COMMENT BELOW

QUESTION 17

What is immutable object? Can you write immutable object?
Solution :
Immutable classes are Java classes whose objects can not be modified once created. Any modification in Immutable object result in new object. For example is String is immutable in Java. Mostly Immutable are also final in Java, in order to prevent sub class from overriding methods in Java which can compromise Immutability. You can achieve same functionality by making member as non final but private and not modifying them except in constructor.  

<PREVIOUS || Main Page || NEXT >
        GIVE YOUR COMMENT BELOW

QUESTION 16

Which two method you need to implement for key Object in HashMap ?

In order to use any object as Key in HashMap, it must implements equals and hashcode method in Java. Read How HashMap works in Java  for detailed explanation on how equals and hashcode method is used to put and get object from HashMap
    
                   <PREVIOUS || Main Page || NEXT >
                    GIVE YOUR COMMENT BELOW

Sunday, 17 May 2015

Transport Management System in java

Outstanding java program for transport management system Contains all the information for bus route ,bus information,driver information,passenger information,Ticket information and many more download the source code.
you have to add your own data base.

This program is Transport Management System called AwetraSoft.
It allows user to add driver, sell tickets and other cool features. Try it out.


Sample output :








Click Here to download source code


Note :
  1. After Click on "Click Here" please wait for 5 sec and than click on skip ad button to download the code
  2. If you like the program Please do comment below so i will post more program like that
  3. Use these information to run program                                                                     Default User Name: AwetraSoft    
                                                     Password : admin
                                                     Default position: Manager.