@php $sumWorkMax = 10; $firstToFourthQtrMax = 2.5; $demoPercentage = 0.20; $eligMax = 5; $interviewMaxPoints = 10; $interviewRatingMax = 5; $ratings = $data["ratings"]; $applicants = $data["applicants"]; $app_size = sizeOf($applicants); $dividend = 1; $minimum = 5; $max_per_page = 5; if ($app_size > $minimum) { $dividend = ceil($app_size / $minimum); } $difference = $minimum - $app_size; $enbancOne = []; $enbancTwo = []; $enbancThree = []; $committeeOne = []; $committeeTwo = []; $enbancSix = []; $enbancSeven = []; $totalPoints = []; $sumAcadBack = []; $sumWorkExp = []; for ($ri = 0; $ri < sizeof($ratings); $ri++) { array_push($enbancOne, $ratings[$ri]["enbancOne"]); array_push($enbancTwo, $ratings[$ri]["enbancTwo"]); array_push($enbancThree, $ratings[$ri]["enbancThree"]); array_push($committeeOne, $ratings[$ri]["committeeOne"]); array_push($committeeTwo, $ratings[$ri]["committeeTwo"]); array_push($enbancSix, $ratings[$ri]["enbancSix"]); array_push($enbancSeven, $ratings[$ri]["enbancSeven"]); } for ($eo = 0; $eo < sizeOf($enbancOne); $eo++) { array_push($sumAcadBack, array_sum($enbancOne[$eo])); $totalPoints[$eo] = array_sum($enbancOne[$eo]); } for ($et = 0; $et < sizeOf($enbancTwo); $et++) { array_push($sumWorkExp, array_sum($enbancTwo[$et])); } for($swe = 0; $swe < sizeOf($sumWorkExp); $swe++) { if ($sumWorkExp[$swe] > $sumWorkMax) { $sumWorkExp[$swe] = $sumWorkMax; } $totalPoints[$swe] = $totalPoints[$swe] + $sumWorkExp[$swe]; } $firstQuarter = []; $secondQuarter = []; $thirdQuarter = []; $fourthQuarter = []; for ($eth = 0; $eth < sizeOf($enbancThree); $eth++) { array_push($firstQuarter, array_slice($enbancThree[$eth], 0, 10, true)); array_push($secondQuarter, array_slice($enbancThree[$eth], 10, 6, true)); array_push($thirdQuarter, array_slice($enbancThree[$eth], 16, 3, true)); array_push($fourthQuarter, array_slice($enbancThree[$eth], 19, 21, true)); } $sumFirstQuarter = []; $sumSecondQuarter = []; $sumThirdQuarter = []; $sumFourthQuarter = []; for ($fq = 0; $fq < sizeOf($firstQuarter); $fq++) { array_push($sumFirstQuarter, array_sum($firstQuarter[$fq])); } for ($sq = 0; $sq < sizeOf($secondQuarter); $sq++) { array_push($sumSecondQuarter, array_sum($secondQuarter[$sq])); } for ($tq = 0; $tq < sizeOf($thirdQuarter); $tq++) { array_push($sumThirdQuarter, array_sum($thirdQuarter[$tq])); } for ($foq = 0; $foq < sizeOf($fourthQuarter); $foq++) { array_push($sumFourthQuarter, array_sum($fourthQuarter[$foq])); } $totalSumProfDev = []; for($sfq = 0; $sfq < sizeOf($sumFirstQuarter); $sfq++) { if ($sumFirstQuarter[$sfq] > $firstToFourthQtrMax) { $sumFirstQuarter[$sfq] = $firstToFourthQtrMax; } } for($ssq = 0; $ssq < sizeOf($sumSecondQuarter); $ssq++) { if ($sumSecondQuarter[$ssq] > $firstToFourthQtrMax) { $sumSecondQuarter[$ssq] = $firstToFourthQtrMax; } } for($stq = 0; $stq < sizeOf($sumThirdQuarter); $stq++) { if ($sumThirdQuarter[$stq] > $firstToFourthQtrMax) { $sumThirdQuarter[$stq] = $firstToFourthQtrMax; } } for($sfoq = 0; $sfoq < sizeOf($sumFourthQuarter); $sfoq++) { if ($sumFourthQuarter[$sfoq] > $firstToFourthQtrMax) { $sumFourthQuarter[$sfoq] = $firstToFourthQtrMax; } } // 3 is number of applicants (temporary) for ($tspd = 0; $tspd < sizeOf($ratings); $tspd++) { $totalSumProfDev[$tspd] = 0; $totalSumProfDev[$tspd] = $sumFirstQuarter[$tspd] + $sumSecondQuarter[$tspd] + $sumThirdQuarter[$tspd] + $sumFourthQuarter[$tspd]; $totalPoints[$tspd] = $totalPoints[$tspd] + $totalSumProfDev[$tspd]; } // dd($sumFirstQuarter); // dd($sumSecondQuarter); //dd($sumThirdQuarter); //dd($sumFourthQuarter); $totalDemo = []; for($sdo = 0; $sdo < sizeOf($committeeTwo); $sdo++) { array_push($totalDemo, array_sum($committeeTwo[$sdo]) * $demoPercentage); $totalPoints[$sdo] = $totalPoints[$sdo] + $totalDemo[$sdo]; } $sumElig = []; for($elg = 0; $elg < sizeOf($enbancSix); $elg++) { $sum = 0; $sum = array_sum($enbancSix[$elg]); if ($sum > $eligMax) { $sum = $eligMax; } array_push($sumElig, $sum); $totalPoints[$elg] = $totalPoints[$elg] + $sum; } $sumOther = []; for($pp = 0; $pp < sizeOf($enbancSeven); $pp++) { $sum = 0; for ($ss = 0; $ss < 5; $ss++) { $sum += (int)$enbancSeven[$pp][$ss]; } $sumOther[$pp] = $sum; $totalPoints[$pp] = $totalPoints[$pp] + $sum; } $sumInterview = []; $countAnswers = []; for ($cone = 0; $cone < sizeof($committeeOne); $cone++) { $sumInterview[$cone] = array_sum($committeeOne[$cone]); $count = 0; for($cnn = 0; $cnn < sizeOf($committeeOne[$cone]); $cnn++) { if ($committeeOne[$cone][$cnn] != "") { $count++; } } $countAnswers[$cone] = $count; } $avgIterview = []; $totalInterview = []; $solvex = []; for ($ccc = 0; $ccc < sizeOf($sumInterview); $ccc++) { if ($countAnswers[$ccc] > 0) { $avgIterview[$ccc] = (double)$sumInterview[$ccc] / $countAnswers[$ccc]; $totalInterview[$ccc] = (double)$interviewMaxPoints * (double)($avgIterview[$ccc] / $interviewRatingMax); if ($totalInterview[$ccc] > $interviewMaxPoints) { $totalInterview[$ccc] = $interviewMaxPoints; } } else { $totalInterview[$ccc] = 0; } $totalPoints[$ccc] = $totalPoints[$ccc] + $totalInterview[$ccc]; } $start = 0; $officename = null; $office_address = null; $email = null; $telephone = null; $voip = null; $included_logo = null; $logoPath = null; $parentLogo = null; if ($data['header']) { $officename = $data['header']['officename']; $office_address = $data['header']['office_address']; $email = $data['header']['email']; $telephone = $data['header']['telephone']; $voip = $data['header']['voip']; $included_logo = $data['header']['included_logo']; $logoPath = $data['header']['logo_path']; $parentLogo = $data['header']['parent_logo_path']; } $localVoip = ($voip) ? 'Local ' . $voip : ''; $logoPath = $data["logoPath"]; $parentLogoPath = $data["parentLogoPath"]; @endphp {{ $data["job_code"] }} - Rating Instrument
@if ($data['header'])
@if ($included_logo == 'higher' && $parentLogoPath) LOGO @endif @if ($included_logo && $logoPath) LOGO @endif
{{ $officename }}
Visca, Baybay City, Leyte, 6521-A PHILIPPINES
Telefax: {{ $telephone }}; {{ $localVoip }}
Email: {{ $email }}
Website: www.vsu.edu.ph
@else
{{ strtoupper('Office of the Director for Human Resource Management') }}
G/F Administration Building
Visca, Baybay City, Leyte, 6521-A PHILIPPINES
Telefax: +63 53 563 7643; Local 1060
Email: odahrd@vsu.edu.ph
Website: www.vsu.edu.ph
@endif
@for ($try = 0; $try < $dividend; $try++) @php $temptry = $try; $temptry++; $limit = ($temptry * $max_per_page); @endphp
@if ($try == 0)

