Case-Based Critical Thinking QuestionsCase 3-1Ethan is preparing a lecture about the software available for working with photos, videos, music, and other media. He asks James, who is an expert in computers, some questions. Choose the best aswer to each question. Ethan asks James what is the correct term used for movies, photos, music, and other content that is stored digitally?

A. digital content
B. digital media
C. digital objects
D. digital files


Answer: B

Computer Science & Information Technology

You might also like to view...

A stack has two primary operations called

A) push and pull. B) push and pop. C) insert and delete. D) append and delete. E) None of the above

Computer Science & Information Technology

Exceptions can be used to indicate problems that occur when an object is being constructed. Write a program that shows a constructor passing information about constructor failure to an exception handler. The exception thrown also should contain the arguments sent to the constructor.

What will be an ideal response?

Computer Science & Information Technology

Write a C++ program that uses the statements to calculate x raised to the y power. The program should have a while iteration statement.

``` // Exercise 4.8 Solution: power.cpp // Raise x to the y power. #include using namespace std; int main() { unsigned int i{1}; // initialize i to begin counting from 1 unsigned int power{1}; // initialize power cout << "Enter base as an integer: "; // prompt for base unsigned int x; // base cin >> x; // input base cout << "Enter exponent as an integer: "; // prompt for exponent unsigned int y; // exponent cin >> y; // input exponent // count from 1 to y and multiply power by x each time while (i <= y) { power *= x; ++i; } // end while cout << power << endl; // display result } // end main ```

Computer Science & Information Technology

By default, a movie plays repeatedly, or loops.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology