It is most important to ask questions when looking at media messages because doing soa. provides a higher level of entertainment value.
b. helps you to prepare for a career in media.
c. enables you to be an intelligent consumer.
d. allows you to determine a product's quality.

Answers

Answer 1
Answer: The correct answer is letter d. allows you to determine a product's quality. It is most important to ask questions when looking at media messages because doing so it allows you to determine a product's quality. Knowing the quality of a product is nothing wrong to do because as consumers, we need to know what really the product that we are going to buy.

Related Questions

What are at least 4 things you learned about social media ethics? Is there anything you will change after going over this lesson?
Myra pays 4 cents per minute for long-distance telephone calls with a per call minimum charge of 75 cents. What is the actual cost per minute for a call lasting 15 minutes?
In graphical linear programming to maximize profit, the objective function is: I. a family of parallel lines. II. a family of isoprofit lines. III. interpolated. IV. linear. I only II only III and IV only I, II, and IV only I, II, III, and IV
What coding scheme contains a set of 128 numeric codes that are used to represent characters in the computer's memory?
To advance rightward from one cell to the next in a table, press the ____ key

Peter has recently bought a media player and a digital camera. He wants to buy a memory card for these devices. Which memory device should Peter use in his digital camera and media player?

Answers

The answer is a Flash drive or better, an SD card

An SD card is a non-volatile memory use mostly in portable devices such as cameras, phones and other mobile solutions like tablets. They are capable of being a life in certain situations. They store all your documents, pictures, and photos in rows of tiny memory chips. In general, most modern consumer cameras use either Compact Flash or SD cards.


An SD card.

This will fit into his camera: when he takes photos, they will be captured on it.
And his media player should have an SD card access point for him to view his photos

Haya noticed that college students needed to dress up for presentations but never seemed to have any ties, or at least not very nice ones. She decided she was going to set up a tie store on her campus and offer sports themed ties as well as solid colored ties in her school colors. She can put an announcement on the school’s monitors that would display in the dining halls and student union. Which of the following should Haya consider during her first month of operation?
a. A sales force automation system
b. A customer interaction center
c. Bundling
d. Campaign management
e. Purchasing profiles

Answers

Answer:

c. Bundling.

Explanation:

Haya wants to sell ties for the college students and she set up a tie store on her campus and offer solid color tie and sports theme ties also.

For creating an interest in college students in the first month of operation she should consider bundling.

Bundling means selling different items together as a package.

1.Can ICTs be innovatively used in the absence of minimum literacy levels among the poor?

Answers

I think ICTs can be innovatively used in the absence of minimum literacy levels among the poor. Nowadays, as technology has improved, there are cheaper gadgets that enable one, having a little bit difficulty with finances, to buy.

What data type is suitable to show the arrival of a flight date/time
Boolean
text
memo

Answers

Answer:

What data type is suitable to show the arrival of a flight

The type of data that is suitable to show the arrival of the flight is the date/time.

Hope this helps! :)

Please mark brainliest

How can you create a document using a predefined table​

Answers

Click the file tab, and then click New. * Under available templates , click New from existing . * Click a template or a document that is similar to the one that you want to create, and then click create New

Your program must define and call the following function that returns the number of times the input character appears in the input string. int CountCharacters(char userChar, string userString)

Answers

Answer:

The program to this question can be given as:

Program:

#include <iostream>  //header file

using namespace std;  //using name space.

int CountCharacters(char userChar,string userString) //define function.

{    

int count = 0;  //define variable

for (int i=0;i<userString.length();i++) //loop

if (userString[i]==userChar)  //if block

count++;  //increment the value.

return count;  //return value.

}

int main()  //main method.

{

   string userString= "Clanguage";  //define variable and assign value.

   char userChar = 'a';   //define variable and assign value.

   cout << CountCharacters(userChar,userString);  //calling function and print value.  

   return 0;  

}

Output:

2

Explanation:

  • In the above C++ programming language program we define a function that is "CountCharacters". Inside function parameters, we pass two parameters that are "userChar and userString". The userChar is a char variable that holds single character value and userString is a string variable that holds a string value.
  • In the function, we define an integer variable that is "count". This variable counts the match value and returns its value.
  • To counts values, we define a loop in a loop we use if statement that counts the value that how many time it occurs in a string value and return its value.
  • In the main method, we define these variables ("userChar and userString") and assign values that are "a and Clanguage " and call the function and print function return value.