Some small devices, like the better smartphones, use a technology known as _______________ that lights the screen with an organic compound.

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


OLED

correct

Computer Science & Information Technology

You might also like to view...

Select the item below that lists elements used in an HTML table:

a. table, head, tfoot b. table, tr, tt c. thead, body, tr d. table, tr, td

Computer Science & Information Technology

What is the output of the following code?

``` import java.util.*; public class Test { public static void main(String[] args) { List list1 = new ArrayList<>(); list1.add("Atlanta"); list1.add("Macon"); list1.add("Savanna"); List list2 = new ArrayList<>(); list2.add("Atlanta"); list2.add("Macon"); list2.add("Savanna"); List list3 = new ArrayList<>(); list3.add("Macon"); list3.add("Savanna"); list3.add("Atlanta"); System.out.println(list1.equals(list2) + " " + list1.equals(list3)); } }``` a. true true b. true false c. false false d. false true

Computer Science & Information Technology

Which of the following is NOT true regarding reports?

A) The source of data for a report must be a query. B) A report provides data in an easy-to-read format suitable for printing. C) Reports are used for providing professional-looking printed output from a database. D) A report is designed to fit well on the printed page, with breaks built in for each page.

Computer Science & Information Technology

Which of the following is a common video frame size used on the Web?

A. 1280 x 800 B. 640 x 480 C. 240 x 180 D. 160 x 120

Computer Science & Information Technology