The thickness of a shape outline is measured in:

A) inches. B) centimeters. C) weight. D) points.


D

Computer Science & Information Technology

You might also like to view...

Why is a minimum spanning tree a tree?

a. Because each vertex is connected to two other vertices b. Because it is based upon a priority queue c. Because it is a graph refactored into a tree d. Because it is a specialized height binary search tree

Computer Science & Information Technology

____ changes picture color into black, white, and shades of gray.

A. Blackscale B. Grayscale C. Whitescale D. Colorscale

Computer Science & Information Technology

Which of the following can be added to the Quick Access Toolbar?

A) Ribbon commands B) Buttons to run macros C) Ribbon commands and buttons to run macros D) Ribbon commands, commands not found on the Ribbon, and buttons to run macros

Computer Science & Information Technology

How can the following algorithm be described? left = 0right = len(sortedLyst) - 1while left <= right: midpoint = (left + right) // 2 if target == sortedLyst[midpoint]: return midpoint elif target < sortedLyst[midpoint]: right = midpoint - 1 else: left = midpoint + 1return -1

A. binary search B. bubble sort C. sequential search D. selection sort

Computer Science & Information Technology