A green triangle that indicates a possible error in a formula is called:

A) A Dialog Box Launcher B) A message C) An error indicator


C

Computer Science & Information Technology

You might also like to view...

Theoretically, clients do not need to see the _________ of classes from which they derive other classes.

a. Header files. b. Source code. c. Object code. d. Interface.

Computer Science & Information Technology

What is displayed by the following program after the call to pthread_create?

#include #include void *thread(void *); int main() { pthread_t tid; pthread_create(&tid, NULL, thread, NULL); cout << "After pthread_create" << endl; return 0; } void *thread (void *argument) { return NULL; } a. The main thread will display "After pthread_create" b. The new thread will display "After pthread_create" c. Neither the main thread nor the new thread will display "After pthread_create" d. The program does not create a new thread e. Both the main thread and new thread will display "After pthread_create"

Computer Science & Information Technology

________ are thin lines that begin and end the main strokes of each letter

A) Serifs B) Sizing handles C) Insights pane D) Status bar

Computer Science & Information Technology

All of the following are ways to test a Flash movie except ____.

a. by exporting it to Dreamweaver b. from within the authoring environment c. in a browser d. in Flash Player

Computer Science & Information Technology