Answer: (C) A special service for current customers
Explanation:
The CRM is the customer relationship management that typically use by the banks for providing special type of services to the current customer. This is the way to attract various types of users or customers by providing some special type of offers.
According to the question, bank provide the credit card offers to the customer on the airline tickets so, it is beneficial for both the customer and for the bank as well.
Answer:
<em>#include <iostream></em>
<em>using namespace std;</em>
<em>//function definition</em>
<em>void send_variable(int num){</em>
<em> cout<<"The Number is "<<num<<endl;</em>
<em>}</em>
<em>// main function begins here</em>
<em>int main()</em>
<em>{</em>
<em> int x =15; //declares an it variable and assigns 15</em>
<em> // Calls the function send_variable</em>
<em> send_variable(x);</em>
<em> return 0;</em>
<em>}</em>
Explanation:
Using C++ programming language we created the function called send_variable and in the main function we call this function which only displays the value of an int variable passed unto it.
The greatest possible perimeter would be 14cm.
Following are the program to calculate the power of two:
Program Explanation:
- Defining an integer variable "i" that hold an integer value.
- Defining a for loop that checks "i" value in between 20, inside this it calculates power of two.
- At the last use print method to print its value.
Program:
i=1#holding integer value in i
for i in range(20):#defining a for that starts 1 to 20
i = 2 ** i#calculate power of 2 in i variable
print(i)#print value
Output:
Please find the attached file.
Learn more:
brainly.com/question/23170807