-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpeople.html
1413 lines (1269 loc) · 60.4 KB
/
people.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
layout: default
title: Docentes
---
<h2 id="top"></h2>
<table border="1" align="center" class="table">
<th>Computing</th>
<th>Mathematics</th>
<th>Humanities</th>
<tr>
<td>
<ul>
<li><a href="#acuadrosucspedupe">Dr. Alex Jesús Cuadros Vargas</a></li>
</ul>
<ul>
<li><a href="#dbarriosucspedupe">Dr. Dennis Barrios Aranibar</a></li>
<li><a href="#ecuadrosucspedupe">Dr. Ernesto Cuadros-Vargas</a></li>
<li><a href="#gcalderonucspedupe">Dr. Guillermo Enrique Calderón Ruiz</a></li>
<li><a href="#jtejadacucspedupe">Dr. Javier Leandro Tejada Cárcamo</a></li>
<li><a href="#jeochoaucspedupe">Dr. Jose Eduardo Ochoa Luna</a></li>
<li><a href="#rpatinoucspedupe">Dr. Raquel Patiño Escarcina</a></li>
<li><a href="#ytupacucspedupe">Dr. Yván Jesús Túpac Valdivia</a></li>
</ul>
<ul>
<li><a href="#anamariacuadrosucspedupe">Dr. Ana María Cuadros Valdivia</a></li>
<li><a href="#jcgutierrezcucspedupe">Dr. Juan Carlos Gutiérrez Cáceres</a></li>
</ul>
<ul>
<li><a href="#ahmamaniucspedupe">Mag. Alvaro Henry Mamani Aliaga</a></li>
<li><a href="#cjdelgadoucspedupe">Mag. Christian Jorge Delgado Polar</a></li>
<li><a href="#ccasteloucspedupe">Mag. César Christian Castelo Fernández</a></li>
<li><a href="#frizzisanromanucspedupe">Mag. Frizzi Alejandra San Roman Salazar</a></li>
<li><a href="#glovonucspedupe">Mag. Gina Lovon Alvarado</a></li>
<li><a href="#gmezalucspedupe">Mag. Graciela Lecireth Meza Lovón</a></li>
<li><a href="#igorcalizayaucspedupe">Mag. Igor Fernando Calizaya Catacora</a></li>
<li><a href="#jsantistebanucspedupe">Mag. Julio Omar Santisteban Pablo</a></li>
<li><a href="#renssomoraucspedupe">Mag. Rensso Victor Hugo Mora Colque</a></li>
</ul>
<ul>
<li><a href="#jcanoucspedupe">Prof. Jhon Humberto Cano Chávez</a></li>
<li><a href="#jpenarrietaucspedupe">Prof. José Alonso Peñarrieta Escobedo</a></li>
</ul>
<ul>
<li><a href="#hernanalvarezucspedupe">Bach Hernán Humberto Álvarez Valera</a></li>
<li><a href="#hjneyraucspedupe">Bach Jorge Homero Neyra Araoz</a></li>
</ul>
</td>
<td>
<ul>
<li><a href="#jcruztucspedupe">Dr. Judith Hayde Cruz Torres</a></li>
</ul>
<ul>
<li><a href="#ldiazucspedupe">Mag. Luis Fernando Díaz Basurco</a></li>
</ul>
<ul>
<li><a href="#cortizucspedupe">Prof. Christian Paúl Ortiz Martinez</a></li>
<li><a href="#dmayoriucspedupe">Prof. Deisy Virginia Mayorí Velásquez</a></li>
<li><a href="#dninaucspedupe">Prof. Dugán Paúl Nina Ortiz</a></li>
<li><a href="#lvasquezucspedupe">Prof. Luz Marina Vásquez Quispe</a></li>
<li><a href="#rlinaresucspedupe">Prof. Rubel Dorjin Linares Málaga</a></li>
</ul>
</td>
<td>
<ul>
<li><a href="#achavezcucspedupe">Mag. Angel Evaristo Chávez Contreras</a></li>
<li><a href="#dariasucspedupe">Mag. Diego Fabián Arias Padilla</a></li>
<li><a href="#hramossucspedupe">Mag. Hugo Mario Ramos Salinas</a></li>
<li><a href="#lparedesvucspedupe">Mag. Libertad Alejandra Paredes Valdivia</a></li>
<li><a href="#rcastroucspedupe">Mag. Rodolfo José Castro Salinas</a></li>
<li><a href="#tmedinaucspedupe">Mag. Tatiana Beatriz Medina Sanchez</a></li>
</ul>
<ul>
<li><a href="#agarciacalderonucspedupe">Prof. Adriana Maria Irene García Calderón Barreda</a></li>
<li><a href="#egordilloucspedupe">Prof. Enrique Gordillo Cisneros</a></li>
<li><a href="#gmaldonadoucspedupe">Prof. Gonzalo Omar Maldonado Chauca</a></li>
<li><a href="#jvcondoriucspedupe">Prof. José Victor Condori Condori</a></li>
<li><a href="#mariaelenaortizucspedupe">Prof. Maria Elena Ortiz Ramirez</a></li>
<li><a href="#mlrodriguezucspedupe">Prof. María Lourdes Rodríguez Manrique</a></li>
<li><a href="#rfmattospucspedupe">Prof. Rolando Fabián Mattos Pino</a></li>
</ul>
</td>
</tr>
</table>
<!>
<h2 id="acuadrosucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Alex Jesús Cuadros Vargas" alt="Alex Jesús Cuadros Vargas" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Dr. Alex Jesús Cuadros Vargas</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li style="text-align:justify">Post Doc. Ciencia de la Computación, ICMC-USP, Brasil, 2009.</li>
<li style="text-align:justify">Dr. Ciencia de la Computación, ICMC-USP, Brasil, 2007.</li>
<li style="text-align:justify">Mag. Ciencia de la Computación, ICMC-USP, Brasil, 2001.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605600 ext 311<br></td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS103O. Algoritmos y Estructuras de Datos (4to Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="dbarriosucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Dennis Barrios Aranibar" alt="Dennis Barrios Aranibar" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Dr. Dennis Barrios Aranibar</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li style="text-align:justify;">Dr. Ingeniería Eléctrica y de Computación, Robótica, UFRN, Brasil.</li>
<li style="text-align:justify;">Mag. Ingeniería Eléctrica y de Computación, Robótica, UFRN, Brasil.</li>
<li style="text-align:justify;">Prof. Ingeniero de Sistemas, UNSA, Perú, 2000.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-briefcase"></span> Taller de robótica (Campus de Salaverry)<br></td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS211T. Teoría de la Computación (4to Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS361. Tópicos en Inteligencia Artificial (9no Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="ecuadrosucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Ernesto Cuadros-Vargas" alt="Ernesto Cuadros-Vargas" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Dr. Ernesto Cuadros-Vargas</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Dr. Ciencia de la Computación, ICMC-USP, Brasil, 2004.</li>
<li>Mag. Ciencia de la Computación, ICMC-USP, Brasil, 1998.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-briefcase"></span> Computer Science Program, 4th floor, UCSP San Lázaro<br> <span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630 Ext 326<br>
<a title="Webpage" href="http://socios.spc.org.pe/ecuadros"> <span class="glyphicon glyphicon glyphicon-globe"></span> Webpage</a> <a title="Facebook" href="https://www.facebook.com/pages/Ernesto-Cuadros-Vargas-Public-Figure/136184539813774"> <i class="fa fa-facebook-square fa-lg"></i></a> <a title="Twitter" href="https://www.twitter.com/@ecuadrosv"> <i class="fa fa-twitter-square fa-lg"></i></a> <a title="Blog" href="https://ecuadros.blogspot.com"> <i class="fa fa-bold fa-lg"></i></a>
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS100. Introducción a la Ciencia de la Computación (2do Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS315. Estructuras de Datos Avanzadas (6to Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="gcalderonucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Guillermo Enrique Calderón Ruiz" alt="Guillermo Enrique Calderón Ruiz" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Dr. Guillermo Enrique Calderón Ruiz</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Dr. Ciencias de la Ingeniería, Pontificia Universidad Católica de Chile, Chile, 2011.</li>
<li>Mag. Ingeniería de Sistemas, Universidad Católica Santa María, Perú, 2009.</li>
<li>Prof. Ingeniero de Sistemas, Universidad Católica Santa María, Perú, 1998.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS290T. Ingeniería de Software I (5to Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS390. Ingeniería de Software II (6to Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS402. Proyecto II (8vo Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="jtejadacucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Javier Leandro Tejada Cárcamo" alt="Javier Leandro Tejada Cárcamo" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Dr. Javier Leandro Tejada Cárcamo</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Dr. Ciencia de la Computación, IPN, México, 2009.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS271T. Bases de Datos II (5to Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS370. Tópicos en Bases de Datos (9no Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS403. Proyecto de Tesis (9no Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="jeochoaucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Jose Eduardo Ochoa Luna" alt="Jose Eduardo Ochoa Luna" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Dr. Jose Eduardo Ochoa Luna</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Dr. Ciencia de la Computación, Universidade de Sao Paulo, Brasil, 2011.</li>
<li>Mag. Ciencia de la Computación, Universidade Federal de Mato Grosso do Sul - UFMS, Brasil, 2004.</li>
<li>Prof. Bachiller en Ingeniería de Sistemas, Universidad Nacional San Agustín, Perú, 2000.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS403. Proyecto de Tesis (9no Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">ET101. Formación de Empresas de Base Tecnológica I (9no Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="rpatinoucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Raquel Patiño Escarcina" alt="Raquel Patiño Escarcina" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Dr. Raquel Patiño Escarcina</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Dr. Ingeniería Eléctrica y de Computación, Universidade Federal do Rio Grande do Norte, Brasil, 2009.</li>
<li>Mag. Ingeniería Eléctrica y de Computación, Universidade Federal do Rio Grande do Norte, Brasil, 2004.</li>
<li>Prof. Ingeniero de Sistemas, Universidad Nacional San Agustín, Perú, 2000.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS280T. Aspectos sociales y profesionales de la computación (8vo Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="ytupacucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Yván Jesús Túpac Valdivia" alt="Yván Jesús Túpac Valdivia" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Dr. Yván Jesús Túpac Valdivia</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Dr. Ingeniería Eléctrica, Pontificia Universidad Católica de Rio de Janeiro, Brasil, 2005.</li>
<li>Mag. Ingeniería Eléctrica, Pontificia Universidad Católica de Rio de Janeiro, Brasil, 2000.</li>
<li>Prof. Bachiller en Ingeniería Eléctrica, Universidad Nacional San Agustín, Perú, 1994.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS220T. Arquitectura de Computadores (3er Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="anamariacuadrosucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Ana María Cuadros Valdivia" alt="Ana María Cuadros Valdivia" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Dr. Ana María Cuadros Valdivia</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Dr. Ciencia de la Computación, Universidad Nacional San Agustín, Perú, 2013.</li>
<li>Mag. Ciencia de la Computación, ICMC-USP, Brasil, 2007.</li>
<li>Prof. Ingeniería Informática, Universidad Católica San Pablo, Perú, 2008.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS107. Álgebra Abstracta (3er Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS401. Proyecto I (7mo Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS250W. Interacción Humano Computador (7mo Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="jcgutierrezcucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Juan Carlos Gutiérrez Cáceres" alt="Juan Carlos Gutiérrez Cáceres" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Dr. Juan Carlos Gutiérrez Cáceres</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Dr. Ciencia de la Computación, Universidad Nacional de San Agustín, Perú, 2013.</li>
<li>Mag. Ciencia de la Computación, ICMC-USP, Brasil, 2003.</li>
<li>Prof. Ingeniero de Sistemas, Universidad Nacional de San Agustín, Perú, .</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS261T. Inteligencia Artificial (7mo Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS403. Proyecto de Tesis (9no Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS355. Tópicos en Computación Gráfica (9no Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="ahmamaniucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Alvaro Henry Mamani Aliaga" alt="Alvaro Henry Mamani Aliaga" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Mag. Alvaro Henry Mamani Aliaga</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Mag. Computer Science,Brasil.</li>
<li>Prof. Bachiller Ingeniería de Sistemas.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS343. Lenguajes de Programación (7mo Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS314. Algoritmos Paralelos (7mo Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS331. Cloud Computing (10mo Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="cjdelgadoucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Christian Jorge Delgado Polar" alt="Christian Jorge Delgado Polar" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Mag. Christian Jorge Delgado Polar</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Mag. Ciencia de la Computación, DCC-UFMG, Brasil, 2007.</li>
<li>Prof. Bachiller en Ingeniería Informática, Universidad Católica San Pablo, Perú, 2004.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS402. Proyecto II (8vo Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="ccasteloucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="César Christian Castelo Fernández" alt="César Christian Castelo Fernández" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Mag. César Christian Castelo Fernández</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Mag. Ciencia de la Computación, Universidad Estadual de Campinas-Unicamp, Brasil, 2011.</li>
<li>Prof. Ingeniería de Sistemas, Universidad Católica Santa María, Perú, 2009.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS270T. Bases de Datos I (4to Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS401. Proyecto I (7mo Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="frizzisanromanucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Frizzi Alejandra San Roman Salazar" alt="Frizzi Alejandra San Roman Salazar" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Mag. Frizzi Alejandra San Roman Salazar</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Mag. Ciencia de la Computación, Universidade de Sao Paulo, Brasil, 2012.</li>
<li>Prof. Ingeniería Informática, Universidad Católica San Pablo, Perú, 2006.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">FG102. Metodología del Estudio (1er Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS240S. Compiladores (8vo Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS255. Computación Gráfica (8vo Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="glovonucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Gina Lovon Alvarado" alt="Gina Lovon Alvarado" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Mag. Gina Lovon Alvarado</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Mag. Ingeniería de Software, Universidad de Tarapacá, Chile, 2012.</li>
<li>Prof. Ingeniera de Sistemas, Universidad Nacional de San Agustín, Perú, 2012.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS130. Introducción a Internet (3er Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="gmezalucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Graciela Lecireth Meza Lovón" alt="Graciela Lecireth Meza Lovón" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Mag. Graciela Lecireth Meza Lovón</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Mag. Ciencia de la Computación, UFMS-MS, Brasil, 2007.</li>
<li>Prof. Bachiller en Ingeniería Informática, Universidad Católica San Pablo, Perú, 2004.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS105. Estructuras Discretas I (1er Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS403. Proyecto de Tesis (9no Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="igorcalizayaucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Igor Fernando Calizaya Catacora" alt="Igor Fernando Calizaya Catacora" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Mag. Igor Fernando Calizaya Catacora</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Mag. Information Systems Management, University of Greenwich, Inglaterra, 2012.</li>
<li>Prof. Ingeniero Informático, Universidad Católica San Pablo, Perú, 2008.</li>
</ul
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630 /
<a title="Twitter" href="https://www.twitter.com/@igorfcc"> <i class="fa fa-twitter-square fa-lg"></i></a>
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS402. Proyecto II (8vo Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="jsantistebanucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Julio Omar Santisteban Pablo" alt="Julio Omar Santisteban Pablo" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Mag. Julio Omar Santisteban Pablo</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Mag. Internetworking, University of Technology, Australia, 2008.</li>
<li>Profesor.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS225T. Sistemas Operativos (6to Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS336. Seguridad en Computación (7mo Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS230W. Computación Centrada en Redes (8vo Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS232W. Programación de Dispositivos Móviles (10mo Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="renssomoraucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Rensso Victor Hugo Mora Colque" alt="Rensso Victor Hugo Mora Colque" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Mag. Rensso Victor Hugo Mora Colque</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Mag. Ciencia de la Computación, Universidade Federal de Ouro Preto, Brasil, 2012.</li>
<li>Prof. Ingeniero Informático, Universidad Católica San Pablo, Perú, 2011.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS101O. Introducción a la Programación Orientada a Objetos (2do Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS102O. Objetos y Abstracción de Datos (3er Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS210T. Análisis y Diseño de Algoritmos (5to Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="jcanoucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Jhon Humberto Cano Chávez" alt="Jhon Humberto Cano Chávez" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Prof. Jhon Humberto Cano Chávez</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Prof. Ingeniería de Sistemas, Universidad Católica Santa María, Perú, .</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS391. Calidad de Software (8vo Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="jpenarrietaucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="José Alonso Peñarrieta Escobedo" alt="José Alonso Peñarrieta Escobedo" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Prof. José Alonso Peñarrieta Escobedo</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Prof. Ingeniero Informático, Universidad Católica San Pablo, Perú, 2008.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS101F. Introducción a la Programación (1er Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS103O. Algoritmos y Estructuras de Datos (4to Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="hernanalvarezucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img data-src="/js/holder.js/150x200" style="width: 150px;" title="Hernán Humberto Álvarez Valera" alt="Hernán Humberto Álvarez Valera" src="/img/photos/noface.gif" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Bach Hernán Humberto Álvarez Valera</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Bach Bachiller de Ingeniería Informática, Universidad Católica San Pablo, Perú, 2013.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS101F. Introducción a la Programación (1er Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS101O. Introducción a la Programación Orientada a Objetos (2do Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS225T. Sistemas Operativos (6to Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS315. Estructuras de Datos Avanzadas (6to Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="hjneyraucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Jorge Homero Neyra Araoz" alt="Jorge Homero Neyra Araoz" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Bach Jorge Homero Neyra Araoz</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Bach Bachiller de Ingeniería de Sistemas, Universidad Nacional San Agustín, Perú, 2006.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS290T. Ingeniería de Software I (5to Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS390. Ingeniería de Software II (6to Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS331. Cloud Computing (10mo Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="jcruztucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Judith Hayde Cruz Torres" alt="Judith Hayde Cruz Torres" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Dr. Judith Hayde Cruz Torres</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Dr. Matemáticas, ICMC-USP, Brasil, 2007.</li>
<li>Mag. Matemáticas, Universidad Católica del Norte, Chile, 2003.</li>
<li>Prof. Bachiller en Matemática, Universidad Nacional de San Agustín, Perú, 2000.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS105. Estructuras Discretas I (1er Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="ldiazucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Luis Fernando Díaz Basurco" alt="Luis Fernando Díaz Basurco" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Mag. Luis Fernando Díaz Basurco</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Mag. Matemática, Pontificia Universidad Católica del Perú, Perú, 1990.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CB307. Matemática aplicada a la computación (6to Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="cortizucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Christian Paúl Ortiz Martinez" alt="Christian Paúl Ortiz Martinez" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Prof. Christian Paúl Ortiz Martinez</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Prof. Matemática, Universidad Nacional de San Agustín, Perú, 2006.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CB101. Álgebra y Geometría (1er Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CB306. Análisis Numérico (5to Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="dmayoriucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Deisy Virginia Mayorí Velásquez" alt="Deisy Virginia Mayorí Velásquez" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Prof. Deisy Virginia Mayorí Velásquez</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Profesora.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CB203. Estadística y Probabilidades (4to Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="dninaucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Dugán Paúl Nina Ortiz" alt="Dugán Paúl Nina Ortiz" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Prof. Dugán Paúl Nina Ortiz</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Prof. Matemáticas, Universidad Nacional San Agustín, Perú, 2003.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CB103. Análisis Matemático II (3er Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CB201. Análisis Matemático III (4to Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="lvasquezucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Luz Marina Vásquez Quispe" alt="Luz Marina Vásquez Quispe" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Prof. Luz Marina Vásquez Quispe</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>
</tr>
<tr>
<td valign="top" width="50%" style="padding-right:10px;">
<ul>
<li>Prof. Licenciada en Matemática, Universidad Nacional de San Agustín, Perú, 2000.</li>
</ul>
<span class="glyphicon glyphicon glyphicon-envelope"></span> <a href="mailto:[email protected]"> [email protected]</a><br />
<span class="glyphicon glyphicon glyphicon-phone-alt"></span> +51-54-605630
</td>
<td style="width: 27%; padding-left:10px;" valign="top">
<b>Courses assigned:</b>
<ul>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS106. Estructuras Discretas II (2do Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CB102. Análisis Matemático I (2do Sem)</a></li>
<li><a href="http://education.spc.org.pe/Peru/CS-UCSP/Plan2010">CS260. Lógica Computacional (6to Sem)</a></li>
</ul>
</td>
<td style="width: 3%;" valign="top"> </td>
</tr>
</table>
<hr>
<!>
<h2 id="rlinaresucspedupe"></h2>
<table border="0" align="center" width="100%">
<tr>
<td width="20%" rowspan="2"> <img style="width: 150px;" title="Rubel Dorjin Linares Málaga" alt="Rubel Dorjin Linares Málaga" src="/img/photos/[email protected]" ></td>
<td colspan="2" style="width: 40%;"><h4><strong>Prof. Rubel Dorjin Linares Málaga</strong></h4></td>
<td style="width: 3%; padding-left:15px;"><a href="#"><span class="glyphicon glyphicon-chevron-up"></span></a></td>