To ____ a photo, you bring a copy of the file from the storage location to the screen where you can make changes to the photo.

A. restore
B. save
C. open
D. scan

Answer: C

Computer Science & Information Technology

You might also like to view...

JPEG is a ________ format, which means that compression causes some loss of quality to the image

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

Computer Science & Information Technology

What is output by the following C# code segment?

``` int temp = 180; while (temp != 80) { if (temp > 90) { Console.Write("This porridge is too hot! "); // cool down temp = temp – (temp > 150 ? 100 : 20); } else { if (temp < 70) { Console.Write("This porridge is too cold! "); // warm up temp = temp + (temp < 50 ? 30 : 20); } } } if (temp == 80) { Console.WriteLine("This porridge is just right!"); } ``` a) This porridge is too cold! This porridge is just right! b) This porridge is too hot! This porridge is just right! c) This porridge is just right! d) None of the above.

Computer Science & Information Technology