The transform that distorts an object’s shape horizontally or vertically is known as a:

a) TranslateTransform
b) SkewTransform
c) ScaleTransform
d) none of the above


b) SkewTransform

Computer Science & Information Technology

You might also like to view...

5. What is displayed by the following program after the call to execl?

#include #include int main() { if (fork() == 0) execl("prog.exe", "prog.exe", NULL); cout << "After execl" << endl; return 0; } a. The parent process will display "After execl" b. The child process will display "After execl" c. Neither the parent process nor the child process will display "After execl" d. The program does not create a child process e. Both the parent process and child process will display "After execl"

Computer Science & Information Technology

A typeface is a set of characters based on a font using a specific size and style.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

____ software helps you carry out tasks using a computer, such as editing a photo.

A. Application B. System C. Shareware D. Utility

Computer Science & Information Technology

In a(n) ____ language, data and operations can be incorporated together in such a way that data values can be isolated and accessed through the specified class functions, but inheritance is not required.

a. class b. object-based c. object-bound d. class-bound

Computer Science & Information Technology