Objects have ________, such as color, size and weight; and they perform ________, such as moving, sleeping or drawing.

a) properties, actions
b) properties, attributes
c) methods, actions
d) actions, properties


a) properties, actions

Computer Science & Information Technology

You might also like to view...

What is the output of Integer.parseInt("10", 2)?

a. 1; b. 2; c. 10; d. Invalid statement;

Computer Science & Information Technology

(What Does this Program Do?) What does the following program print?

``` // Mystery2.cpp #include using namespace std; int main() { unsigned int count{1}; while (count <= 10) { cout << (count % 2 == 1 ? "****" : "++++++++") << endl; ++count; } } ```

Computer Science & Information Technology

Rapid prototyping allows _______ between the user and the programmer to be identified and corrected early in the development process.

A. processing errors B. config errors C. miscommunications D. interfacing errors

Computer Science & Information Technology

The ____ color is the color that fills the entire web page.

A. main B. fill C. foreground D. background

Computer Science & Information Technology