-
Notifications
You must be signed in to change notification settings - Fork 0
/
placement.html
1223 lines (1127 loc) · 49.4 KB
/
placement.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
<!DOCTYPE html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<title>Welcome to Department of Computer Engineering</title>
<meta name="description" content="" />
<meta
name="viewport"
content="width=device-width, initial-scale=1, user-scalable=0"
/>
<!-- favicon
============================================ -->
<link
rel="shortcut icon"
type="image/x-icon"
href="html/educat-preview/educat/img/favicon.ico"
/>
<!-- Google Fonts
============================================ -->
<link
href="https://fonts.googleapis.com/css?family=Raleway:400,300,500,600,700,800"
rel="stylesheet"
type="text/css"
/>
<!-- Bootstrap CSS
============================================ -->
<link
rel="stylesheet"
href="html/educat-preview/educat/css/bootstrap.min.css"
/>
<!-- Fontawsome CSS
============================================ -->
<link
rel="stylesheet"
href="html/educat-preview/educat/css/font-awesome.min.css"
/>
<!-- Owl Carousel CSS
============================================ -->
<link
rel="stylesheet"
href="html/educat-preview/educat/css/owl.carousel.css"
/>
<!-- jquery-ui CSS
============================================ -->
<link
rel="stylesheet"
href="html/educat-preview/educat/css/jquery-ui.css"
/>
<!-- Meanmenu CSS
============================================ -->
<link
rel="stylesheet"
href="html/educat-preview/educat/css/meanmenu.min.css"
/>
<!-- Animate CSS
============================================ -->
<link rel="stylesheet" href="html/educat-preview/educat/css/animate.css" />
<!-- Animated Headlines CSS
============================================ -->
<link
rel="stylesheet"
href="html/educat-preview/educat/css/animated-headlines.css"
/>
<!-- Metarial Iconic Font CSS
============================================ -->
<link
rel="stylesheet"
href="html/educat-preview/educat/css/material-design-iconic-font.css"
/>
<link
rel="stylesheet"
href="html/educat-preview/educat/css/material-design-iconic-font.min.css"
/>
<!-- Slick CSS
============================================ -->
<link rel="stylesheet" href="html/educat-preview/educat/css/slick.css" />
<!-- Style CSS
============================================ -->
<link rel="stylesheet" href="html/educat-preview/educat/style.css" />
<!-- Color CSS
============================================ -->
<link rel="stylesheet" href="html/educat-preview/educat/css/color.css" />
<!-- Responsive CSS
============================================ -->
<link
rel="stylesheet"
href="html/educat-preview/educat/css/responsive.css"
/>
<!-- Modernizr JS
============================================ -->
<script src="html/educat-preview/educat/js/vendor/modernizr-2.8.3.min.js"></script>
</head>
<body>
<!--[if lt IE 8]>
<p class="browserupgrade">
You are using an <strong>outdated</strong> browser. Please
<a href="http://browsehappy.com/">upgrade your browser</a> to improve
your experience.
</p>
<![endif]-->
<!--Main Wrapper Start-->
<div class="as-mainwrapper">
<!--Bg White Start-->
<div class="bg-white">
<!--Header Area Start-->
<header>
<div class="header-logo-menu sticker">
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-12">
<div class="logo">
<a href="index.html">
<img
src="html/educat-preview/educat/img/logo/logo.png"
alt="DEPARTMENT OF COE"
/>
</a>
</div>
</div>
<div class="col-md-9">
<div class="mainmenu-area pull-right">
<div class="mainmenu hidden-sm hidden-xs">
<nav>
<ul id="nav">
<li class="current">
<a href="index.html">Home</a>
</li>
<li>
<a href="">About Us</a>
<ul class="sub-menu">
<li>
<a href="aboutjmi.html">About Jamia</a>
</li>
<li>
<a href="aboutdept.html">About Department</a>
</li>
<li>
<a href="visionnmission.html"
>Vision & Mission</a
>
</li>
<li>
<a href="msgfromhod.html">Message from HOD</a>
</li>
<li>
<a href="achivements.html">Achievements</a>
</li>
<li>
<a href="facilities.html">Facilities</a>
</li>
<li>
<a href="testimonial.html">Testimonials</a>
</li>
</ul>
</li>
<li>
<a href="">Academic</a>
<ul class="sub-menu">
<li>
<a href="courses.html">Courses Offered</a>
</li>
<li>
<a href="coursestructure.html"
>Course Structure</a
>
</li>
</ul>
</li>
<li>
<a href="">People</a>
<ul class="sub-menu">
<li>
<a href="faculty.html">Faculty Members</a>
</li>
<li>
<a href="phdscholar.html">Ph.D Scholars</a>
</li>
<li>
<a href="student.html">Students</a>
</li>
<li>
<a href="staff.html">Staff Members</a>
</li>
</ul>
</li>
<li>
<a href="">Research</a>
<ul class="sub-menu">
<li>
<a href="researcharea.html">Research Area</a>
</li>
<li>
<a href="project.html">Projects</a>
</li>
<li>
<a href="publication.html">Publication</a>
</li>
</ul>
</li>
<li>
<a href="event.html">Events</a>
</li>
<li>
<a href="placement.html">Placement</a>
</li>
</ul>
</nav>
</div>
<ul class="header-search">
<li class="search-menu">
<i id="toggle-search" class="zmdi zmdi-search-for"></i>
</li>
</ul>
<!--Search Form-->
<div class="search">
<div class="search-form">
<form id="search-form" action="#">
<input
type="search"
placeholder="Search here..."
name="search"
/>
<button type="submit">
<span>
<i class="fa fa-search"></i>
</span>
</button>
</form>
</div>
</div>
<!--End of Search Form-->
</div>
</div>
</div>
</div>
<div
class="col-md-12"
style="background-color:#046b09; height:2px;"
></div>
</div>
<!-- Mobile Menu Area start -->
<div class="mobile-menu-area">
<div class="container">
<div class="row">
<div class="col-lg-12 col-md-12 col-sm-12">
<div class="mobile-menu">
<nav id="dropdown">
<ul>
<li class="current">
<a href="index.html">Home</a>
</li>
<li>
<a href="">About Us</a>
<ul class="sub-menu">
<li>
<a href="aboutjmi.html">About Jamia</a>
</li>
<li>
<a href="aboutdept.html">About Department</a>
</li>
<li>
<a href="visionnmission.html">Vision & Mission</a>
</li>
<li>
<a href="msgfromhod.html">Message from HOD</a>
</li>
<li>
<a href="achivements.html">Achievements</a>
</li>
<li>
<a href="facilities.html">Facilities</a>
</li>
<li>
<a href="testimonial.html">Testimonials</a>
</li>
</ul>
</li>
<li>
<a href="">Academic</a>
<ul class="sub-menu">
<li>
<a href="courses.html">Courses Offered</a>
</li>
<li>
<a href="coursestructure.html"
>Course Structure</a
>
</li>
</ul>
</li>
<li>
<a href="">People</a>
<ul class="sub-menu">
<li>
<a href="faculty.html">Faculty Members</a>
</li>
<li>
<a href="phdscholar.html">Ph.D Scholars</a>
</li>
<li>
<a href="student.html">Students</a>
</li>
<li>
<a href="staff.html">Staff Members</a>
</li>
</ul>
</li>
<li>
<a href="">Research</a>
<ul class="sub-menu">
<li>
<a href="researcharea.html">Research Area</a>
</li>
<li>
<a href="project.html">Projects</a>
</li>
<li>
<a href="publication.html">Publication</a>
</li>
</ul>
</li>
<li>
<a href="event.html">Events</a>
</li>
<li>
<a href="placement.html">Placement</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
</div>
</div>
<!-- Mobile Menu Area end -->
</header>
<!--End of Header Area-->
<!--Slider Area Start-->
<div class="breadcrumb-banner-area placement-breadcrumb">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1 class="text-center" style="color:#046b09;">PLACEMENT</h1>
</div>
</div>
</div>
</div>
<div class="event-details-area section-padding">
<div class="container">
<div class="row">
<script>
function myFunction(contentId) {
var arr = document.getElementsByClassName('sem');
for (var i = 0; i < arr.length; i++) {
arr[i].style.display = 'none';
}
var x = document.getElementById(contentId);
console.log(contentId);
contentId.style.display = 'block';
}
</script>
<div class="col-md-10">
<div
class="event-details-content sem"
id="e1"
style="background-color:rgb(216, 216, 216);"
>
<style>
.list-group-item {
background-color: rgb(239, 238, 238);
font-size: 0.85em;
}
.list-group {
border-bottom: 5px solid #046b09;
margin-bottom: 0px;
}
</style>
<div class="col-md-12" style="">
<div class="col" style="">
<font size="3" color="black">
<p>
Campus Placement is the facility given by the
University Placement Cell to the Department of
Computer Engineering to provide jobs for students
pursuing B.Tech. and M.Tech. Computer Engineering
programs. In this facility, the national and
multinational companies visit the college to select
students depending on their ability to work,
capability, focus, and aim. The major objective of
campus placement is to provide job opportunities for
students before they complete their education. There
is a pre-placement talk for the students which
includes a presentation about the company. The
presentation includes information like selection
procedure, company’s milestones, organizational
achievements, candidate scope of improvement within
the organization if selected, salary, employment
benefits. Different companies that visit the campus
for placements have certain procedures that is set by
companies for selection of appropriate candidates.
These procedures may be different from company to
company.
</p>
<!-- <p>
Companies visiting the campus for recruitment purpose has specific qualification criteria. Qualification criteria includes
marks, grades range or total percentage of the Btech programme. Qualified students then undergo a test. This is usually a
simple aptitude test but depending on company and the position looking for, the difficulty level of the test may be at the
higher side. The qualified students also have to go through technical round in which company sets specific time to clear
this round. Purpose of this round is to check the coding skills of the candidate which after all is important for software
developing companies. Some of the companies may have a Group Discussion round as a filtering round. This round may or may
not be conducted. A common topic is placed before the group and a formal discussion or knowledge sharing is expected by the
interviewer. Purpose of this round is to check communication skills, etiquette of person, listening ability, convincing power,
group leadership, leader or follower and many more thing are evaluated on the basis of requirement or the particular intention
of company. It is very important to keep yourself updated with latest news and discussion topics for appearing in GD round.
After clearing all these rounds a formal interview is conducted, where the student’s stability and his confidence level towards
the particular work will be evaluated. The interview focuses on overall personality of the candidate. The more practical
application knowledge a candidate has, the more chances of their selection increase. So having worked on projects in the
industry, internships in relevant companies and industry visits to brands in the same sector will enhance a candidate's chance
of selection.
</p> -->
</font>
</div>
</div>
</div>
<div
class="event-details-content sem"
id="e5"
style="background-color:rgb(216, 216, 216);display:none;"
>
<style>
.list-group-item {
background-color: rgb(239, 238, 238);
font-size: 0.85em;
}
</style>
<div
class="col-md-12"
style="background-color:#046b09; color:white; padding:20px; text-align:center;"
>
<h2>B. Tech. Batch 2018</h2>
</div>
<div class="single-event-item">
<table class="table">
<!-- <colgroup span="2"></colgroup>
<colgroup span="2"></colgroup> -->
<thead class="header theader">
<th rowspan="2" colspan="1">Company Name</th>
<th rowspan="2" colspan="1">Package(LPA)</th>
<th rowspan="2" colspan="2">
Number Of Students Placed
</th>
</thead>
<tbody>
<tr>
<td>HSBC Software Development India Pvt. Ltd.</td>
<td>7.00/12.00</td>
<td>7</td>
</tr>
<tr>
<td>Tata Consultancy Services(TCS)</td>
<td>3.50</td>
<td>8</td>
</tr>
<tr>
<td>Wipro</td>
<td>3.30</td>
<td>4</td>
</tr>
<!-- <tr>
<td>Payu</td>
<td>10.75</td>
<td>2</td>
</tr> -->
<tr>
<td>Zillious</td>
<td>7.00</td>
<td>2</td>
</tr>
<tr>
<td>Libsys Limited</td>
<td>8.00</td>
<td>2</td>
</tr>
<!-- <tr>
<td>Opera Solutions</td>
<td>4.00</td>
<td>6</td>
</tr> -->
<!-- <tr>
<td>Opera</td>
<td>4.00</td>
<td>7</td>
</tr> -->
<!-- <tr>
<td>Info Edge India Limited</td>
<td>6.30</td>
<td>5</td>
</tr>
<tr>
<td>Unisys Limited</td>
<td>6.03</td>
<td>4</td>
</tr>
<tr>
<td>Tolexo</td>
<td>5.00</td>
<td>7</td>
</tr> -->
<!-- <tr>
<td>Capital IQ</td>
<td>5.90</td>
<td>4</td>
</tr> -->
<tr>
<td>Newgen Software Technologies</td>
<td>6.20</td>
<td>2</td>
</tr>
<tr>
<td>NEC Technologies</td>
<td>4.00</td>
<td>1</td>
</tr>
<!-- <tr>
<td>Mroads</td>
<td>5.00</td>
<td>3</td>
</tr>
<tr>
<td>Bluegape</td>
<td>5.50</td>
<td>1</td>
</tr> -->
<tr>
<td>Global Logic</td>
<td>4.50</td>
<td>5</td>
</tr>
<tr>
<td>Mahindra Conviva</td>
<td>6.63</td>
<td>4</td>
</tr>
<tr>
<td>Think Future Technologies Pvt. Ltd.</td>
<td>6.00</td>
<td>1</td>
</tr>
<tr>
<td>NPCL</td>
<td>5.00</td>
<td>3</td>
</tr>
<tr>
<td>Nedu Technologies</td>
<td>6.50</td>
<td>1</td>
</tr>
<tr>
<td>Samsung</td>
<td>8.80</td>
<td>1</td>
</tr>
<tr>
<td>Samsung R&D</td>
<td>8.80</td>
<td>3</td>
</tr>
<tr>
<td>EXL Analytics</td>
<td>6.00</td>
<td>3</td>
</tr>
<tr>
<td>VIZ Experts</td>
<td>6.00</td>
<td>1</td>
</tr>
<tr>
<td>Tejas Networks Ltd.</td>
<td>6.50</td>
<td>1</td>
</tr>
<tr>
<td>Xceedance</td>
<td>3.15</td>
<td>1</td>
</tr>
<tr>
<td>Microsoft</td>
<td>35.00</td>
<td>1</td>
</tr>
<tr>
<td>Provakil</td>
<td>3.50</td>
<td>1</td>
</tr>
<tr>
<td>Adobe Systems</td>
<td>11.00</td>
<td>1</td>
</tr>
</tbody>
</table>
</div>
</div>
<div
class="event-details-content sem"
id="e2"
style="background-color:rgb(216, 216, 216); display:none;"
>
<style>
.list-group-item {
background-color: rgb(239, 238, 238);
font-size: 0.85em;
}
.theader {
text-align: center;
font-weight: 1000;
color: #046b09;
font-size: 18px;
}
tbody {
text-align: left;
}
</style>
<div
class="col-md-12"
style="background-color:#046b09; color:white; padding:20px; text-align:center;"
>
<h2>B. Tech. Batch 2017</h2>
</div>
<div class="single-event-item">
<table class="table">
<!-- <colgroup span="2"></colgroup>
<colgroup span="2"></colgroup> -->
<thead class="header theader">
<th rowspan="2" colspan="1">Company Name</th>
<th rowspan="2" colspan="1">Package(LPA)</th>
<th rowspan="2" colspan="2">
Number Of Students Placed
</th>
</thead>
<tbody>
<tr>
<td>HSBC Software India Pvt. Ltd.</td>
<td>12.00</td>
<td>8</td>
</tr>
<tr>
<td>Tata Consultancy Survices(TCS)</td>
<td>3.50</td>
<td>6</td>
</tr>
<!-- <tr>
<td>Adobe Systems</td>
<td>10.12</td>
<td>1</td>
</tr> -->
<tr>
<td>Wipro</td>
<td>3.30</td>
<td>1</td>
</tr>
<tr>
<td>Opera Solutions</td>
<td>4.00</td>
<td>1</td>
</tr>
<tr>
<td>Newgen Software Technologies</td>
<td>6.25</td>
<td>3</td>
</tr>
<tr>
<td>Mroads</td>
<td>5.00</td>
<td>1</td>
</tr>
<tr>
<td>Belzabar</td>
<td>9.36</td>
<td>3</td>
</tr>
<tr>
<td>Global Logic</td>
<td>4.50</td>
<td>3</td>
</tr>
<tr>
<td>Cube26</td>
<td>6.50</td>
<td>6</td>
</tr>
<tr>
<td>Atom Data Labs</td>
<td>8.00</td>
<td>1</td>
</tr>
<tr>
<td>Jabong</td>
<td>5.50</td>
<td>4</td>
</tr>
<!-- <tr>
<td>Mahindra Comviva</td>
<td>6.50</td>
<td>5</td>
</tr> -->
<tr>
<td>Think Future Technology Pvt. Ltd.</td>
<td>5.50</td>
<td>4</td>
</tr>
<tr>
<td>SMEC</td>
<td>5.00</td>
<td>1</td>
</tr>
<!-- <tr>
<td>TCS Digital</td>
<td>6.90</td>
<td>1</td>
</tr> -->
<tr>
<td>Infosys</td>
<td>3.50</td>
<td>1</td>
</tr>
<tr>
<td>Conduent</td>
<td>3.20</td>
<td>1</td>
</tr>
<tr>
<td>Taazaa Tech Pvt. Ltd.</td>
<td>3.00</td>
<td>1</td>
</tr>
<tr>
<td>Code Brew Labs</td>
<td>7.50</td>
<td>3</td>
</tr>
<tr>
<td>Round One Network Pvt. Ltd.</td>
<td>1.50</td>
<td>1</td>
</tr>
<tr>
<td>Adobe Systems</td>
<td>10.12</td>
<td>1</td>
</tr>
</tbody>
</table>
</div>
</div>
<div
class="event-details-content sem"
id="e3"
style="background-color:rgb(216, 216, 216);display:none;"
>
<style>
.list-group-item {
background-color: rgb(239, 238, 238);
font-size: 0.85em;
}
</style>
<div
class="col-md-12"
style="background-color:#046b09; color:white; padding:20px; text-align:center;"
>
<h2>B. Tech. Batch 2016</h2>
</div>
<div class="single-event-item">
<table class="table">
<!-- <colgroup span="2"></colgroup>
<colgroup span="2"></colgroup> -->
<thead class="header theader">
<th rowspan="2" colspan="1">Company Name</th>
<th rowspan="2" colspan="1">Package(LPA)</th>
<th rowspan="2" colspan="2">
Number Of Students Placed
</th>
</thead>
<tbody>
<tr>
<td>HSBC Software Development India Pvt. Ltd.</td>
<td>12</td>
<td>3</td>
</tr>
<tr>
<td>Tata Consultancy Services(TCS)</td>
<td>3.50</td>
<td>11</td>
</tr>
<tr>
<td>Wipro</td>
<td>3.50</td>
<td>5</td>
</tr>
<!-- <tr>
<td>Payu</td>
<td>10.75</td>
<td>2</td>
</tr> -->
<tr>
<td>Zillious</td>
<td>7.00</td>
<td>1</td>
</tr>
<tr>
<td>Libsys Limited</td>
<td>8.00</td>
<td>2</td>
</tr>
<tr>
<td>Opera Solutions</td>
<td>4.00</td>
<td>6</td>
</tr>
<!-- <tr>
<td>Opera</td>
<td>4.00</td>
<td>7</td>
</tr> -->
<tr>
<td>Info Edge India Limited</td>
<td>6.30</td>
<td>5</td>
</tr>
<tr>
<td>Unisys Limited</td>
<td>6.03</td>
<td>4</td>
</tr>
<tr>
<td>Tolexo</td>
<td>5.00</td>
<td>7</td>
</tr>
<!-- <tr>
<td>Capital IQ</td>
<td>5.90</td>
<td>4</td>
</tr> -->
<tr>
<td>Newgen Software Technologies</td>
<td>3.75</td>
<td>2</td>
</tr>
<!-- <tr>
<td>NEC Technologies</td>
<td>4.00</td>
<td>1</td>
</tr> -->
<tr>
<td>Mroads</td>
<td>5.00</td>
<td>3</td>
</tr>
<tr>
<td>Bluegape</td>
<td>5.50</td>
<td>1</td>
</tr>
<!-- <tr>
<td>Bluegape</td>
<td>3.60</td>
<td>1</td>
</tr> -->
<tr>
<td>Global Logic</td>
<td>4.75</td>
<td>8</td>
</tr>
<!-- <tr>
<td>Evision Technoserve Pvt. Ltd.</td>
<td>3.50</td>
<td>1</td>
</tr> -->
<tr>
<td>Sparta Security</td>
<td>4.00</td>
<td>1</td>
</tr>
<tr>
<td>Cube26</td>
<td>10.00</td>
<td>2</td>
</tr>
</tbody>
</table>
</div>
</div>
<div
class="event-details-content sem"
id="e4"
style="background-color:rgb(216, 216, 216);display:none;"
>
<style>
.list-group-item {
background-color: rgb(239, 238, 238);
font-size: 0.85em;
}
</style>
</div>
</div>
<div class="col-md-2">
<div class="sidebar-widget">
<div class="single-sidebar-widget">
<h4 class="title">Placement Record</h4>
<div class="recent-content">
<style>
hr {