Which of the following is not an example of software that can be used when creating a podcast?

a. Sound Recorder
b. Sound card
c. Audacity
d. Windows Live Movie Maker


B

Computer Science & Information Technology

You might also like to view...

What’s wrong with the following statement? Provide the correct statement to accomplish what the programmer was probably trying to do.

``` cout << ++(x + y); ```

Computer Science & Information Technology

Data can be entered into a database using one of two methods: entering the data directly into the table or entering it in ________

A) a form B) a query C) the relationship window D) a report

Computer Science & Information Technology

(Account Class) Create an Account class that a bank might use to represent customers’ bank accounts. Include a data member of type int to represent the account balance. [Note: In subsequent chapters, we’ll use numbers that contain decimal points (e.g., 2.75)—called floating-point values— to represent dollar amounts.] Provide a constructor that receives an initial balance and uses it to

ini- tialize the data member. The constructor should validate the initial balance to ensure that it’s greater than or equal to 0. If not, set the balance to 0 and display an error message indicating that the initial balance was invalid. Provide three member functions. Member function credit should add an amount to the current balance. Member function debit should withdraw money from the Account and ensure that the debit amount does not exceed the Account’s balance. If it does, the balance should be left unchanged and the function should print a message indicating "Debit amount exceed- ed account balance." Member function getBalance should return the current balance. Create a program that creates two Account objects and tests the member functions of class Account. What will be an ideal response?

Computer Science & Information Technology

Which of the following is a nested function?

A) =SUM(B6:B10 ) B) =HLOOKUP(B8,A10:B20,2) C) =VLOOKUP(B8,A10:B20,2 ) D) =IF(AND(B7>5),"Yes","No")

Computer Science & Information Technology