In a computer language, Primitive data types are the fundamental or built-in data types the language will manipulate without a subroutine call, type modifier, or object.
For example, in C they are: int, char, float, and double.
In Java they are: byte, short, int, long, float, double, Boolean, and char.
Below the language level, Primitive data types are that which are supported or implemented directly in hardware or through microcode. For example, some computers directly handle strings with length up to the database record capacity through microcode.
These Primitive types can be combined with type modifiers for Int (short, long), pointers, arrays, structs, and unions into many different "complex" data types handled by the programming language.
An array is a primitive data type. It is the element type that may or may not be primitive.
String - is primitive data typestring - is user defined data type
A primitive data type is built into the language - int, char, long, etc. A non-primitive data type is am abstract data type that is built out of primitive data types - linked list, queue, stack, etc.
String is not primitive data. Only char,int,double,and boolean are!
primitive non primitive
Depends on the context of the question you were asking from, there are 2 distinct answers: Yes and NO. In the narrowest definition, any array is NOT a primitive data type in C#. Hence a string array is NOT a primitive data type in that context. A string itself, however, is a primitive data type. Some developers would like to extend the definition of "primitives" into the arrays, collections, and Enumeration. Thus, in this context, an array of string IS a primitive data type.
Yes you can store non primitive data type variables in an array. String is a non primitive data type. You can declare a string array as: String a[]=new String[10];
Struct or array.
No, it can be array, structure or union as well.
char is a primitive data type and depends on the programming language and the operating system.
how do you get the value of the parameter in the applet
The primitive data types in Java are:int: integer value from -232 to 232floatdoublelong: integer value from -264 to 264byte: integer value from -128 to 128char: charactershort: integer value from -32768 to 32768boolean: true or false valueString (not actually a primitive data type)