What is the distinction between chroma and saturation?

What will be an ideal response?


Chroma describes the amount of colorant that is present in a hue. The more colorant, the more saturated the color. Saturation is color purity or the absence of white, black, or gray. Chroma is about the presence of color in a pigment.

Computer Science & Information Technology

You might also like to view...

Consider the following code segment containing an if-else statement:

``` if (x > y) { y = x; } else if (x == y) { x = 100; } alert('x = ' + x + ', y = ' + y); ``` Given the following assignments, predict the output that the preceding code would produce:

Computer Science & Information Technology

The Access data type that enables you to link to any file on your computer or any Web site on the Internet is called ________

Fill in the blank(s) with correct word

Computer Science & Information Technology

You can save a Web page by pressing the ____ keys.

A. SHIFT+S B. ALT+S C. CTRL+S D. TAB+S

Computer Science & Information Technology

In the code for the add method in the implementation of a heap, what is the missing code? def add(self, item): self.size += 1 self.heap.append(item) curPos = len(self.heap) - 1 while curPos > 0: parent = (curPos - 1) // 2 parentItem = self.heap[parent] if parentItem <= item: else: self.heap[curPos] = self.heap[parent] self.heap[parent] = item curPos = parent

A. curPos += 1 B. break C. self.heap[curPos] = item D. parent = curpos

Computer Science & Information Technology