Communication competence is the ability to interact with others in a manner that is honest and appropriate for the situation, individuals, and task.
Answer:b) ERP
Explanation: ERP(Enterprise resource planning) is the strategical formal planning process which is regarding the business process management .ERP provides services form the improving productivity ,delivery, efficiency with the use of integrated application, software and technology.
Other options are incorrect because CRM (Customer relationship management) works in maintaining relation between the organisation and the customer, SCM(Supply chain management) is the business process for management of the execution, planning and flow of the business .
KM(Knowledge management) is for the maintenance of data/information.Therefore, the correct option is option(b)
Answer:
The correct answer to the following question will be "Physical Layer".
Explanation:
- The lowest layer of the OSI reference model is the physical layer. It's in charge of having to send bits from one desktop to the next.
- This layer isn't acquainted with the interpretation of the parts and is concerned with setting up a physical wireless connection and sending and receiving signals.
- This layer relies on aspects of the hardware, such as wires, transmitters, and network interface tokens.
Therefore, it will be the right answer.
Answer:
Use Outbound Messages to send customer data from Salesforce to the marketing system.
Use a middleware tool to pull customer data from Salesforce and push it to the marketing system on a daily basis
Use Apex callout to send customer data from Salesforce to the marketing system
Explanation:
The above points illustrates a mechanism for moving cutomer data to the marketing system efficiently.
This assignment is required to be executed in python programming language. See the code below.
<h3>What is the code that displays word pairs that differ between the two sentences?</h3>
# taking two sentence as input s1 = input() s2 = input()
# getting the words in both sentences in list w1 = s1.split() w2 = s2.split() # looping through the word lists and checking if they are equal or not for i in range(len(w1)):
# printing word pairs if they are not equal
if (w1[i] != w2[i]):
print(w1[i],w2[i])
Learn more about python programming language at;
brainly.com/question/26497128
#SPJ1