Which of the following is a program that extends the capability of a browser?

A. player
B. plug-in
C. rebrowser
D. publisher

Answer: B

Computer Science & Information Technology

You might also like to view...

What is the output of the following code?

int a = 3; for (int i = 5; i > 0; i--) { a = a + i; cout << a << “ “; } int a = 3; for (int i = 5; i > 0; i--) { a = a + i; cout << a << “ “; } int a = 3; for (int i = 5; i > 0; i--) { a = a + i; cout << a << “ “; } a) 7 10 12 13 b) 7 10 12 13 13 c) 8 12 15 17 18 d) 8 12 15 17 18 18

Computer Science & Information Technology

Which of the following statements is false?

a. Prior to Java SE 8, it was common to associate with an interface a class containing static helper methods for working with objects that implemented the interface. b. Class Collections contains many static helper methods for working with objects that implement interfaces Collection, List, Set and more. c. Collections method sort can sort objects of any class that implements interface List. d. With non-static interface methods, helper methods can now be declared directly in interfaces rather than in separate classes.

Computer Science & Information Technology