A(n) ________ is a software component that extends a browser's ability to work with file formats.
Fill in the blank(s) with the appropriate word(s).
plugin
You might also like to view...
Which of the following describes the expected properties of an asynchronous digital subscriber line service?
A. The data upload speed is faster than the data download speed. B. The data download speed is faster than the data upload speed. C. The data upload speed is the same as the data download speed. D. The data throughput speed direction can be selected based on the user’s discretion.
A form contains a button called btnDisplay, and the following code is placed inside btnDisplay’s Click event procedure. At run time, which one of the following cannot possibly be displayed in the message box when the user clicks on btnDisplay?
``` Dim rndNum As New Random() Dim num1 As Integer num1 = rndNum.Next(0, 3) MessageBox.Show(CStr(num1)) ``` (A) 3 (B) 2 (C) 1 (D) 0