1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
alukav5142 [94]
3 years ago
10

Misperceptions can lead to miscommunication. List an example from the article.(site 1)

Computers and Technology
2 answers:
GREYUIT [131]3 years ago
5 0
I think we need the article to answer this
Ghella [55]3 years ago
4 0

Answer: Trust me, I know its really long but it is the right answer, I just took the quiz thing and got a 100.

You get back your exam paper, and the result was unsatisfactory. What bothers you the most is a note from the teacher stating that you obviously did not bother studying. The teacher's perception is that you should have done better and did not do the necessary work to succeed. The fact are slightly different because there was a family emergency the night before the exam, and you were still upset when taking the exam. How does communication come into play in the scenario? If you had told your teacher about the emergency and how upset you were, you might have been given an extra couple days to study and an opportunity to take the test at a later date. You failed to communicate your situation, and your teacher made an error by perceiving a failure on your part to put in the necessary effort.  At times, communication is simply not successful. You either did not deliver the message—as in the case of the family emergency—or your message was misunderstood. When this happens, the result is a perception gap, a connection failure between the person giving the information and the person or people receiving the information.  At family dinner, Dad says, "The lawn is pretty well covered with leaves. It would be great if they got raked this weekend." The teenaged son hears, "Dad wants the lawn raked, but it wasn't a direct order, and he didn't say I have to do it." What the parent meant to say was, "Son, I want you to rake the leaves, and I expect the job finished by Sunday, end of day." So, why didn't the father say so directly? He thought he did, but the way he communicated did not deliver a clear message to his son.  How does communication go wrong? First, there are several different modes of communication, including verbal, intrapersonal and interpersonal, musical, spatial, kinesthetic, and logical. Verbal communication is spoken or written and depends on word choice, tone of voice, and even facial expression as information is delivered. Intrapersonal communication happens within an individual's scope, while interpersonal is between two or more people. Spatial communication is nonverbal and refers to personal space, such as the comfort in distance between people. In some cultures, 18 inches is an acceptable distance between people talking, while in others, 36 inches is more comfortable. Logical, or mathematical, communication deals with reasoning, scientific problems, and analyses. With so many ways to communicate, miscommunication is inevitable.

When communication is difficult, perception plays a greater role in understanding. Perception is a process that involves assessing information within one's environment. Often, perception depends on prior experiences, roles played by the communicators, cultural differences, and emotions. For example, your past experiences in taking standardized test have been stressful and unsuccessful, so you conclude that you are bad at taking standardized tests. This perception becomes ingrained in your thought processes, and you fulfill your own prophecy by doing poorly on such tests.

Consider an employment review in which the employer is under great stress, and her comments and body language indicate displeasure, although the written review is mostly positive. As the employee, you perceive the review as a disaster. Communication goes two ways. You need to assess the basic elements of what was said and written, and your perception may change.

You might be interested in
Over the past year alone, more than _________ have been stolen from Target.
jasenka [17]
40 million (google said so)
6 0
3 years ago
Read 2 more answers
Suppose that a disk drive has 5,000 cylinders, numbered 0 to 4,999. The drive is currently serving a request at cylinder 2,050,
cluponka [151]

Answer:

a. 18102

b. 5656

c. 6090

Explanation:

Pleaae kindly check attachment for the detailed and step by step solution of the given problem.

7 0
3 years ago
This program will store roster and rating information for a soccer team. Coaches rate players during tryouts to ensure a balance
Simora [160]

Answer:

// Scanner class is imported to allow program receive user input

import java.util.Scanner;

// class is defined

public class PlayerRoster {

   // main method that begin program execution

