fork download
  1. #include <stdio.h>
  2. #define SIZE 100
  3.  
  4. void top5(float kpi[SIZE], char name[SIZE]); //this function accept the array of KPI and name, and sort it from the heights to lowest. Next, it will find the top 5 employee who's got the heights KPI.
  5. void outstanding(float kpi[SIZE], char name[SIZE]); // Displaying the employee who's got 9 and above...
  6. float evaluation(float kpi[SIZE]); //This function will count and display the number of employee who's achieve their target... employee need to get more than 5 KPI to consider as achieved. Display the number of employee who's achieve and not...
  7. int main ()
  8. {
  9. float kpi[SIZE];
  10. char name[SIZE];
  11. int i,j;
  12. for (i=0 ; i<SIZE ; i++)
  13. {
  14. for( j=0; j<SIZE; j++){
  15. printf("Enter employee : ");
  16. scanf("%s",&name[i]); // Input of employee names...
  17. printf("Enter KPI score : ");
  18. scanf("%f",&kpi[j]); // Input of employee KPI scores...
  19. if (kpi[j] < 0 || kpi[j] > 10)
  20. {
  21. printf("Invalid marks.\nEnter KPI score: "); // if the KPI score greater than 10, or less than ZERO, re-enter it the score again...
  22. scanf("%f",&kpi[j]);
  23. } // end of if statement..
  24. }// end of the second for loop..
  25. }//end of the first for loop..
  26. top5(kpi,name);
  27. evaluation(kpi);
  28. outstanding(kpi,name);
  29. } // end of the main function...
  30.  
  31. void top5(float kpi[SIZE], char name[SIZE])
  32. {
  33. int i,j,temp;
  34. for (i=0;i<SIZE;++i)
  35. {
  36. for (j=i+1;j<SIZE;++j)
  37. {
  38. if (kpi[i] > kpi [j])
  39. {
  40. temp = kpi[i];
  41. kpi[i] = kpi[j];
  42. kpi[j] = temp;
  43. } // end of the if statement..
  44. }// end of the second loop...
  45. } // end of the first loop..
  46. printf("\n----------The top five employee goes to ----------\n");
  47. for (i=0;i<SIZE ; i++)
  48. {
  49. if (kpi[i] > 8)
  50. {
  51. printf("%s (%.2f).",name,kpi);
  52. }
  53. }
  54. } // end of top5 function....
  55. float evaluation(float kpi[SIZE])
  56. {
  57. int i,j,count=0,count1=0;
  58. for (i=0;i<SIZE;i++)
  59. {
  60. if (kpi[i]> 5)
  61. {
  62. } // end of if statement...
  63. count++;
  64. }//end of for loop...
  65. printf("\nNumber of employee achieve target : %d employees",count);
  66. for (j=0;j<SIZE;j++)
  67. {
  68. if (kpi[j] < 5 )
  69. count1++;
  70. }
  71. printf("\nNumber of employee not achieve target : %d employees",count1);
  72. } // end of evaluation function...
  73.  
  74. void outstanding(float kpi[SIZE], char name[SIZE])
  75. {
  76. printf("\n----------Employee who's get 9 and above----------\n");
  77. int i , j;
  78. for (i=0; i<SIZE;i++)
  79. {
  80. for (j=0;j<SIZE;j++)
  81. {
  82. if (kpi[i] >= 9)
  83. {
  84. printf("%s (%.2f)",name,kpi);
  85. } // end of the if statement...
  86. } // end of the second for loop...
  87. } // end of the first for loop...
  88.  
  89. } // end of the outstanding function....
Runtime error #stdin #stdout 0s 4184KB
stdin
Standard input is empty
stdout
Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee  : Enter KPI score : Invalid marks.
Enter KPI score: Enter employee  : Enter KPI score : Enter employee