An object’s data is known as its __________ or properties.

Fill in the blank(s) with correct word


attributes

Computer Science & Information Technology

You might also like to view...

The command to move the cursor forward / backward one character is:

a: [Ctrl-f] / [Ctrl-b] b: [Ctrl-x] f / [Ctrl-x] b c: [Alt-f] / [Ctrl-b] d: [Ctrl-back] / [Ctrl-for] e: All of the above

Computer Science & Information Technology

Given the function declaration (prototype), does the compiler complain or compile if you call this using the following line? If the compiler complains, what is the complaint?

``` //if score >= min_to_pass, returns 'P' for passing, //else returns 'F' for failing. char grade (int score, int min_to_pass); int main() { double fscore; char fgrade; int need_to_pass; //omitted code to get values for variables //fscore and need fgrade = grade(fscore, need); return 0; } ```

Computer Science & Information Technology

The concatenation operator in PHP is a ____.

A. plus sign (+) B. period (.) C. minus sign (-) D. question mark (?)

Computer Science & Information Technology

By placing a(n) ____________________ command in an INSERT command, you can add the query results to a table.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology