answersLogoWhite

0

What is arithematic unit?

Updated: 12/23/2022
User Avatar

Wiki User

13y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What is arithematic unit?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What are the registers ALU and CU?

alu is arithematic logic unit. it is a part of computer system. it performs arithematic operations like +,-,*,/etc.alu is arithematic logic unit. it is a part of computer system. it performs arithematic operations like +,-,*,/etc.


The brain of the computer refers to the?

CPU (central Processing Unit)CPU is infact comprised of three basic Units as underALU (Arithematic & Logic Unit)CU (Controll Unit)Storage (Registers)


What is the role of the ALU in data processing?

The brain of any computer is its CPU. However, the brain of any CPU is the ALU. ALU short for Arithmetic And Logical Unit is the component that resides inside the CPU which processes data according to the given instructions && commands.


What is 10 less than 305 in Arithematic?

295


What is the history of Arithematic progression?

whats the difference between math and arithmetic


What is mathematical sequence?

Sequences are a group of numbers that follow a certain pattern. There are two kinds of sequences, the arithematic sequence and geometric sequence. Arithematic sequence follows through addition (and subtraction). Geometric sequence follows throug multiplication (and division). Arithematic Sequence Example : 1, 6, 11, 16, 21 The pattern follows an addition of 5. Geometric Sequence Example : 1, 3, 9, 27, 81 The pattern follows a multiplication of 3


What is a reliable college level arithematic workbook by title?

A reliable college level arithmetic workbook is the Accuplacer Workbook.


If the sum of five consecutive numbers is 30 in Arithematic Progression find the numbers?

4+5+6+7+8 = 30


8th termof an arithematic progression is16 what is its 12th term?

Any number you like. You need two terms to uniquely identify an arithmetic progression.


What are the four basic functions to a computer?

Arithmetic Logic Unit - perform calculations and logic functionsMemory Unit - store data and instructionsControl Unit - fetch instructions, decode instructions, and control the other units as requested by the instructionsInput/Output Unit(s) - move data and instructions into and out of the computer


What do you mean by Hierarchy in C language?

The preference in which arithematic operations are performed in an arithematic expression is called as Hierarchy of operations.Its very important in C Programming to predefine the Hierarchy of operations to the C compiler in order to solve the given arithematic expression correctly.e.g.: If a programmer wishes to perform ,z=a+b/c;it may beinterpretedas z=(a+b)/c or z=a+(b/c).and if a=3,b=6,c=2 then using the same expression we will obtain two differentanswersas z=4.5 or z=6.To avoid this condition we must be aware of hierarchy of operations used in C programming.In arithematic expressions scanning is always done from left to right.The priority of operations is as shown below,PriorityOperatorsFirstParenthesisos brackets()SecondMultiplication & DivisionThirdAddition & SubtractionFourthAssignment i.e.=If we consider the logical operators used in C language,the operator precedence will be like;OperatorsType!Logical NOT* / %Arithmetic and moulus+ -AritmeticRelational== !=Relational&&Logical ANDLogical OR=AssignmentIn the tables above,the higher the position of an operator,higher is its priority.


How do you display a programme which contains both arithematic and statistical operations in one function by using a loop in c plus plus?

#include<iostream.h> //using name spacestdlib ///////////////////////////////// display a program contains both arithematic and statistical operations in loop int main() { int opt; float stat; cout<<"enter the four basic operation"<<endl; cout<<"displaying the optional by using basic operation and statistical operation"<<endl; cin>>arith opt>>stat;