Answer:
patience
understanding
ability to speak in public
willingness to take emotional risks
Explanation:
You are a human service worker, and hence you certainly need to provide the sufferers with the basic needs only. And for that, you do not need confidence or creativity. However, conditions can be challenging, and hence you certainly need the patience, ability to take emotional risks and understanding. Also, you should be good enough to speak in the public as that can be required sometimes. Hence, the correct options are as mentioned above.
They provide tools for sfa spftware
Answer:
Following are the program definition in the Java Programming Language.
//define a class
public class Clock
{
//set integer type variable and initialize value
private int hours=12;
//set boolean type variable and initialize value
private boolean isTicking=true;
//set integer type variable and initialize value
private Integer diff=5;
}
Explanation:
Following are the description of Code.
- Firstly define a class "Clock" with the "private" access modifier.
- Then, set the integer data type variable "hours" with the "private" access modifier and assign value 12 in that class.
- After that, set the boolean data type variable "isTicking" with the "private" access modifier and assign value "true".
- Finally set Integer class variable "diff" with the the private access modifier and assign value 5.