Skip to main content

Java


What is Java technology and why do I need it?

Java is a programming language and computing platform first released by Sun Micro-systems in 1995. There are lots of applications and websites that will not work unless you have Java installed, and more are created every day. Java is fast, secure, and reliable. From laptops to data centers, game consoles to scientific supercomputers, cell phones to the Internet, Java is everywhere!

Why We need Java?

At present Java took the major place at the industrial field. For the Android apps and for the computer programs Java is an essential programming language. So it is need to be learn Java language to become successful programmer.

Why Java from Us?

Through this web site we are going to teach Java from basic stage to the advanced stage. From the lessons as well as through the questions we are going to teach you. To be a successful java programmer stay with us.


Here are samples.....


public class Internet_OF_Electronics {

public static void main(String[] args) {
System.out.println("Internet Of Electronics");

}

}
#Internet Of Electronics


public class Internet_OF_Electronics {

public static void main(String[] args) {
for(int i=0; i<10; i++) {
System.out.println(i);
}
}

}
# 0 1 2 3 4 5 6 7 8 9

public class Internet_OF_Electronics {

public static void main(String[] args) {
int a = 0;
int b = 0;
int c = 0;
int d = 0;
a =2;
b = a++;
c = 2;
d = ++c;
System.out.println("b: "+b);
System.out.println("d: "+d);
}

}
#b: 2  d: 3

Comments

Popular posts from this blog

Introduction to the Arduino

Arduino is an open-source electronics platform based on easy-to-use hardware and software.  Arduino boards  are able to read inputs - light on a sensor, a finger on a button, or a Twitter message - and turn it into an output - activating a motor, turning on an LED, publishing something online. You can tell your board what to do by sending a set of instructions to the microcontroller on the board. What is a microcontroller? A  microcontroller  ( MCU  for  microcontroller unit ) is a small  computer  on a single  metal-oxide-semiconductor  (MOS)  integrated circuit  chip. In modern terminology, it is similar to, but less sophisticated than, a  system on a chip  (SoC); an SoC may include a microcontroller as one of its components. A micro-controller contains one or more  CPUs  ( processor cores ) along with  memory  and programmable  input/output  peripherals In the computers a...

Programming languages

At a time when computer technology and artificial intelligence are rapidly advancing, it is important that at least every person has at least a knowledge of computer languages. We are ready to provide a wide range of knowledge to computer programs. We hope that you will gain a complete understanding of python by staying in touch with our tutorial on this blog. Introduction In order to perform a task using a computer, we need to provide a set of commands in a language that the computer can understand. It is machine language depending on the type of processor Understanding is also different. For example, the machine language designed for the intel processor family is different from the language designed for the AMD processors. Different types of processors work in different machine languages, but they all have one thing in common: they are all made up of binary values ​​of '1' and '0'. This limitation is mainly due to the fact that electronic ...

Python Basic Introduction

PYTHON ❃Installation of python on computer :-                you can download  & install python exe file from python.org website.Link is given below.            -- --- download python ---- ------------------------        ➧  python is easy to learn ,powerful programming language.It has efficient high-level data structures and simple but effective approach to object oriented programming.python's elegant syntax and dynamic typing ,together with it's interpreted nature,make it an ideal language for scripting and rapid application development in many platforms.        ➧ The Python interpreter and the extensive standard library are freely available in source or binary form for all major platforms (windows,linux,mac os....... ) from python web site ,and may be freely distributed.The same site also contains distributions of and pointers...