What are the different data types in general programming?

Hi Programmers,
What are the different data types in general programming and what are their function? Explain each data types to me.
Thanks.

Hi Programmers,
What are the different data types in general programming and what are their function? Explain each data types to me.
Thanks.
Programming languages are human-engineered languages developed to convey instructions to machines; they are based on rules of syntax and semantics. Thousands different programming languages have been developed, used, and discarded. Following are the different types of programming languages and their details:
1. Logic Programming:
Logical Programming languages work on simple facts and relations from which a logical solution and conclusion can be drawn.
Eg: Oz, Gödel.
2. Functional Programming:
Functional programming languages are more closely related to the mathematical concept of `function'.
Eg: Haskell, pragma.
3. Imperative Programming:
Also known as procedural programming, imperative programming is associated with the concept of analysis and step by step solution. Imperative programming is distinguished from functional programming in that the former is strongly tied to the concept of variables and memory locations.
Eg: C,Fortran.
4. Concurrent Programming:
Concurrent programming is characterized by programming with more than one process. The main advantage of concurrent programming is that operations can run parallel in it, thus they are much faster than sequential operations. The behavior of concurrency can be implemented in C++, Java.
5. Object-Oriented Programming:
Object oriented programming is the method of implementing programs which are organized as cooperative collections of objects, and each of which represents an instance of some class, and whose classes are all members of a hierarchy of classes united via inheritance relationships.
Eg:C++, Java.
Hello,