RATING INSTRUMENT TO EVALUATE APPLICANTS FOR TEACHING/FACULTY POSITION

(per BOR Resolution No. 89, s. 2018)

@else
@endif
{{-- --}} @php for ($appss = $start; $appss < $minimum; $appss++) { $temp = $appss; if ($appss < $app_size) { echo ''; } else { echo ''; } } @endphp @for ($sab = $start; $sab < $limit; $sab++) @if ($app_size > 0) @else @endif @endfor @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebo = $start; $ebo < $limit; $ebo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($swex = $start; $swex < $limit; $swex++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebt = $start; $ebt < $limit; $ebt++) @if ($app_size > 0) @else @endif @endfor
Criteria (additional criteria with highlight) Points per
Indicator
Maximum
points
Total
Points
Rating
       {{ $applicants[0]["fullname"] }}' . ucfirst($applicants[$appss]) . 'Applicant '. ++$temp .'
I. Academic background: degree finished
(to be rated en banc based on documents submitted)
40{{ $sumAcadBack[$sab] }} 
a) PhD/doctoral degree: Appropriate major field 30 30 {{ $enbancOne[$ebo][0] }} 
Closely Related field 20 {{ $enbancOne[$ebo][1] }} 
Slightly related 10 {{ $data["enbancOne"][2] }}{{ $enbancOne[$ebo][2] }} 
Masteral Degree: Appropriate major field 20 {{ $data["enbancOne"][3] }}{{ $enbancOne[$ebo][3] }} 
Closely Related field 15 {{ $data["enbancOne"][4] }}{{ $enbancOne[$ebo][4] }} 
Slightly related 5 {{ $data["enbancOne"][5] }}{{ $enbancOne[$ebo][5] }} 
Bachelors degree (if there are no applicants with Master's degree)
Appropriate major field 10 {{ $data["enbancOne"][6] }}{{ $enbancOne[$ebo][6] }} 
Closely Related field 5 {{ $data["enbancOne"][14] }}{{ $enbancOne[$ebo][14] }} 
Slightly Related 3 {{ $data["enbancOne"][15] }}{{ $enbancOne[$ebo][15] }} 
b) Grade point average: 5
1.00 – 1.25 5 {{ $data["enbancOne"][7] }}{{ $enbancOne[$ebo][7] }} 
1.26 – 1.50 4 {{ $data["enbancOne"][8] }}{{ $enbancOne[$ebo][8] }} 
1.51 – 1.75 3 {{ $data["enbancOne"][9] }}{{ $enbancOne[$ebo][9] }} 
1.51 – 1.75 2 {{ $data["enbancOne"][10] }}{{ $enbancOne[$ebo][10] }} 
2.0 and beyond 1 {{ $data["enbancOne"][11] }}{{ $enbancOne[$ebo][11] }} 
c) Related additional graduate units: For every 3 units earned 5
A higher relevant degree course (not to exceed 5.0 points) 0.50 {{ ($data["enbancOne"][12]) ? number_format($data["enbancOne"][12], 2) : "" }}{{ ($enbancOne[$ebo][12]) ? number_format($enbancOne[$ebo][12], 2) : "" }} 
A slightly relevant degree course (not to exceed 2.5 points) 0.25 {{ ($data["enbancOne"][13]) ? number_format($data["enbancOne"][13], 2) : "" }}{{ ($enbancOne[$ebo][13]) ? number_format($enbancOne[$ebo][13], 2) : "" }} 
II. Work experience (to be rated en banc)
(instruction/research/extension/administrative designation):
10{{ number_format($sumWorkExp, 2) }}{{ number_format($sumWorkExp[$swex], 2) }} 
For every year of full-time academic service in SUCs, CHED-supervised 1.00 {{ $data["enbancTwo"][0] }}{{ $enbancTwo[$ebt][0] }} 
 
