answersLogoWhite

0


Best Answer

The primitive data types that can normally be represented and processed by a CPU are an integer, real number, character, Boolean, and memory address

User Avatar

Wiki User

10y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What primitive data types can normally be represented and processed by a CPU?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Variables as object in java?

There are two main categories of variables in Java. They are primitive and non primitive. Primitive data types are the basic data types like int, float, char etc. These are not objects. The other non primitive data types are all types of Java Objects. Example: String, ArrayList etc.


What are primitive variables?

Primitive variables are variables that are not objects and carry primitive values like numbers, boolean etc. The primitive data types in java are:intbytefloatcharlongbooleanshortdouble


What is the difference between primitive fish and the most advanced types?

primitive fish are ones that have more skeleton weres advanced types tend to be more of muscles


Why is class called non primitive in c plus plus?

Primitive refers to base types, like int and char. Classes are complex types, combining primitives with other classes or structures, and are therefore non-primitive.


What are the primitive types of artificial neuron?

I don't now


What is primary data type in C?

The terms "primary data type" and "secondary data type" are not exactly correct when working in C. Instead, C has what are called "primitive data types" or, in some references, "basic types" - types which can be affected by arithmetic operators. Other data types include structs, arrays, and unions. Structs, arrays and unions cannot be affected as a whole by arithmetic operators, although the members within that are primitive data types can be. Pointers can technically be affected by arithmetic operators, particularly +, -, ++ and --, but because their values are expected to be used as addresses, they're not considered to be primitive in nature. There are three primitive data types in C: integers, real numbers and complex numbers. Integers have no decimal points and can be signed or unsigned, and real and complex numbers are signed and have decimal points. Boolean types are represented by integers, most commonly "int" under Posix-style systems. More information about primitive data types can be found in the related links below


What types of timber is processed?

Any timber that is readily available is processed as economically as possible.


Do the primitive datatypes in java have objects?

No Primitive data types do not have objects. As of Java 1.5, all primitive types in Java have "wrapper" classes. These classes serve two purposes: # They keep all type-specific methods together in one place. # They allow primitive types to be used in situations which take advantage of generics (also introduced in Java 1.5).


The diff between int integer?

In Java, an int is a primitive type and an Integer is a class. Basically, an Integer is just an int primitive wrapped up in a class. Mainly this is used for the generics introduced in Java 1.5. Primitive types cannot be used as generic types, so there was a need for classes to wrap around all primitive types so that you can declare things such as List<Integer>.


Is array a primitive data structure?

No, it's not. But it can be based on primitive data types (int, char, long, double and so on).


Functions of primitive data types?

defines the value of a cell


Data types in c primitive and non primitive?

Primitive types are the data types provided by a programming language as basic building blocks. Primitive types are also known as built-in types or basic types. Depending on the language and its implementation, primitive types may or may not have a one-to-one correspondence with objects in the computer's memory. However, one usually expects operations on primitive types to be the fastest language constructs there are. Integer addition, for example, can be performed as a single machine instruction