The Functions tab lists the messages that we can send to an object to access one of its ____.

A. procedures
B. controls
C. joints
D. events


Answer: C

Computer Science & Information Technology

You might also like to view...

The function int fact(int k) { return k*fact(k-1); if (k==0) return 1; }

A) computes the factorial on an integer k passed to it as parameter. B) returns the value 1 if it is passed a value of 0 for the parameter k. C) does not correctly handle its base case. D) works for all non-negative values of k, but not for negative numbers. E) None of the above

Computer Science & Information Technology

If the override specifier is added to the end of a member function declaration, what happens if the function is not specified as virtual in the parent class?

a) The function is overridden in the derived class. b) There is a compiler error. c) The function in the parent class will always be invoked.

Computer Science & Information Technology

On the left side of the Start menu, the ________ displays recently used programs on the bottom

Fill in the blank(s) with correct word

Computer Science & Information Technology

A loop that evaluates a condition at the end of the repeating section of code is referred to as a(n) ____ loop.

a. entrance-controlled b. pretest c. exit-controlled d. aftertest

Computer Science & Information Technology