-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
1287 lines (1127 loc) · 52.1 KB
/
index.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 lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- <link rel="stylesheet" href="css/style.css"> -->
<style>
*{
margin: 0;
padding: 0;
}
.navbar{
display: flex;
align-items: center;
justify-content: center;
position: sticky;
top: 0;
cursor: pointer;
margin: auto;
}
.nav-list{
width: 70%;
/* background-color: black; */
display: flex;
align-items: center;
}
.logo{
width: 20%;
display: flex;
justify-content: center;
align-items: center;
}
.logo img{
width: 30%;
border: 3px solid white;
border-radius: 50px;
}
.nav-list li{
list-style: none;
padding: 26px 30px;
}
.nav-list li a{
text-decoration: none;
color: rgb(22, 197, 197);
}
.nav-list li a:hover{
color: blue;
}
.rightnav{
width: 30%;
text-align: right;
padding: 26px 30px;
}
#search{
padding: 5px;
font-size: 17px;
border: 2px solid grey;
border-radius: 10px;
}
.background{
background: rgba(0, 0, 0, 0.7) url('https://wallpaper-house.com/data/out/10/wallpaper2you_399418.jpg');
background-size: cover;
background-blend-mode: darken;
}
.box-main{
display: flex;
justify-content: center;
align-items: center;
color: white;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
height: 72%;
max-width: 80%;
margin: auto;
}
.firstsection{
height: 100vh;
}
.firsthalf{
width: 60%;
display: flex;
flex-direction: column;
justify-content: end;
}
.secondhalf {
width: 50%;
}
.secondhalf img{
width: 75%;
border-style: solid;
border-radius: 10px;
margin: auto;
}
.text-big{
font-size: 20px;
}
.text-small{
font-size: 10px;
}
.btn{
padding: 8px 20px;
margin: 7px 0;
border: 2px solid white;
border-radius: 8px;
background: none;
color: white;
cursor: pointer;
}
.btn-dark{
color: black;
border: 2px solid black;
text-align: center;
justify-content: center;
}
.burger{
display: none;
position: absolute;
cursor: pointer;
right: 5%;
top: 15px;
}
.line{
width: 33px;
background-color: white;
height: 4px;
margin: 5px 3px;
}
/* .burger1{
display: none;
position: absolute;
cursor: pointer;
right: 5%;
top: 15px;
}
.line1{
width: 33px;
background-color: white;
height: 4px;
margin: 5px 3px;
} */
@media only screen and (max-width: 1350px){
.nav-list{
flex-direction: column;
}
.navbar{
height: 500px;
flex-direction: column;
transition: all 0.5s ease-out;
}
.rightnav{
text-align: center;
}
#search{
width: 100%;
}
.burger{
display: block;
}
.h-nav{
height: 72px;
}
.v-class{
opacity: 0;
}
}
.secright{
height: 620px;
display: flex;
align-items: center;
justify-content: space-evenly;
max-width: 80%;
margin: auto;
}
.section1{
height: 5200px;
display: flex;
align-items: center;
justify-content: space-evenly;
max-width: 80%;
margin: auto;
}
.section2{
height: 400px;
display: flex;
align-items: center;
justify-content: space-evenly;
max-width: 80%;
margin: auto;
}
.section3{
height: 3600px;
display: flex;
align-items: center;
justify-content: space-evenly;
max-width: 80%;
margin: auto;
}
.section4{
height: 4000px;
display: flex;
align-items: center;
justify-content: space-evenly;
max-width: 80%;
margin: auto;
}
.section5{
height: 1800px;
display: flex;
align-items: center;
justify-content: space-evenly;
max-width: 80%;
margin: auto;
}
.section6{
padding-top: 10px;
}
.paras{
padding: 35px 70px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
max-width: 100%;
}
.big{
font-size: 30px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
}
.big1{
font-size: 30px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
padding-left: 300px;
}
.big2{
font-size: 30px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
padding-left: 30px;
padding-top: 10px;
}
.big3{
font-size: 30px;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
padding-left: 200px;
}
.small{
padding: 0 400px;
}
.what{
padding: 4px 30px;
}
.skill{
padding: 4px 30px;
}
.image1{
width: 60%;
}
.image2{
width: 130%;
}
.image3{
width: 100%;
padding-bottom: 4300px;
}
.image4{
width: 50%;
padding-left: 50px;
}
.image5{
width: 50%;
}
.image6{
width: 35%;
}
.image7{
width: 75%;
}
.image8{
width: 50%;
padding: 5px 40px;
}
.image9{
width: 75%;
padding: 5px 40px;
}
.img10{
width: 100%;
padding: 10px 40px;
}
.image11{
width: 70%;
padding-left: 50px;
}
.contact{
background-color: rgb(229 228 228 / 95%);
height: 100vh;
}
.text-center{
text-align: center;
padding: 15px;
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 35px;
}
.form{
max-width: 1000px;
margin: auto;
}
.form-input{
margin: 15px 0;
padding: 5px 3px;
width: 100%;
font-size: 20px;
border: 2px solid gray;
border-radius: 5px;
}
.end{
background-color: rgb(37, 34, 34);
}
.text-footer{
background-color: rgb(172, 166,166);
text-align: center;
padding: 15px 0;
font-family: Verdana, Geneva, Tahoma, sans-serif;
display: flex;
justify-content: center;
}
</style>
<title>Life-guider </title>
</head>
<body>
<footer id="home"></footer>
<nav class="navbar background h-nav">
<ul class="nav-list v-class">
<div class="logo"><img src="https://www.linkpicture.com/q/LOGO.jpg" alt="Error">
</div>
<li><a href="#home"> Home</a></li>
<li><a href="#contact"> Contact</a></li>
<li><a href="#about"> About</a></li>
<li><a href="#technical"> Technical</a></li>
<li><a href="#competitive"> Competitive</a></li>
<li><a href="#academical"> Academical</a></li>
<li><a href="#extra"> Extracurricular</a></li>
</ul>
<!-- <div class="rightnav v-class">
<input type="text" name="search" id="search">
<button class="btn btn-sm"> Search </button>
</div> -->
<div class="burger">
<div class="line"></div>
<div class="line"></div>
<div class="line"></div>
</div>
<!-- <div class="burger1">
<div class="line1"></div>
<div class="line1"></div>
<div class="line1"></div>
</div> -->
</nav>
<section class="background firstsection">
<div class="box-main">
<div class="firsthalf">
<p class="text-big">"EDUCATION is the most powerful weapon which you can use to change the world" </p>
<p class="text-samll">-Nelson Mandela </p>
</div>
<div class="secondhalf">
<img src="https://www.linkpicture.com/q/WhatsApp-Image-2021-04-11-at-04.11.40.jpeg" alt="!">
</div>
</div>
<br>
<footer id="about"></footer>
</section>
<section class="secright section6">
<div class="paras">
<h1 class="big">About:</h1>
<p>Lifeguiders is a website designed to help parents to make them well knowledged with
what type of education to provide to their children.
Also, helps students to have a clear path about today’s education system and help them to find their
passion and makes them clear about what to do next in life.
</p>
<br>
<h1>Introduction:</h1>
<p>Many of the students in this generation are in lack of clarity on education regarding
<ul class="what">
<li>What to do?</li>
<li>How to do?</li>
<li>When to do?</li>
<li>Why to do?</li>
</ul>
</p>
<p>
So we here makes their doubts clear and provide them with correct guidance to move them forward in life
and make achieve greatest heights in life. <br>
We here categorized and briefly discussed about some of topics in education they are-
<ul class="what" type="square">
<li>Technical Education</li>
<li>Competitive Exams</li>
<li>Academical Education</li>
<li>Extracurricular Activities</li>
</ul>
</p>
<p>
</div>
<div class="thumbnail">
<img src="https://i.pinimg.com/originals/44/9e/31/449e3123369e6078ff80f227d1a527aa.jpg" alt="Error"
class="image2">
</div>
</section>
<section class="secright section2">
<div class="paras">
<h1>Skills and character to be required to achieve greatest heights in life:</h1>
<p> We here mention some qualities and characters to be admitted by a student said by many great people in
the
history.
<ul class="skill">
<li>Make a dream and focus on dream.</li>
<li>Maintain and believe in 3d’s Dedication, Determination and Discipline.</li>
<li>Mind management and time management.</li>
<li>Don’t be get attached to external happiness in spite try to help others and
lead purpose full life.
</li>
<li>Don't Give up.</li>
<li>Maintain and make good communication with high scholar people and gain knowledge from them.</li>
<li>Don’t be afraid of failure “as life itself is said dead when it maintains a constant line on ECG
life
is said to be alive when it maintains up’s and down’s by - RATAN TATA</li>
<li>Don’t be afraid of any situation.</li>
</ul>
Finally, by the team lifeguiders we suggest you to
<h3>“Quit to Quit and Try to Try”</h3>
</p>
</div>
<div>
<img src="https://img.securityinfowatch.com/files/base/cygnus/siw/image/2018/12/SuccessSteps.5c093a205a8f0.png?auto=format&fit=max&w=1200"
alt="Error" class="image7">
</div>
</section>
<footer id="technical"></footer>
<section class="secright section1">
<div class="paras">
<p class="big">1). Technical Education</p> <br>
<h2>INTRODUCTION ABOUT TECHNICAL EDUCATION:</h2>
<p> world that we are experiencing today is because of the advancement of science and technology which is a
result of technical education.
Technical education is quite different from the academical education as academical education only
teaches
topics for the grading purpose but where as technical education gives you a complete knowledge and
support
for your future and also make you unique from the crowd.
Here we are discussing most important technical skills these days.</p>
<br>
<h2>CONTENTS:</h2>
<h3>1] ROCKET SCIENCE</h3>
<br>
<h4>INTRODUCTION:</h4>
<p>As we all familiar with rockets, as these are used to keep satellites in the orbit around the earth or a
planet or a star.
Rocket science is one of the most leading topic in the world right now.
This study involves and focuses mainly on making satellites and orbiting them in the space around a star
or a planet.
This plays vital role in developing modern technology as they study the earths atmosphere through
satellites, and also these satellites are helpful in many fields like agriculture, natural disaster
management, military, communication etc….
</p>
<br>
<h4>STUDYING REFERENCES:</h4>
<p>The persons who are interested can pursue degree in aerospace and to specialize in degree in the design
and manufacture of the spacecraft. <br>
Also, one who are interested in learning this can also learn as a side skill which enhances the skills
of a person and helps him to change this society and find his passion. <br>
The main aim of the rocket science students is to design spacecraft that works in outer space, and also
to building satellites body.
</p>
<br>
<h4>Career:</h4>
<p>The rocket scientists are paid with descent highest salary package and also they can enjoy the job as
they found the job for what they are passionate for.</p>
<br>
<h3>Tips and tricks:</h3>
<p>
As “Elon musk” the most famous bilinear the CEO of the SpaceX, Tesla and the boring company once stated
in an interview that their children itself are learning from YouTube.
</p>
<p>-> Explore the websites and browse for the topics </p>
<p>-> Learn from online teaching platforms like YouTube, Udemy, Edx etc... </p>
<p>-> Collaborate with technicians and learn more facts and stay tuned to latest discoveries and also try to
learn from them.
</p>
<br>
<h3>2] SPACE EXPLORATION</h3>
<br>
<h4>INTRODUCTION:</h4>
<P>“The life without a space exploration vanishes” said by a great scientist space exploration is studying
about the space in different aspects like estimating size of space, life time of stars and planets,
evidence for existence of life in other planets and also to find how the life is started.
<br>
This study involves not only outer space study but also studying about earths atmosphere in deep.
</P>
<br>
<h4>STUDYING REFERENCE:</h4>
<P>As a person wants to work as a space scientist, he must study his degree in physics or aerospace. <br>
If a person wants to know this as skill or gain knowledge in it there are plenty of theories published
in the internet itself, so one can find some resources there and gain knowledge there.
</P>
<br>
<h4>SKILLS REQUIRED:</h4>
<P>-->One should be found of science and physics particularly. <br>
-->One should be a bibliophile as he must learn more and more books to find the information.
</P>
<br>
<h3>Career:</h3>
<p>The space scientists can also earn more money and also they can earn more respect from the society as
they are the heroes who are changing the world, and making earth as a better place to live. <br>
It was one of the most amazing job in this society.
</p>
<br>
<h3>3] PROGRAMMING LANGUAGES</h3>
<br>
<h3>Introduction:</h3>
<P>As everyone are well known with the programming languages the phones, laptops, smart tv’s all are the
biproducts of this programming. <br>
The programming languages are invented to compute hard problems first then later on they are keep on
updating in a level that the life of human being and programming languages are intermixed. <br>
There are may programming languages like c, c++, c#, java, JavaScript, sql, html, CSS, ruby, python many
more
</P>
<br>
<h3>Applications of programming language:</h3>
<p>These programming languages are used in making- <br>
-->Operating systems <br>
-->Web development <br>
-->Applications <br>
-->Games <br>
And many more applications are there
</p>
<br>
<h3>Studying references:</h3>
<p>As now a days craze of programming languages are at peak that we find many of the course readily
available on the internet on various platforms. <br>
There is no requirement of any degree, anyone can do learn programming languages and build their own
projects.
</p>
<br>
<h3>Outcomes of programming languages:</h3>
<p>-->Quantum computation (not alone programming language can do it) <br>
-->Machine learning <br>
-->Artificial intelligence <br>
-->Social media <br>
</p>
<br>
<h3>4] MECHATRONICS</h3>
<p>
<div>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Mecha_workaround.svg/525px-Mecha_workaround.svg.png"
alt="Error" class="image8">
</div>
</p>
<h3>Introduction:</h3>
<br>
<p>Mechatronics is the combination of two words mechanics and electronics,
Mechatronics is the only branch that almost covered all the aspects of modern technology, it involves
robotics, machine designing, electronics, mechanical CAD, programming and almost all the aspects related
to latest science and technology. <br>
The main use of this branch is to design automobiles, invent different versions of engines and systems
involved in vehicles this also has this significance in designing and making aircrafts, ships etc…
</p>
<br>
<h3>Studying references:</h3>
<p>As a person who wants to become a automobile engineer or entusiased of designing war crafts or machines
and all kinds of hardware appliances can pursue a degree in B.tech in mechatronics and also do masters
if he wants they have high probability of selected for a job. <br>
Also, who wants to design machines and vehicles can also learn this from the internet and also from many
online platforms like YouTube, Udemy, Coursea etc.….
</p>
<br>
<h>Career:</h4>
<p>The persons who purse this degree can have a good salary package and the number of jobs for them are
increasing day by day so that they can have a bright future.
</p>
<br>
<h4>SKILLS REQUIRED:</h4>
<P>-->MATLAB <br>
-->AutoCAD <br>
-->SolidWorks <br>
-->Well knowledge in physics and mechanics. <br>
</P>
<br>
<h3>Tips and tricks:</h3>
<p>-->One should always stay connected to modern technology and inventions as there is always a new
invention in this field.
-->Collaborate with teachers and other high professionals.
-->Keep on practicing some kinds of projects in AutoCAD, Solid works, MATLAB etc…….
</p>
<br>
<h3>5] ROBITICS</h3>
<p>
<div>
<img src="https://images.idgesg.net/images/article/2018/10/ai_robotics_analytics_data-scientist_mathematics_equation-100777424-large.jpg"
alt="Error" class="image9">
</div>
</p>
<h3>Introduction:</h3>
<p>Robotics is the most advancing and fast-growing field in this modern era the applications of robotics
is vast and unnumerable. <br>
The latest application of robotics is mars rover a robot released by NASA on to the mars for mars
exploration so we can understand that the significance of robotics in this modern era.
</p>
<br>
<h3>Studying reference:</h3>
<p>The person who want to become an robotics engineer can pursue degree in b.tech in robotics and also
b.tech in mechanical engineering and can do masters if they wanted. <br>
Also, people who want to learn this due to interest and passion they have on it can also learn it
from the internet on many online platforms.
</p>
<br>
<h4>SKILLS REQUIRED:</h4>
<P>-->Knowledge in physics and mathematics <br>
-->Programming knowledge <br>
-->Mechanics and kinematics.
<br>
</P>
<br>
<h3>Applications of robotics:</h3>
<p>-->Replacing human beings with robots in harmful working conditions <br>
-->Making products more accurate and affective <br>
-->Military purpose <br>
-->Industrial purpose <br>
-->Involves in complex computations <br>
-->Studying many theories which are not able to understand by human brain like blackholes, quantum
physics etc…… <br>
And in many more fields.
</p>
<br>
<h2>Importance of technical education:</h2>
<p>-->This education helps in advancements of science and technology <br>
-->This makes humans life more easy <br>
-->This makes future more brighter and better than past <br>
</p>
<br>
<h2>Skills required for learning technical education:
</h2>
<p>-->Time management <br>
-->Good communication skills <br>
-->Awareness on latest science and technology <br>
-->Focus <br>
-->Knowledge on science and mathematics <br>
-->Well knowledged in theories of science <br>
-->Basic idea on programming <br>
</p>
<br>
<h2>Benefits of technical education:</h2>
<p>-->Helps to change the society <br>
-->We can make and improve science and technology <br>
-->Helping future generations <br>
-->Detecting natural calamities <br>
-->Space exploration <br>
Many more uses are there <br>
</p>
<br>
<br>
<h1>“The education we gain, which does not helps to change the world is not an education”</h1>
</div>
<div>
<img src="https://www.linkpicture.com/q/456.jpg" alt="Error" class="image3">
</div>
</section>
<footer id="competitive"></footer>
<section class="secright section3">
<div class="paras">
<p class="big">2). Competitive Exams</p> <br>
<h2>Introduction:</h2>
<p class="smaall">Competitive exams are the exams which are held on different modes on different aspects.
<br>
The judging criteria of these exams are based on the marks you score or based on the comparison of your
marks with toppers marks and declaring percentage criteria. <br>
Here we are going to discuss some of exams to make you familiar and well knowledged about different
exams <br>
Before moving ahead how much brilliant you are but this society doesn’t care about your intelligence if
you fail to succeed in exams so here we are sharing details of some exams and tips and tricks and
strategy to be followed to succeed.
<br>
</p>
<br>
<h3>
1] JEE MAIN
</h3>
<p>
About:- This is online mode examination which held every year to admit students to NIT’s and IIIT’s
across the India for pursuing engineering. Conducted by NTA under MHRD. <br>
Frequency:- 4 times a year (as per new rules) in February, March, April, May
Eligibility: students who pursued intermediate or equal certificate before 2 years to students who are
pursuing this year, no age limit. <br>
Application:- Application to be done on online mode. <br>
Subjects:- 5 subjects with 3 compulsory and 2 elective/optional <br>
For B.tech : <br>
Mathematics, Physics and one of (Chemistry/biotechnology/biology/technical vocational subjects) with 2
other electives. <br>
For B.arch: <br>
Mathematics with either of two subjects from (Chemistry/biotechnology/biology/technical vocational
subjects) with 2 other electives. <br>
</p>
<br>
<h3>
2] JEE ADVANCED
</h3>
<p>
About: This exam is set by IIT’s and IISC to give admission to students who are eligible in one of
various engineering branches and also for B.Arch. and B. Planning. Every year one of the IIT take lead
and conducts examination. <br>
Frequency: Once a year. <br>
Eligibility: One who qualified JEE mains and has a minimum of 75% score in board exam for general
candidates and 65% for SC/ST and PWD <br>
Application: Application can be done online guidelines are shared by NTA in score card of JEE main. <br>
Subjects: Mathematics, Physics, chemistry. <br>
</p>
<br>
<h3>
3] GATE
</h3>
<p>
About: GRADUATE APTITUDE TEST IN ENGINEERING is known as GATE is conducted by 7 IIT’s and IISC under
MHRD to provide masters for the candidates who are eligible and the GATE score is considered by some of
PSUs to offer jobs to candidates. It is a three hours exam. <br>
Frequency: Once a year <br>
Eligibility: Bachelor's degree holders in Engineering / Technology / Architecture (3 years after 10+2/
10+2+3(ongoing)/ 10+2+4(ongoing)/ Post-B.Sc./ Post-Diploma) and those who are in the final year of such
programs (Also prefinal year of B. tech). <br>
• Master's degree holders in any branch of Science/Mathematics/Statistics/Computer Applications or
equivalent and those who are in the final year of such programs. <br>
• Candidates in the second or higher year of Four-year integrated master's degree programs (Post-B.Sc.)
in Engineering / Technology. <br>
• Candidates in the fourth or higher year of Five-year integrated master's degree programs or Dual
Degree programs in Engineering / Technology. <br>
• Candidates with qualifications obtained through examinations conducted by professional societies
recognized by UGC/AICTE (e.g., AMIE by IE(India), AMICE by the Institute of Civil Engineers
(India)-ICE(I), AMIETE by IETE(India)) as equivalent to B.E./B.Tech. <br>
Those who have completed section A or equivalent of such professional courses are also eligible.
There is no age limit criterion defined by the exam conducting authority to appear in GATE. <br>
Application: The application is to be done on online mode. Guidelines are provided by GATE board. <br>
Subjects: Verbal ability, Numerical ability, Engineering mathematics, Technical ability. <br>
</p>
<br>
<h3>
4] SBI PO
</h3>
<p>
ABOUT:- This exam is conducted by State Bank of India. It is conducted to select candidates for the
post of Probationary Officers (PO). <br>
Application Mode: - Online <br>
Frequency: - Once a year (Annually) <br>
Exam Mode: - Online <br>
Exam Rounds: - 3(Prelims + Mains + Interview) <br>
Eligibility: - Age between 21-30 years <br>
Graduate / In final year of graduation <br>
Subjects: - Reasoning & Computer Aptitude, Data analysis, general awareness,
English, marketing Scheme <br>
Marking Scheme: - maximum marks200 (0.25 negative marking) <br>
</p>
<br>
<h3>
5] SBI CLERK
</h3>
<p>
About:- Exam is also conducted by State Bank of India for the post of Junior Associates. <br>
Frequency: - annually <br>
Eligibility: - Graduate from a recognized University <br>
Application mode: -online <br>
Subject: - general English, reasoning, quantitative aptitude <br>
Marking scheme: - hundred / per question one mark <br>
</p>
<br>
<h3>
6] IBPS PO
</h3>
<p>
About:- this exam is conducted by Institute of Banking personnel selection (IBPS) to select individuals
for post of probationary officers in Bank of India <br>
Frequency: - Annually <br>
Eligibility: - graduation in any discipline <br>
age limit 20 to 30 years <br>
Application mode: - online <br>
Subjects: - reasoning, computer aptitude, English language. <br>
Marking scheme: - total marks 200 (0.25 negative) <br>
</p>
<br>
<h3>
7] IBPS CLERK
</h3>
<p>
About:- exam is conducted by Institute of Banking personnel selection (IBPS) to recruit clerical cadre
numerous banks of the country <br>
Frequency: - annually <br>
Eligibility: - age between 20 to 28 year <br>
graduate from any discipline <br>
Application mode: - online <br>
Subjects: - general English, reasoning ability, computer aptitude, quantitative
aptitude <br>
Marking scheme: - 190 questions off maximum marks 200
0.25 negative marking <br>
</p>
<br>
<h3>
8] IBPS RRB
</h3>
<p>
About:- This exam is conducted by Institute of Banking personnel selection (IBPS)
to recruit candidates for the post of officer scale I, II, III and office assistant. <br>
Frequency: - annually <br>
Eligibility: - for officer scale II {2-year experience in relevant field} <br>
for officer scale III {minimum 5-year experience as officer} <br>
age limit 18 to 30 year <br>
Application mode: - online <br>
Subjects: - reasoning, qualitative aptitude, English language, Hindi language,
Computer, knowledge, general and financial awareness <br>
Marking scheme: - 200 maximum marks with 0.25 negative marking <br>
</p>
<br>
<h3>
9] RBI Assistant
</h3>
<p>
About:- this exam is conducted by Reserve Bank of India to select the deserving candidates for the post
of Assistant in RBI <br>
Frequency: - annually <br>
Application mode: - online <br>
Subject: - English reasoning, computer knowledge, general awareness, quantitative aptitude <br>
Eligibility: - age between 20 to 28 years <br>
graduate with more than 50% in graduation <br>
Marking scheme: - 200 marks with 0.25 negative marking <br>
</p>
<br>
<h3>
10]DRDO
</h3>
<p>
About:- this exam is conducted by Defence research and development organisation of ministry of defence
to recruit candidates for the post of junior research fellows <br>
Frequency: - annually <br>
Eligibility: - candidate must have a bachelor degree in Science <br>
3-year diploma in Engineering / Technology / computer science
Final year student can also apply <br>
Application mode: - online <br>
Subject: - reasoning, general awareness, quantitative and numerical ability,
general science, general match, general English <br>
Marking scheme: - 200 marks <br>
</p>
<br>
<br>
<h2>CIVIL SERVICE MAJOR EXAMINATION</h2>
<p>
1. Indian Administrative service <br>
2. Indian Foreign service <br>
3. Indian police service <br>
4. Indian P and T accounts and finance <br>
5. Indian Audit and accounts service <br>
6. Indian customs and central excise service <br>
7. Indian Defense accounts service <br>
8. Indian Revenue service <br>
9. Indian ordnance factories services <br>
10. Indian postal service <br>
11. Indian civil accounts service <br>
12. Indian Railway traffic service <br>
13. Indian railway accounts service <br>
14. Indian railway personal services <br>
15. Posts of assistant security commissions in railway protection <br>
16. Indian defense estate services <br>
17. Indian information services <br>
18. Indian trade services <br>
19. Indian corporate law service <br>
20. Armed force headquarters civil services <br>
21. Delhi, Andaman and nicobar islands, Lakshadweep, daman and diu , Dadar and nagar haweli civil
services <br>
22. Ponducherry civil services <br>
23. Ponduchery police services <br>
</p>
</div>
</section>
<footer id="academical"></footer>
<section class="secright section4">
<div class="paras">