Answer:
D.
Explanation:
Interactive marketing is a technique in which marketers focus on one-to-one interactions with individual customers as opposed to focusing on the entire population. This shapes the marketing decisions based on the behaviors and preferences of the customers. Therefore with interactive marketing, the buyer controls the kind and amount of information received from the seller.
Answer:
Python Code:-
#creating a list
current_members = [4, 6, 9]
#defining the variable
#assigning the value
member_id = 9
#defining variable count
count = 0
#defining the variable and setting initial value to true
is_a_member = False
#for loop is used to iterate over the list
for x in current_members:
#if statement will check whether the element is found
if x == member_id:
#set the value to true if the value is matched
is_a_member = True
#set the value to 1
count = 1
#if count == 0
#set the value of is_a_member variable to false
if count == 0:
is_a_member = False
#print the current value stored in is_a_member variable
print(is_a_member)
Explanation:
In the above python program, a list is created that is "current_members" and some values are inserted. In the next line, a three-variable is defined that are member_id, count, and is_a_member.
- In both variable member_id, count assigns some value. and in is_a_member variable assign a False value.
- Using a for loop to iterate over the list.
- Inside the loop, If the statement will check whether the element is found. Then set the value of is_a_member variable to True and count to 1.
- Another if the statement is used which checks the value of the count variable. If the value of count is 0 then set the value of is_a_member to False.
- print() function is used to display the current value of is_a_member variable.
Yes.
-----------------------------------------------------------------------------------
A Data series is a special row in an Excel table that provides a selection of aggregate functions useful for working with numerical data.
Data series
<u>Explanation:</u>
As MS-excel worksheet is used to huge or series of calculation. Through MS-excel people use for calculation and do series of analysis and do graph output.
Even in software development reports are generated and export to MS-excel and further analysis, calculation are made.
MS-excel is wonderful tools is used in computer technology. in MS-excel has many inbuilt function where can be used with single cell or range of cells.
In MS-excel aggregate function such as sum, count, max or min is inbuilt function readily available to user it.