Which of the following attributes is used to describe an image?
(a) ALT
(b) SRC
(c) BACKGROUND
(d) DESC
(a) ALT
You might also like to view...
What does the following C function do?
``` int fun(const char *string) { char blank = ' '; int k; int looking = 1; k = strlen(string); while (k >= 0 && looking) { if (string[k] == blank) --k; else looking = 0; } if (looking) return (-1); else return (k); } ``` a. It finds the subscript of the first nonblank character in string. b. It finds the subscript of the last nonblank character in string. c. It counts the nonblank characters in string. d. It finds the subscript of the first blank in string. e. It finds the subscript of the last blank in string.
_____ is a good site to develop your professional network.
A. ?LinkedIn B. ?Facebook C. ?Google D. ?Twitter
Elements on a data flow going into or out from a data store:
A) must be created by the process linking to the data store. B) must be base elements. C) must be on a data flow that is input to the process that creates the output that is going to the data store. D) must be contained in the data store.
____ runs a Java applet's code and returns the results to your computer.
A. JVM B. DVM C. JDK D. SND