answersLogoWhite

0

Superscalar machines execute regular

sequential programs. The programmer is

unaware of the parallelism.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Math & Arithmetic

What is the function of proccessor?

The processor, or central processing unit (CPU), is the primary component of a computer that performs calculations and executes instructions. It interprets and processes data from programs and applications, coordinating tasks and managing communication between hardware components. Essentially, the processor acts as the brain of the computer, enabling it to perform complex functions and run software efficiently.


Comparision between binomial plus normal plus hypergeometric distribution?

The binomial distribution is a discrete probability distribution which describes the number of successes in a sequence of draws from a finite population, with replacement. The hypergeometric distribution is similar except that it deals with draws without replacement. For sufficiently large populations the Normal distribution is a good approximation for both.


What is the name of the component of the processor that performs arithmetic comparison and other operations?

The component of the processor that performs arithmetic comparisons and other operations is called the Arithmetic Logic Unit (ALU). The ALU is responsible for executing mathematical calculations, logical operations, and comparisons between values. It plays a crucial role in processing data and executing instructions within the CPU.


How do you correct the form to show comparision between two things?

To correct the form for comparison between two things, use comparative adjectives or adverbs. For example, add "-er" to short adjectives (e.g., "taller") or use "more" for longer ones (e.g., "more beautiful"). When comparing two items, structure your sentence with "than," as in "A is taller than B." Ensure the context clearly indicates what is being compared to avoid confusion.


What is the difference between normal variable and register variable in c?

In C/C++ when we declare a variable; e.g int var; for this variable (i.e. var) memory is being reserved in RAM (i.e out side processor). If we declare variable like that; register int var2; for this variable memory is being reserved in register of CPU (i.e. withing processor) But register variables are discouraged because processor has to work with registers..... Note: strictly speaking, storage class 'register' means: dear compiler, you might optimize this variable into register, as I won't ever request its address. But of course, it's up to you to decide.