Answer: Primary Research (Focus Group).
Explanation:
Exploratory Research is an inquiry that seeks to understand the basic causal factors of a problem. This effort can serve as the basis of more intensive research later on.
There are basically two methodologies used, which are the; Primary and Secondary methods. While the Primary method's source of information is the concerned group, the Secondary Methods obtain their information from already existing information (Primary sources), such as Interviews, Journals, etc.
In the case of the company in the question, seeking to gain insight into the changes in a product, it would be best for them to consider what some selected costumers (focus group), think about the existing products and their views on subsequent changes. This method of getting information directly from the focus group employs the primary method.
Answer: c)-the transmission of information and meaning from a sender to a receiver
Explanation: Communication is describes as the transmitting the information along with meaning from source to destination. The source is sender from where the information is sent and receiver is the destination unit to receive the information .Information that is being sent contains structured, organized and meaningful facts and figure.
Other options are not appropriate because information and meaning both are transferred in communication ,data is not transferred in communication as they are raw and unstructured facts and ideas are not conveyed in communication.Thus, the correct option is option(c).
Answer:
num_guesses = int(input())
user_guesses = []
for i in range(num_guesses):
x = int(input())
user_guesses.append(x)
print(user_guesses)
Explanation:
This solution is provided in Python
This line prompts the user for a number of guesses
num_guesses = int(input())
This line initializes an empty list
user_guesses = []
This loop lets user input each guess
for i in range(num_guesses):
This line takes user input for each guess
x = int(input())
This appends the input to a list
user_guesses.append(x)
This prints the user guesses
print(user_guesses)
The best answer to this question should be (A)
Cloud Computing.
In general, cloud computing is the term used for the delivery
of hosted services over the internet. We can also simply put cloud computing as
the delivery of computing services like storage, servers, databases, software
and more over the internet.