Which type of camera has a lens with a preset focal length that focuses well on objects within a specific distance?

a.Autofocusing
b.Fixed-focus
c.Macro
d.Optical zoom

B

Computer Science & Information Technology

You might also like to view...

The output of this C# program will be:

``` class Test { static void Main() { int[] a = {99, 22, 11, 3, 11, 55, 44, 88, 2, -3}; int result = 0; for (int i = 0; i < a.Length; ++i) { if (a[i] > 30) { result += a[i]; } } Console.WriteLine($"Result is: {result}"); } } ``` a) Result is: 280 b) Result is: 154 c) Result is: 286 d) Result is: 332

Computer Science & Information Technology

Who can manage mandatory profiles on Windows 10 computers?

(a) technicians (b) professionals (c) executives (d) administrators

Computer Science & Information Technology