The first program that you develop when you are learning any programming language is the “Hello World” program. So, let’s create a “Hello World” program in java. But I would like to do different, instead of creating a “Hello World” program let’s create a “Welcome to Java” program. Note: A “Hello World” program is a…… Continue reading How to create a simple “Welcome to Java” program in Java
Tag: Windows
How to download and set the PATH for OracleJDK on Windows OS
Step:1 go to this link, https://www.oracle.com/technetwork/java/javase/downloads/index.html at the top of the page you will see a title “Java SE Downloads”. Note: Java has different Programming Language platforms, 1. Java SE(Standard Edition) – for normal use (it is the core platform of all other Editions).2. Java EE(Enterprise Edition) – for large scale development (like servers).3. Java…… Continue reading How to download and set the PATH for OracleJDK on Windows OS
how to CREATE a simple table with the Constraints in SQL
Data tables are the most basic building blocks even of a large database. To query a particular data in a table we use SQL(Structured Query Language), and also those tables can be created by using SQL. In this post, you will learn how to create a simple Table in SQL. Just suppose you are responsible…… Continue reading how to CREATE a simple table with the Constraints in SQL