Explain different data types in Java.
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Java has two different kinds of data types, which are described below:
Data Type Primitive
Object data type or non-primitive data type
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Java has two different kinds of data types, which are described below:
Data Type Primitive
Object data type or non-primitive data type
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Java has two different kinds of data types, which are described below:
Data Type Primitive
Object data type or non-primitive data type
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Java has two different kinds of data types, which are described below:
Data Type Primitive
Object data type or non-primitive data type
| Is This Answer Correct ? | 0 Yes | 0 No |
Java has two different kinds of data types, which are described below:
Data Type Primitive
Object data type or non-primitive data type
| Is This Answer Correct ? | 0 Yes | 0 No |
solve this is my problem byte a=40,byte b=50 both add value is 90 this is with in range of byte... byte range is -128to 127.... why this pgm gives error like type mismatch.... package javapgms; public class byte1 { public static void main(String args[]) { byte a=40,b=50; byte c=a+b; System.out.println(c); } } note : dont use int k... a,b,c are in byte range... mind it..
What is OOP Language?
What will happens if you opened Internet Explorer 4 times?
What’s meant by anonymous class?
What value is a variable of the string type automatically initialized?
where exactly collections are usefull in realtime
Does java support function overloading, pointers, structures, unions or linked lists?
Define interface in java?
Are registers volatile?
Write a function to print Fibonacci series and Tribonacci series?
What environment variables do I need to set on my machine in order to be able to run java programs?
How do you set security in applets?