Answer Posted / reejusri
Its a computer architecture thing:
ISA stands for instruction set architecture. ISA determines
the computational characteristics of a computer. ISA deals
with the design of datatypes, register sets, and the
instruction set (including addressing modes) of the
computer.
HSA, hardware-system architecture, deals with computer's
major HW subsystems including CPU, memory and I/O. HSA
determines how efficiently the machine will operate.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What is an adjust field format flag?
What is an inclusion guard?
Is it possible to provide default values while overloading a binary operator?
What are the advantages of using typedef in a program?
Can we specify variable field width in a scanf() format string? If possible how?
List the features of oops in c++?
Mention the ways in which parameterized can be invoked. Give an example of each.
What is ios :: in in c++?
Can we define a constructor as virtual in c++?
write a program that withdrawals,deposits,balance check,shows mini statement. (using functions,pointers and arrays)
Why do we use classes in c++?
What is the difference between strcpy() and strncpy()?
What is a hashmap c++?
If you want to share several functions or variables in several files maitaining the consistency how would you share it?
Can you help me with this one? Make a program that when a user inputed a Product Name, it will display its price, and when the user inputed the quantity of the inputed product, it will show its total price. The output must be like this: Product Name: Price: Quantity: Total Price: ..this is the list of products to be inputed: Cellphone - 1500 Washing Machine - 5200 Television - 6000 Refrigirator - 8000 Oven - 2000 Computer - 11000 thanks..:D