-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path10.sem3.php
365 lines (306 loc) · 10.8 KB
/
10.sem3.php
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
<html>
<head>
<title>sem-3 page</title>
<style>
* {
margin:0;
padding:0;
}
body{
background: linear-gradient(120deg,#2980b9,#8e44ad);
}
ul{
list-style-type:none;
width:100%;
height:8%;
background-color:black;
}
li{
float:left;
}
li a{
font-style: bold;
font-size: larger;
display:block;
padding:20px 18px;
color:white;
text-decoration:none;
}
.a1:hover{
color:blue;
background-color:white;
}
.hello{
margin-left:73%;
}
.name{
position: absolute;
top:16px;
left:5%;
color:pink;
}
.head1{
margin-top:60px;
margin-left:38%;
font-size: 25px;
}
.more
{
width: 25px;
height: 3px;
background-color: white;
color:blue;
margin-top:5px;
}
#academichead
{
margin-left:620px;
}
.subjects
{
margin-left:350px;
margin-top:20px;
background-color: lightcyan;
width:800px;
height:30px;
padding:20px;
text-align:left;
cursor: pointer;
border-radius: 5px;
}
.sub
{
background-color:#d8e3e7;
height:110px;
width:839px;
margin-left:350px;
border-radius: 5px;
}
.sub h6{
font-size: 13px;
line-height:21px;
margin-left: 15px;
}
.sub a{
position: relative;
top: -55px;
left:650px
}
.gate
{
margin-top:50px;
margin-left:660px;
}
.dropdown
{
margin-left:95.5%;
padding-top:18px;
}
</style>
</head>
<body>
<ul>
<div class="hello">
<li><a class= "a1" href="7.select.php">Home</a></li>
<li><a class ="a1" href="18.request.php">Request</a></li>
<li><a class ="a1" href="23.placement.php">Placement</a></li>
</div>
<div id="dd" class="dropdown" style="color:white; cursor:pointer">
<div class="more"></div>
<div class="more"></div>
<div class="more"></div>
</div>
<div id="dd1">
<div id="dd2" style="margin-top:18px; margin-left:90%; text-align:center;background-color:black; color:white; border: 1px solid lightpink; padding:6px; cursor:pointer">Change Password</div>
<div id="dd3" style="margin-left:90%; background-color:black;text-align:center; color:white; padding:6px; cursor:pointer">Logout</div>
</div>
</ul>
<div class="name">
<h2>EDUKOS</h2>
</div>
<div class="head1">
<h1>II/IV CSE SEM-I</h1>
</div>
<br>
<br>
<!--Academic subjects-->
<div><h2 id="academichead" class="academic">ACADEMIC SUBJECTS</h2></div>
<div id="hsub1" class="subjects" >Data Structures and Algorithms</div>
<div id="sub1" class="sub">
<h6>Unit - I: Introduction&Arrays&Searching &Sorting</h6>
<h6>Unit - II: Stacks&Queues</h6>
<h6>Unit - III: Linked list</h6>
<h6>Unit - IV: Trees</h6>
<h6>Unit - V: Graphs</h6>
<a href="admin_sem3_dsa.php" target="blank">CLICK HERE</a>
</div>
<div id="hsub2" class="subjects">Computer Organization</div>
<div id="sub2" class="sub">
<h6>Unit - I: Register Transfer and Micro operations</h6>
<h6>Unit - II: Basic Computer Organization</h6>
<h6>Unit - III: Control Design</h6>
<h6>Unit - IV: Central Processing Unit</h6>
<h6>Unit - V: Input-Output Organization</h6>
<a href="admin_sem3_co.php" target="blank">CLICK HERE</a>
</div>
<div id="hsub3" class="subjects">Oops using Java Programming</div>
<div id="sub3" class="sub">
<h6>Unit - I: Fundamentals of Object Oriented Programming</h6>
<h6>Unit - II: Inheritance &Polymorphism &Packages</h6>
<h6>Unit - III: I/O&Exception handling&Multithreading</h6>
<h6>Unit - IV: Swings</h6>
<h6>Unit - V: Event Handling&Enterprise Java Beans</h6>
<a href="admin_sem3_java.php" target="blank">CLICK HERE</a>
</div>
<div id="hsub4" class="subjects">Data Communication</div>
<div id="sub4" class="sub">
<h6>Unit - I: Introduction to Data Communications</h6>
<h6>Unit - II: Transmission Media</h6>
<h6>Unit - III: The Digital Data Communication Techniques</h6>
<h6>Unit - IV: Local Area Network and IoT</h6>
<h6>Unit - V: Multiplexing: Caterories, Demultiplexings</h6>
<a href="admin_sem3_dc.php" target="blank">CLICK HERE</a>
</div>
<div id="hsub5" class="subjects">Discrete Mathematical Structures</div>
<div id="sub5" class="sub">
<h6>Unit - I: Mathematical Logic</h6>
<h6>Unit - II: Relations and algebraic systems</h6>
<h6>Unit - III: Elementary Combinatorics</h6>
<h6>Unit - IV: Recurrence Relations</h6>
<h6>Unit - V: Graph Theroy</h6>
<a href="admin_sem3_dms.php" target="blank">CLICK HERE</a>
</div>
<div id="hsub6" class="subjects">Design Thinking and Product Innovation</div>
<div id="sub6" class="sub">
<h6>Unit - I: Introduction to Design Thinking</h6>
<h6>Unit - II: Design thinking</h6>
<h6>Unit - III: Innovation</h6>
<h6>Unit - IV:Design thinking for strategic Innovation</h6>
<h6>Unit - V: Design thinking in various sectors</h6>
<a href="admin_sem3_dtpi.php" target="blank">CLICK HERE</a>
</div>
<!--GATE SUBJECTS-->
<div><h2 class="gate">GATE SUBJECTS</h2></div>
<div id="hsub7" class="subjects" >Data Structures and Algorithms</div>
<div id="sub7" class="sub">
<h6>Unit - I: Introduction&Arrays&Searching &Sorting</h6>
<h6>Unit - II: Stacks&Queues</h6>
<h6>Unit - III: Linked list</h6>
<h6>Unit - IV: Trees</h6>
<h6>Unit - V: Graphs</h6>
<a href="https://github.com/MadhuNitesh/Gate-CS-Subjects-Resources" target="blank">CLICK HERE</a>
</div>
<div id="hsub9" class="subjects">Discrete Mathematical Structures</div>
<div id="sub9" class="sub">
<h6>Unit - I: Mathematical Logic</h6>
<h6>Unit - II: Relations and algebraic systems</h6>
<h6>Unit - III: Elementary Combinatorics</h6>
<h6>Unit - IV: Recurrence Relations</h6>
<h6>Unit - V: Graph Theroy</h6>
<a href="https://github.com/MadhuNitesh/Gate-CS-Subjects-Resources" target="blank">CLICK HERE</a>
</div>
<div id="hsub10" class="subjects">Computer Organization</div>
<div id="sub10" class="sub">
<h6>Unit - I: Register Transfer and Micro operations</h6>
<h6>Unit - II: Basic Computer Organization</h6>
<h6>Unit - III: Control Design</h6>
<h6>Unit - IV: Central Processing Unit</h6>
<h6>Unit - V: Input-Output Organization</h6>
<a href="https://github.com/MadhuNitesh/Gate-CS-Subjects-Resources" target="blank">CLICK HERE</a>
</div>
<div id="hsub11" class="subjects">Data Communication</div>
<div id="sub11" class="sub">
<h6>Unit - I: Introduction to Data Communications</h6>
<h6>Unit - II: Transmission Media</h6>
<h6>Unit - III: The Digital Data Communication Techniques</h6>
<h6>Unit - IV: Local Area Network and IoT</h6>
<h6>Unit - V: Multiplexing: Caterories, Demultiplexings</h6>
<a href="https://github.com/MadhuNitesh/Gate-CS-Subjects-Resources" target="blank">CLICK HERE</a>
</div>
<br><br><br>
</body>
<script src="jquery.js"></script>
<script>
/* function fun1()
{
document.getElementById("dd2").style.visibility="visible";
document.getElementById("dd3").style.visibility="visible";
}
*/
$(document).ready(function()
{
// academic subjects
$("#sub1").hide();
$("#sub2").hide();
$("#sub3").hide();
$("#sub4").hide();
$("#sub5").hide();
$("#sub6").hide();
$("#dd1").hide();
$("#dd").click(function()
{
$("#dd1").slideToggle('fast');
});
$("#dd2").click(function()
{
//window.alert('Logging Out');
window.location.href='14.change_pass.php';
});
$("#dd3").click(function()
{
window.alert('Logging Out');
window.location.href='4.1.stu_logout.php';
});
$("#hsub1").click(function()
{
$("#sub1").slideToggle('fast');
});
$("#hsub2").click(function()
{
$("#sub2").slideToggle('fast');
});
$("#hsub3").click(function()
{
$("#sub3").slideToggle('fast');
});
$("#hsub4").click(function()
{
$("#sub4").slideToggle('fast');
});
$("#hsub5").click(function()
{
$("#sub5").slideToggle('fast');
});
$("#hsub6").click(function()
{
$("#sub6").slideToggle('fast');
});
// gate subjects
$("#sub7").hide();
$("#sub8").hide();
$("#sub9").hide();
$("#sub10").hide()
$("#sub11").hide()
$("#hsub7").click(function()
{
$("#sub7").slideToggle('fast');
});
$("#hsub8").click(function()
{
$("#sub8").slideToggle('fast');
});
$("#hsub9").click(function()
{
$("#sub9").slideToggle('fast');
});
$("#hsub10").click(function()
{
$("#sub10").slideToggle('fast');
});
$("#hsub11").click(function()
{
$("#sub11").slideToggle('fast');
});
});
</script>
</html>