Stages of Communication:
1.Deciding what to communicate.
2.Encoding intended meaning.
3.Transmitting the message.
4.Perceiving the incoming message.
5.Decoding and interpreting message.
6. Influence the receiver.
According to Gist: "When a social interaction involves a transmission of feelings by the usage of the symbols it is known as communication". Social Interaction: Any kind of interaction in a society among any one it is called social interaction. The Process of Communication: (Message encoder)Source <-----------------Channel------------------> Receiver(Message decoder) | ...
Write a program to calculate the fahrenheit of the given celsisus through the keyboard. #include #include void main(void) { clrscr(); float c,f; printf("Enter the tepmrature in fahrenheit"); scanf("%f",&f); c=(f-32)*5/9; printf("The temprature in Celsius is %f",c); getch(); }
Comments
Post a Comment