Posts

Vietnam Tour

  Day 1 Arrive in Ho Chi Minh City Day 2 Explore the Cu Chi Tunnels and take in the city sights Day 3 Visit the Quang Ba Flower Market and other attractions in Hanoi Day 4 Discover the hidden wonders of Halong Bay by boat Day 5 Enjoy breakfast with the rising sun and return to Hanoi Our final recommended Vietnam tour takes in both the north and the south of the country. Starting in the former capital of South Vietnam, Ho Chi Minh City, you’ll be given a guided tour of some of the 340 km of passageways that make up the Cu Chi Tunnels, and the various grand colonial-era structures built by the French. The short flight to Hanoi means you’ll have time to check out all that this city has to offer too, before catching a traditional water puppet performance. Then take to the waters of Halong Bay on a luxury vessel for a day and a night of adventure including a visit to the incredible Sung Sot Cave before ending your 5-day Vietnam itinerary back in Hanoi.  See tour . Ho Chin Minh City...

What is difference between JDK, JRE and JVM?

Image
  Let’s find out the answer of this simple (but yet very important) question: What is JDK, JRE and JVM? JDK :- Java Development Kit (in short JDK) is Kit which provides the environment to Develop and execute(run ) the Java program. For eg. You(as Java Developer) are developing an accounting application on your machine, so what do you going to need into your machine to develop and run this desktop app? You are going to need  J-D-K  for that purpose for this you just need to go to official website of sun or oracle to download the latest version of JDK into your machine. Hence, JDK is a kit(or package) which includes two things i) Development Tools(to provide an environment to develop your java programs) and ii) JRE (to execute your java program). JDK is only used by Java Developers. JRE  :- Java Runtime Environment (to say JRE) is an installation package which provides environment to only run(not develop) the java program(or application)onto your machine. For eg(contin...