Which of the following combination is incorrect?

Continuous - euclidean distance
Continuous - correlation similarity
Binary - manhattan distance
None of the mentioned

The correct answer is C. Binary – Manhattan distance.

Euclidean distance is a measure of the distance between two points in a Euclidean space. It is the length of the hypotenuse of a right triangle with sides corresponding to the differences between the coordinates of the two points.

Correlation similarity is a measure of the similarity between two vectors. It is calculated by taking the dot product of the two vectors and normalizing it by the product of their norms.

Manhattan distance is a measure of the distance between two points in a city block space. It is the sum of the absolute values of the differences between the coordinates of the two points.

Binary data is data that can only take on two values, such as 0 or 1.

The Manhattan distance is not a valid measure of distance for binary data because it does not take into account the order of the values. For example, the Manhattan distance between the points (0, 1) and (1, 0) is 2, even though the two points are actually the same.

The other options are all valid combinations.