answersLogoWhite

0


Best Answer

Sorting is grouping items by similarities they have in common. eg placing all the green blocks together, the red blocks together and so on.

Classifying is placing items in pre-determined groups. eg classifying dogs as mammals, and frogs as amphibians.

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the difference between sorting and classifying?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

A sorting device that is useful in classifying by observation is a .?

taxonomy key


What is the difference between worst case and best case scenario of sorting techniques?

good


The difference between partition to classification?

Classification is sorting out things due to scientific process. Partition is eminent domain.


What is classifying?

Classifying means sorting out. like classifying the living organisms. animals are classified in 2 groups: vertebrates and invertebrates. plants are also classified into 2 groups: produces seeds and produces spores; arranging or distributing objects, events, information, putting them in class according to a method or system.


What is the difference between sorting and searching in a database?

Searching allows you to find data that meets specific criteria. Sorting allows you to organize that data, based upon the rules you choose (most common is alphabetical).


What are the eleven data of processing operation in a computer?

There are eleven operations for data of processing. The eleven data of processing operations in a computer are recording, verifying, duplicating, classifying, sorting, calculating, summarizing and reporting, merging, storing, retrieving, and feedback.


11 data processing operation?

-recording -verifying -classifying -duplicating -gathering -sorting -calculating -morging -retriving -sumarizing -reporting -feedback -organizing


The difference in lipid and protein composition between the membranes of the endomembrane system is largely determined by?

the function of the Golgi apparatus in sorting membrane components


What is the difference between searching and sorting in design analysis algorithm?

When you're searching for something you are simply examining each entity, comparing them with another entity in order to locate a match. When you're sorting entities, you are re-arranging the order of those entities. In both cases you will perform a comparison between two entities at a time, the only real difference is that you do not re-arrange the entities when searching.


Difference between internal and external sorting?

Internal sorting it means we are arranging the number within the array only which is in computer primary memory. External sorting it is the sorting of numbers from the external file by reading it from secondary memory.


What is the difference between General Average and Salvage?

One important notice that should be considered about the difference between the median and the average is the time required to perform both. As the median requires sorting the numbers before finding its centered value of the list, this takes much more time either manually or by computer


What is difference between internal and external data structure?

Internal SortingExternal sortingIn internal sorting all the data to sort is stored in memory at all times while sorting is in progress.In external sorting data is stored outside memory (like on disk) and only loaded into memory in small chunks.The internal sorting methods are applied to small collection of data. The External sorting methods are applied only when the number of data elements to be sorted is too large. internal sorting takes input only which can be fit into its memory...i.e. it takes small inputexternal sorting can take as much as large input…Internal sort is more flexible as we can alter or update data before and after performing internal sort whereas the same doesn't hold true for external sort.internal sorting is independent of time to read/write a recordexternal ids dependent on the same