What is java?answer in detail.
Answers
Explanation:
It was designed to have the “look and feel” of the C++ programming language, but it is simpler to use than C++ and enforces an object-oriented programming model. ' 'Java can be used to create complete applications that may run on a single computer or be distributed among servers and clients in a network.
Hope it helps you
Answer:
Primitive data types are data types that are predefined in Java programming language and named by a reserved keyword. Java programming language supports eight different primitive types - byte, short, int, long, float, double, boolean and char. byte, short, int and long are integer number types. byte has 8 bits and is the smallest integer number type. long has 64 bits and is the biggest integer number type. The default value for all integer number types is 0. float and double are floating-point number types. doubles are bigger than floats. The default value for floating-point number types is 0.0