{{-- --}} @for ($ebth = $start; $ebth < $limit; $ebth++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebt = $start; $ebt < $limit; $ebt++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebt = $start; $ebt < $limit; $ebt++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($tspdd = $start; $tspdd < $limit; $tspdd++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($sfq = $start; $sfq < $limit; $sfq++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ssecq = $start; $ssecq < $limit; $ssecq++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($sttqq = $start; $sttqq < $limit; $sttqq++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($sfqq = $start; $sfqq < $limit; $sfqq++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ebthh = $start; $ebthh < $limit; $ebthh++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($intr = $start; $intr < $limit; $intr++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($tdo = $start; $tdo < $limit; $tdo++) @if ($app_size > 0) @else @endif @endfor
                 
    HEI or TESDA-supervised TEI (teaching in college or doing
    research & extension functions)
     {{ $data["enbancThree"][15] }}  
For every year of full-time academic service in institution of higher
             learning other than SUC, HEI or TEI
0.75 {{ $data["enbancTwo"][1] }}{{ $enbancTwo[$ebt][1] }} 
For every year of full-time non-academic service but experience 0.50 {{ $data["enbancTwo"][2] }}{{ $enbancTwo[$ebt][2] }} 
III. Professional Development Achievement and Honors
(to be rated en banc)
10{{ number_format($totalSumProfDev, 2) }}{{ number_format($totalSumProfDev[$tspdd], 2) }} 
{{ strtoupper('Honors & Awards') }} 2.50 {{ number_format($sumFirstQuarter, 2) }}{{number_format( $sumFirstQuarter[$sfq], 2) }} 
a) Undergraduate Honors: Summa cum laude 3.00 {{ $data["enbancThree"][0] }}{{ $enbancThree[$ebthh][0] }} 
Magna cum laude 2.00 {{ $data["enbancThree"][1] }}{{ $enbancThree[$ebthh][1] }} 
Cum laude 1.00 {{ $data["enbancThree"][2] }}{{ $enbancThree[$ebthh][2] }} 
b) Awards: (Scholarships): Doctorate 3.00 {{ $data["enbancThree"][3] }}{{ $enbancThree[$ebthh][3] }} 
Masteral 2.00 {{ $data["enbancThree"][4] }}{{ $enbancThree[$ebthh][4] }} 
Undergraduate (based on honors) 0.75 {{ $data["enbancThree"][5] }}{{ $enbancThree[$ebthh][5] }} 
Undergraduate (non-competitive) 0.50 {{ $data["enbancThree"][6] }}{{ $enbancThree[$ebthh][6] }} 
c) Recognition of achievement: International 1.00 {{ $data["enbancThree"][7] }}{{ $enbancThree[$ebthh][7] }} 
National/Regional 0.75 {{ $data["enbancThree"][8] }}{{ $enbancThree[$ebthh][8] }} 
Local 0.50 {{ $data["enbancThree"][9] }}{{ $enbancThree[$ebthh][9] }} 
{{ strtoupper('Training/seminar workshops') }} 2.50 {{ number_format($sumSecondQuarter, 2) }}{{number_format( $sumSecondQuarter[$ssecq], 2) }} 
a) For every one year of relevant training: International 1.00 {{ $data["enbancThree"][10] }}{{ $enbancThree[$ebthh][10] }} 
National 0.75 {{ $data["enbancThree"][11] }}{{ $enbancThree[$ebthh][11] }} 
Local 0.50 {{ $data["enbancThree"][12] }}{{ $enbancThree[$ebthh][12] }} 
b) For every 8 hours of relevant conferences, seminars or workshops:
International 0.25 {{ $data["enbancThree"][13] }}{{ $enbancThree[$ebthh][13] }} 
National 0.20    {{ $data["enbancThree"][14] }}{{ $enbancThree[$ebthh][14] }} 
Local 0.10    {{ $data["enbancThree"][15] }}{{ $enbancThree[$ebthh][15] }} 
c) For every expert services as lecturer/resource person or guest
speaker in conferences, workshops, and/or training courses:
2.50 {{ number_format($sumThirdQuarter, 2) }}{{number_format( $sumThirdQuarter[$sttqq], 2) }} 
International 1.00 {{ $data["enbancThree"][16] }}{{ $enbancThree[$ebthh][16] }} 
National 0.75 {{ $data["enbancThree"][17] }}{{ $enbancThree[$ebthh][17] }} 
Local 0.50 {{ $data["enbancThree"][18] }}{{ $enbancThree[$ebthh][18] }} 
d) Publication (for every scholarly research/monograph/educational
technical articles in a technical/scientific/professional journal):
2.50 {{ number_format($sumFourthQuarter, 2) }}{{number_format( $sumFourthQuarter[$sfqq], 2) }} 
International 1.00 {{ $data["enbancThree"][19] }}{{ $enbancThree[$ebthh][19] }} 
National 0.75 {{ $data["enbancThree"][20] }}{{ $enbancThree[$ebthh][20] }} 
Local 0.50 {{ $data["enbancThree"][21] }}{{ $enbancThree[$ebthh][21] }} 
IV. Interview (rated individually by committee member using the
Competency Assessment/Rating Form)
10{{ number_format($totalInterview, 2) }}{{ number_format($totalInterview[$intr], 2) }} 
V. Teaching Demonstration (rated individually) 20{{ number_format($totalDemo, 2) }}{{ number_format($totalDemo[$tdo], 2) }} 
{{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($ctw = $start; $ctw < $limit; $ctw++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($sil = $start; $sil < $limit; $sil++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($esx = $start; $esx < $limit; $esx++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($esx = $start; $esx < $limit; $esx++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($esx = $start; $esx < $limit; $esx++) @if ($app_size > 0) @else @endif @endfor @for ($suo = $start; $suo < $limit; $suo++) @if ($app_size > 0) @else @endif @endfor {{-- --}} @for ($tp = $start; $tp < $limit; $tp++) @if ($app_size > 0) @else @endif @endfor
                 
(20% of the total points obtained in the teaching demo)
Has adequate knowledge of the subject matter 10 {{ $data["committeeTwo"][0] }}{{ $committeeTwo[$ctw][0] }} 
Gives clear statement of objectives and content is appropriate in
satisfying these objectives
10 {{ $data["committeeTwo"][1] }}{{ $committeeTwo[$ctw][1] }} 
Has poise and feels confident, delivers logical and organized
presentation
8 {{ $data["committeeTwo"][2] }}{{ $committeeTwo[$ctw][2] }} 
Emphasized key points and makes subject matter meaningful
(through examples/analogies and/or illustrations)
8 {{ $data["committeeTwo"][3] }}{{ $committeeTwo[$ctw][3] }} 
Demonstrates enthusiasm and interest in the subject matter 7 {{ $data["committeeTwo"][4] }}{{ $committeeTwo[$ctw][4] }} 
Uses understandable vocabulary, speaks clearly and distinctly
with appropriate pacing
10 {{ $data["committeeTwo"][5] }}{{ $committeeTwo[$ctw][5] }} 
Can stir up interest and withhold attention of the audiences as
well as encourages participatory discussion
10 {{ $data["committeeTwo"][6] }}{{ $committeeTwo[$ctw][6] }} 
Answers questions directly with a sensation of accuracy 10 {{ $data["committeeTwo"][7] }}{{ $committeeTwo[$ctw][7] }} 
Uses appropriate non-verbal communications (i.e. gestures, facial
expressions, etc.) without annoying mannerisms, maintains eye
contact
10 {{ $data["committeeTwo"][8] }}{{ $committeeTwo[$ctw][8] }} 
Uses and handles teaching aids properly 7 {{ $data["committeeTwo"][9] }}{{ $committeeTwo[$ctw][9] }} 
Utilizes time efficiently and punctual in ending topic presentation 5 {{ $data["committeeTwo"][10] }}{{ $committeeTwo[$ctw][10] }} 
Summarizes the topic and gives appropriate applications 5 {{ $data["committeeTwo"][11] }}{{ $committeeTwo[$ctw][11] }} 
VI. License/eligibility: not to exceed 5 points (rated en banc) 5{{ number_format($sumElig, 2) }}{{ $sumElig[$sil] }} 
Applicable License 5 {{ $data["enbancSix"][0] }}{{ $enbancSix[$esx][0] ? (int)$enbancSix[$esx][0] : "" }} 
CSC Eligibility 3 {{ $data["enbancSix"][1] }}{{ $enbancSix[$esx][1] ? (int)$enbancSix[$esx][1] : "" }} 
Skills training certificate (TESDA & similar trainings) per certificate 1 {{ $data["enbancSix"][2] }}{{ $enbancSix[$esx][2] ? (int)$enbancSix[$esx][2] : "" }} 
VII. Other Qualifications: Writing skills, computer literacy, drawing,
statistical analysis, etc. (to be rated individually based on
submitted document or en banc)
5{{ $sumOther[$suo] }} 
TOTAL 100{{ number_format($totalRate, 2) }}{{ number_format($totalPoints[$tp], 2) }} 
@php if ($dividend > 1) { $start = $start + 5; $minimum = $minimum + 5; } @endphp @endfor
    {{ !is_null($data["screening_date"]) ? date('F d, Y',strtotime($data["screening_date"])) : ""}}           {{ strtoupper($data["committee"]->realname) }}    
Date of Screening/Evaluation   Name and Signature of Evaluator

Note: 1) Background investigation (BI) will be conducted by the Department Personnel Committee to validate authenticity of submitted documents and other claims, as well as to give highlights on
the applicant’s past work performance as well as his/her attitude/character based on accounts of his/her past supervisors, co-workers or classmates and teachers. The result will be part of
the requirements for hiring. It is not given points but it can help the unit decide whether to hire or not. Negative findings during the BI will be sufficient reason not to appoint the top ranking
candidate.

2) For applicants with advanced degrees, average GPA will be computation separately for BS, MS, and PhD, then the overall average of the 3 will be obtained and used as basis in giving
the rating.