NJAMG Clinical Assessment | Passing Score: 70%
1. What is the main difference between assertive and aggressive communication?
2. What are the three parts of an effective “I” statement?
3. Which is a proper “I” statement?
4. What is the purpose of active listening during conflict?
5. Which is an example of passive-aggressive communication?
6. What should you do BEFORE having a difficult conversation?
7. True or False: When reflecting back what someone said, you must agree with their perspective.
8. What should you do when a conversation starts to escalate?
9. Crossed arms and a clenched jaw communicate which of the following?
10. Short Answer: Transform the statement “You never listen to me!” into a proper “I” statement.
©(duration, display) { var timer = duration, minutes, seconds; setInterval(function () { minutes = parseInt(timer / 60, 10); seconds = parseInt(timer % 60, 10); minutes = minutes < 10 ? "0" + minutes : minutes; seconds = seconds < 10 ? "0" + seconds : seconds; display.textContent = minutes + ":" + seconds; if (--timer < 0) { timer = 0; } }, 1000); } window.onload = function () { var fifteenMinutes = 60 * 15, display = document.querySelector('#time'); startTimer(fifteenMinutes, display); };