Answer:
CRM system can help customers about the service supplied.
Explanation:
CRM stands for Customer Relationship Management and CRM system is a useful tool for communicating with customers.
CRM can keep the data about the order provided by the customer and has updated info about its status.
For example, if the customer of a logistics company wants to know where his/her order is, customer represantative can give up-to-date info about the order where abouts. Or the customer directly uses web to check the status of the order.
All these service can be provided by a CRM system, since drones can send its location to CRM systems.
If the internet document identifies the author, the textbook recommends that you type the author's name into the internet search box.
<h3>What is an internet document?</h3>
These are those documents that are gotten from the a search on the internet. To cite such items there are certain guidelines that are to be followed.
A simple search on a search engine would show you the most important details that this author possesses.
Read more on internet documents here:
brainly.com/question/14715750
Answer:
the answer is computer, phone, laptop
Explanation: that is all ik
A walk through of the project deliverable is conducted by: the sellers agent
<u>Explanation:</u>
ASCII, abbreviated from American Standard Code for Information Interchange, is a character encoding standard for electronic communication. Basically, ASCII value is the something which computers understand .
C program that asks the user to enter a single character and then outputs the ASCII number of that character :
#include <stdio.h>
#include <string.h>
int main()
{
char Str[10];
int i,length;
printf("Enter the String: ");
scanf("%s", Str);
if(strlen(Str) == 1){
printf(" %c ASCII value is %d",Str[0],Str[0]);
}
else{
printf(" Please enter only single character!! ");
}
return 0;
}