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:
static int checkSymbol(char ch)
{
switch (ch)
{
case '+':
case '-':
return 1;
case '*':
case '/':
return 2;
case '^':
return 3;
}
return -1;
}
static String convertInfixToPostfix(String expression)
{
String calculation = new String("");
Stack<Character> operands = new Stack<>();
Stack<Character> operators = new Stack<>();
for (int i = 0; i<expression.length(); ++i)
{
char c = expression.charAt(i);
if (Character.isLetterOrDigit(c))
operands.push(c);
else if (c == '(')
operators.push(c);
else if (c == ')')
{
while (!operators.isEmpty() && operators.peek() != '(')
operands.push(operators.pop());
if (!operators.isEmpty() && operators.peek() != '(')
return NULL;
else
operators.pop();
}
else
{
while (!operators.isEmpty() && checkSymbol(c) <= checkSymbol(operators.peek()))
operands.push(operators.pop());
operators.push(c);
}
}
while (!operators.isEmpty())
operands.push(operators.pop());
while (!operands.isEmpty())
calculation+=operands.pop();
calculation=calculation.reverse();
return calculation;
}
Explanation:
- Create the checkSymbol function to see what symbol is being passed to the stack.
- Create the convertInfixToPostfix function that keeps track of the operands and the operators stack.
- Use conditional statements to check whether the character being passed is a letter, digit, symbol or a bracket.
- While the operators is not empty, keep pushing the character to the operators stack.
- At last reverse and return the calculation which has all the results.
The Spec book, describes a formatted writing which contains the major specifications and description of the building blocks of an application or process. The design process should follow formatting guidelines such as ;
- Inclusion of table of content, which gives a table like format of the content in the book within the first 25 pages.
- Inclusion of the Spec section number in the <em>header and footer section</em> of each page of the book.
- Avoid including any other value with the <em>spec section number</em>. Hence, the spec section number must be distinctly seperated.
Learn more : brainly.com/question/25648287
All of them have to do with computers except identity theft so that's the answer