Responsive Table
FEES STRUCTURE FOR NEW STUDENTS TAKING ADMISSION IN FIRST YEAR IN SESSION 2022-23
|
SNo. | Course Name | ACTUAL TOTAL FEES | COVID CONCESSION | TOTAL FEES AFTER CONCESSION |
1 |
B. C. A.-First Year |
24700.00 |
3000.00 |
21700.00 |
2 |
B. C. A.-Second Year |
24200.00 |
- |
24200.00 |
3 |
B. C. A.-Final Year |
24200.00 |
- |
24200.00 |
4 |
B. B. A. First Year (1st + 2nd Sem Total) |
20200.00 |
2200.00 |
18000.00 |
5 |
B. B. A. Second Year(3rd + 4th Sem Total) |
19700.00 |
- |
19700.00 |
6 |
B. B. A. Final Year(5th + 6th Sem Total) |
19700.00 |
- |
19700.00 |
7 |
B. Com.-First Year |
16000.00 |
- |
16000.00 |
8 |
B. Com.-Second Year |
15500.00 |
- |
15500.00 |
9 |
B. Com.-Final Year |
15500.00 |
- |
15500.00 |
10 |
B. Com. Computer Application-First Year |
18000.00 |
- |
18000.00 |
11 |
B. Com. Computer Application-Second Year |
17500.00 |
- |
17500.00 |
12 |
B. Com. Computer Application-Final Year |
17500.00 |
- |
17500.00 |
13 |
B. Sc. Biotechnology-First Year |
23700.00 |
3000.00 |
20700.00 |
14 |
B. Sc. Biotechnology-Second Year |
23200.00 |
- |
23200.00 |
15 |
B. Sc. Biotechnology-Final Year |
23200.00 |
- |
23200.00 |
16 |
B. Sc. Biology-First Year |
12000.00 |
- |
12000.00 |
17 |
B. Sc. Biology-Second Year |
11500.00 |
- |
11500.00 |
18 |
B. Sc. Biology-Final Year |
11500.00 |
- |
11500.00 |
19 |
B. Sc. Maths-First Year |
12000.00 |
- |
12000.00 |
20 |
B. Sc. Maths-Second Year |
11500.00 |
- |
11500.00 |
21 |
B. Sc. Maths-Final Year |
11500.00 |
- |
11500.00 |
22 |
B. Sc. Computer Science-First Year |
17000.00 |
- |
17000.00 |
23 |
B. Sc. Computer Science-Second Year |
16500.00 |
- |
16500.00 |
24 |
B. Sc. Computer Science-Final Year |
16500.00 |
- |
16500.00 |
25 |
B. Sc. Microbiology-First Year |
14000.00 |
- |
14000.00 |
26 |
B. Sc. Microbiology-Second Year |
13500.00 |
- |
13500.00 |
27 |
B. Sc. Microbiology-Final Year |
13500.00 |
- |
13500.00 |
28 |
PGDCA |
27000.00 |
8500.00 |
18500.00 |
29 |
M. Com.-1 Year |
18000.00 |
4000.00 |
14000.00 |
30 |
M. Com.-2 Year |
18000.00 |
4000.00 |
14000.00 |
31 |
M. Sc. Chemistry-1 Year |
20000.00 |
2000.00 |
18000.00 |
32 |
M. Sc. Chemistry-Final Year |
20000.00 |
2000.00 |
18000.00 |
33 |
M. Sc. Biotechnology-1 Year |
25000.00 |
- |
25000.00 |
34 |
M. Sc. Biotechnology-2 Year |
25000.00 |
- |
25000.00 |
35 |
M. Sc. Computer Science-1 Year |
20000.00 |
5000.00 |
15000.00 |
36 |
M. Sc. Computer Science-Final Year |
20000.00 |
5000.00 |
15000.00 |
37 |
D. C. A |
10000.00 |
- |
10000.00 |
38 |
B.Lib(Proposed from 2022-23 ) |
15000.00 |
- |
15000 |
body{
margin:0;
padding:20px;
font-family: sans-serif;
}
*{
box-sizing: border-box;
}
.table{
width: 100%;
border-collapse: collapse;
}
.table td,.table th{
padding:12px 15px;
border:1px solid #ddd;
text-align: center;
font-size:15px;
}
.table th{
background-color: darkblue;
color:#ffffff;
}
.table tbody tr:nth-child(even){
background-color: #f5f5f5;
}
/*responsive*/
@media(max-width: 500px){
.table thead{
display: none;
}
.table, .table tbody, .table tr, .table td{
display: block;
width: 100%;
}
.table tr{
margin-bottom:15px;
}
.table td{
text-align: right;
padding-left: 50%;
text-align: right;
position: relative;
}
.table td::before{
content: attr(data-label);
position: absolute;
left:0;
width: 50%;
padding-left:15px;
font-size:12px;
font-weight: normal;
text-align: left;
color: darkblue;
}
}