Which two technologies are used for LCD backlights? (Select two.)
A) DLP
B) DMD
C) Fluorescent lamp
D) LED
E) CRT
C, D
Computer Science & Information Technology
You might also like to view...
To change the text string James Smith to JAMES SMITH, use the ________ function
A) LOWER B) CONCATENATE C) UPPER D) PROPER
Computer Science & Information Technology
What is the output of the function call strange (6) given the following definition?
void strange (int n) { if (n > 1) { cout << n + 1 << “ “ << endl; strange (n-2); cout << n-1 << “ “ << endl; } }
Computer Science & Information Technology