answersLogoWhite

0


Best Answer

Some form of monarchy usually occurred in primitive societies, whether it's a chieftain, leader, etc.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What type of government were most primitive government?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the most primitive type of rock?

igneous


What is the most primitive type of bacteria?

Archaebacteria


Why arrays are not primitive data type?

An array is a primitive data type. It is the element type that may or may not be primitive.


Is string is primitive or user defined data type?

String - is primitive data typestring - is user defined data type


What are different data type in c?

primitive non primitive


What is different between primitive date type and non primitive data type in c plus plus programming language?

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.


What is the superlative form of the word primitive?

most primitive


Is string arr a non primitive data type?

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.


The Archaeopteryx was a primitive type of what?

Bird.


Where string is primitive data type of string data type?

String is not primitive data. Only char,int,double,and boolean are!


How the earlier people wrote?

The most primitive type of writing was hieroglyphics used by the stone age people and the Egyptians.


Can you store non primitive data type in the array list?

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];