  public static void main(String[] args) {

   // Scanner object scan is defined

     Scanner scan = new Scanner(System.in);

   // multi-dimensional array to hold the jersey number and rating

     int[][] players = new int[5][2];

   // boolean flag to keep program alive

     boolean keepAlive = true;

   // the user input is declared as input of type char

     char input;

     

   // for loop that receive 5 player jersey number and ratings

   // it assigns the received input to the already initialized array

     for (int i = 0; i < 5; i++) {

        System.out.println("Enter player " + (i+1) + "'s jersey number: ");

        players[i][0] = scan.nextInt();

        System.out.println("Enter player " + (i+1) + "'s rating: ");

        players[i][1] = scan.nextInt();

        System.out.println();

     }

   // a blank line is printed

     System.out.println();

   // a method is called to display players array

     outputRoster(players, 0);

     

   // while the flag is true

   // display the Menu by calling the outputMenu method

     while (keepAlive) {

        outputMenu();

       // user input is assigned to input

        input = scan.next().charAt(0);

       //  if user input is 'q' then program will quit

        if (input == 'q') {

           keepAlive = false;

           break;

        }

       //  else if input is o, then outputRoaster is called to display players

        else if (input == 'o') {

           outputRoster(players, 0);

        }

       //  else if input is 'u', then user is allowed to edit a player rating

        else if (input == 'u') {

           System.out.println("Enter a jersey number: ");

           int jerseyNum = scan.nextInt();

           System.out.println("Enter a new rating for the player: ");

           int newRating = scan.nextInt();

           for (int l = 0; l < 5; l++) {

              if (players[l][0] == jerseyNum) {

                 players[l][1] = newRating;

              }

           }

        }

       //  else if input is 'a', user is allowed to add a new rating

        else if (input == 'a') {

           System.out.println("Enter a rating: ");

           int rating = scan.nextInt();

           outputRoster(players, rating);

        }

        // else if input is 'r', user is allowed to replace a player

        else if (input == 'r') {

           System.out.println("Enter a jersey number: ");

           int jerseyNum = scan.nextInt();

           boolean exists = true;

           for (int l = 0; l < 5; l++) {

              if (players[l][0] == jerseyNum) {

                 System.out.println("Enter a new jersey number: ");

                 players[l][0] = scan.nextInt();

                 System.out.println("Enter a rating for the new player: ");

                 players[l][1] = scan.nextInt();

              }

           }

           

        }

     }

     

     return;

  }

 

// this method take two parameters, players and min

// it then returns player with ratings greater than min

  public static void outputRoster(int[][] players, int min) {

     System.out.println(((min>0) ? ("ABOVE " + min) : ("ROSTER")));

     int item = 1;

     for (int[] player : players) {

        if (player[1] > min) {

           System.out.println("Player " + item + " -- Jersey number: " + player[0] + ", Rating: " + player[1]);

        }

        item++;

     }

     System.out.println();

  }

 

// outputMenu method to display the program menu

  public static void outputMenu() {

     System.out.println("MENU");

     System.out.println("u - Update player rating");

     System.out.println("a - Output players above a rating");

     System.out.println("r - Replace player");

     System.out.println("o - Output roster");

     System.out.println("q - Quit\n");

     System.out.println("Choose an option: ");  

  }

}

Explanation:

The program is written in Java and it is well commented.                                          

5 0
3 years ago
(1) Prompt the user for an automobile service. Output the user's input. (1 pt) Ex: Enter desired auto service: Oil change You en
Pavlova-9 [17]

Answer:

In Python:

#1

service = input("Enter desired auto service: ")

print("You entered: "+service)

#2

if service.lower() == "oil change":

   print("Cost of oil change: $35")

elif service.lower() == "car wash":

   print("Cost of car wash: $7")

elif service.lower() == "tire rotation":

   print("Cost of tire rotation: $19")

else:

   print("Invalid Service")

Explanation:

First, we prompt the user for the auto service

service = input("Enter desired auto service: ")

Next, we print the service entered

print("You entered: "+service)

Next, we check if the service entered is available (irrespective of the sentence case used for input). If yes, the cost of the service is printed.

This is achieved using the following if conditions

For Oil Change

<em>if service.lower() == "oil change":</em>

<em>    print("Cost of oil change: $35")</em>

For Car wash

<em>elif service.lower() == "car wash":</em>

<em>    print("Cost of car wash: $7")</em>

For Tire rotation

<em>elif service.lower() == "tire rotation":</em>

<em>    print("Cost of tire rotation: $19")</em>

Any service different from the above three, is invalid

<em>else:</em>

<em>    print("Invalid Service")</em>

<em></em>

6 0
3 years ago
Why isn't my brainly camera working? I got Brainly Plus and can't even scan questions. I've logged out, I've uninstalled and rei
N76 [4]

Answer:

Try resetting your device.

Explanation:

In order to send and receive iMessages to your iPhone, iMessage must be enabled. By doing this, you will associate your phone number with the email address used for your Apple ID or iCloud account.

8 0
2 years ago
Other questions:
  • One purpose of the dual ignition system on an aircraft engine is to provide for?
    7·2 answers
  • A drop-down menu must be contained by
    5·1 answer
  • Can someone help me with...A table can help? PLEASE
    8·1 answer
  • What tool do you use to secure remote access by users who utilize the internet??
    7·1 answer
  • Optimizing a network to handle more traffic by adding new specialized software is an example of ______ scaling. Adding additiona
    9·1 answer
  • python Write a program that will take a file named Celsius.dat that contains a list of temperatures in Celsius (one per line), a
    9·1 answer
  • Which of the following are some of the ways that the media influences consumers behavior
    9·1 answer
  • Impact of information technology in the society​
    11·1 answer
  • What are the disadvantages of using grid analysis to help make decisions?
    13·2 answers
  • How many total cells can a worksheet window contain? If columns are labelled alphabetically, what will be the label for the cell
    15·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!