Posts

Showing posts from April, 2018

Perception, Attitude and Job Satisfaction || Organization Behaviour || by Anshika Vasandhani mam || U.I.E.T. kanpur ,CSJM University Kanpur || Unit 2nd

Image
Definition of perception   Perception means perceiving, i.e., giving meaning to the environment around us. It can be defined as a process which involves seeing, receiving, selecting, organising, interpreting and giving meaning to the environment. Nature of perception  (1) Perception is the intellectual process. (2) Perception is the basic cognitive or psychological process. (3) Perception becomes a subjective process and different people may perceive the same event differently. Perception and Sensation  There is a distinction between sensation and perception. Sensation is the response of a physical sensory organ. The physical senses are vision, hearing, tough, smell and taste. These senses are bombarded by stimuli and reactions in particular sense organ take place because of these, e.g., of sensation may be reaction of eye to colour, ear to sound and so on. Sensation percedes perception. Perception is much more than sensation. Perception depends upon the se

personality and Locus of control || Organization Behaviour || by Anshika Vasandhani mam || U.I.E.T. kanpur ,CSJM University Kanpur || Unit 3rd

Image
Personality Definition Personality is that pattern of characteristic thoughts, feelings, and behaviors that distinguishes one person from another and that persists over time and situations. Personality also refers to the pattern of thoughts, feelings, social adjustments, and behaviors consistently exhibited over time that strongly influences one's expectations, self-perceptions, values, and attitudes. The word "personality" originates from the Latin word persona, which means mask. G. W. Allport defined it as “a person’s pattern of habits, attitudes, and traits which determine his adjustment to his environment.” According to Robert E. Park and Earnest W. Burgess, personality is “the sum and organisation of those traits which determine the role of the individual in the group.” Determinants of Personality Biological factors: The general biological characteristics of human biological system influence the way in which human beings tend to see exte

Display Strings in alphabetical order

Image
/****   PROGRAM Read n values (string) from keyboard     display string list in alphabetical order  ****/ #include<conio.h> #include<stdio.h> #include<string.h> int main()    {      int i,j,n;      char s[20][20],t[20];      printf(HOW MANY COUNTRIES: );       scanf("%d",&n);      printf(" ENTER ANY %d COUNTRY NAME \n",n); for(i=0;i<n;i++) {    scanf("%s",s[i]); } for(i=0;i<n-1;i++) {      for(j=i+1;j<n;j++)      {         if(strcmp(s[i],s[j])>0)         {            strcpy(t,s[i]);            strcpy(s[i],s[j]);            strcpy(s[j],t);         }      }  }      printf("\n THE ALPHABATICAL LIST IS \n");      for(i=0;i<n;i++)        printf("%s\n",s[i]);      getch();    } OUTPUT: