Answer:
clear)
be clear about the purpose of the message you’re delivering.
concise)
When communicating messages of this nature it’s important to stick to the point and keep your messages short and simple.
concrete)
When shaping your communication you must ensure that you are specific and that the logic and messages that you’re using fit together, build on each other and support each other.
correct)
It’s essential that both the factual information and the language and grammar you use are correct.
coherent)
If your communications are not coherent they will not be effective.
complete )
When creating a message, it’s important to give the recipient all of the information they need to follow your line of reasoning and to reach the same conclusions you have.
courteous)
You can increase the effectiveness of your communications by being polite and showing your audience that you respect them.
Explanation:
Answer:
You can use social media to advertise your product or service you don’t need to work to pay your employees insted create content as a way to help your business grow/expand.
Explanation:
Social media is a big platform and you can eventually find new potential clients and you can benefit yourself instead of paying someone
Answer:
- public class Square {
- public static boolean isPerfectSquare(int n){
- int sqrt_n = (int) Math.sqrt(n);
- if(sqrt_n * sqrt_n == n ){
- return true;
- }else{
- return false;
- }
- }
- }
Explanation:
Firstly, use sqrt method from Math package to calculate the square root of input n (Line 3). Cast the result to integer and assign it to sqrt_n variable.
Next, square the sqrt_n and check if it is equal to input n (Line 4). If so, return true, if not, return false (Line 4-8).
Answer:
Machine Learning and/or Artificial Intelligence (AI)
Answer:
Explanation:
Different technologies use different user interface designs in order to make the user experience as easy and intuitive as possible. This varies drastically from one device to another because of the capabilities and size of each device. If we take a fitness/smart watch into consideration, this device does not use pop up menus or side scrolling menus but instead uses large full screen menus where each option nearly fills the entire screen. That is done because the smart watch screens are very small and making everything full screen makes reading and swiping through options that much easier for the user. If the user interface were the same as in a television or smartphone it would be impossible to navigate through the different options on such a tiny screen.