Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

which is platform independent device used in computers

Answer Posted / arun mavi 8800849839

the platform used by in the computer is main memory which is
the combination of CPU (central processing unit) and
ALU(arthmatical logical unit). and main memory

Is This Answer Correct ?    2 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is inheritance in oop?

1041


#include #include #include #include void insert(char *items, int count); int main(void) { char s[255]; printf("Enter a string:"); gets(s); insert(s, strlen(s)); printf("The sorted string is: %s.\n", s); getch(); return 0; } void insert(char *items, int count) { register int a, b; char t; for(a=1; a < count; ++a) { t = items[a]; for(b=a-1; (b >= 0) && (t < items[b]); b--) items[b+1] = items[b]; items[b+1] = t; } } design an algorithm for Insertion Sort

2632


What is the difference between static polymorphism and dynamic polymorphism?

1095


What is polymorphism what is it for and how is it used?

1023


What are different types of JVM's? for example we use dalvik jvm for android then what about the remaining operating systems?

2143


Why can't we have instance(stack) of a class as a member of the same class like eg.Class A{A obj;} as we can have self refential pointer

2160


design a c++ class for the chess board,provide a c++ class definition for such class(only class definition is required)

6684


assume the program must insert 4 elements from the key board and then do the following programs.sequential search(search one of the elements),using insertion sort(sort the element) and using selection sort(sort the element).

2126


What is oops with example?

1058


What is polymorphism give a real life example?

1045


How Do you Code Composition and Aggregation in C++ ?

25490


Is enum a class?

1074


What is variable example?

1046


Why do we need polymorphism in c#?

1180


to find out the minimum of two integer number of two different classes using friend function

2149