-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcareers.json
4069 lines (4063 loc) · 277 KB
/
careers.json
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
[
{
"careerid": "doctor",
"img1": "assets/images/career/career-details-doctor.jpg",
"alt1": "Doctor Image",
"title": "Doctor",
"cat_dir": "medicine.html",
"cat": "Medicine",
"duration": "5 years",
"p1_1": "Do you want to help people and save lives? Then, becoming a doctor is a great career path! We are all well aware of the roles of a doctor. We've interacted with many throughout our lives and we know their importance.",
"p1_2": "Doctors help in maintaining a pain-free life and resolving any health or medical concerns we might have. They also help in sustaining our lives by helping us function effectively. Hospital doctors diagnose and treat medical conditions, disorders, and diseases through the application of specialist medical skills and knowledge. Hospital doctors can work in several specialities, from emergency medicine to surgery. Hospital doctors treat those who have been admitted or referred to the hospital. Medical practice correctly necessitates a thorough understanding of academic subjects such as anatomy and physiology.",
"desc": "Doctors have one of the most respected yet stressful careers. They see several patients every day, and their job includes assessing these patients, diagnosis and assigning treatment plans. Doctors are on their toes the entire time and they are almost required to be available whenever possible. Their careers are demanding yet rewarding. With more experience, doctors are regarded higher. There are several specializations for doctors, based on which the work-life of a doctor differs. The priority of a doctor's work-life no matter which specialization they choose is the healthcare of the patient.",
"skills": [
"Empathy: Even though the job is extremely stressful, doctors are required to be empathetic towards their patients.",
"Passion: Doctors are required to be passionate about their field. They will be dealing with human lives, and thus an individual needs to be driven. Any kind of disinterest or lack of focus can prove to be problematic and even fatal in some cases.",
"Responsibility: As mentioned above the doctor needs to keep in mind that they are working with human lives. Thus they need to be responsible enough to do this job. In case a doctor isn't well or has any other issues then they have to immediately refrain from performing surgery.",
"Hard Working: It takes a lot of determination and perseverance to be a doctor. Individuals need to be prepared to work hard and give their best at all times as it is a demanding career.",
"Emotional Strength: They have to often encounter cases that might be hard to digest. They could be emotionally overwhelming and painful. In these cases, doctors are required to stay emotionally strong.",
"Patience: Doctors would be facing a range of patients. Sometimes trying to get a patient to adhere to the treatment or explain to them the kind of illness they have can be stressful, thus this requires patience."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: Bachelor of Medicine and Bachelor of Surgery (MBBS).",
"Post Graduation: MD in any medical field."
],
"opp_l": [
" General Physicians",
" Paediatricians",
" General Surgeon",
" Cardiologist",
" Dentist"
],
"opp_r": [
" Dermatologists",
" Gynaecologist",
" ENT Specialist",
" Neurologist",
" Gasteroenterologist"
],
"insti": [
{
"link": "https://www.aiims.edu/",
"name": "All India Institute of Medical Sciences (AIIMS)"
},
{
"link": "https://www.cmch-vellore.edu/",
"name": "Christian Medical College Vellore"
},
{
"link": "https://manipal.edu/kmc-manipal.html",
"name": "Kasturba Medical College Manipal"
},
{
"link": "http://www.mmc.ac.in/mmc/",
"name": "Madras Medical College"
}
],
"pros": [
"The financial stability for doctors is really rewarding once the experience has been gained.",
"Job satisfaction for doctors is high as they will be working for the betterment of society.",
"It's an extremely respected profession."
],
"cons": [
"There's a lot of stress as any mistake in this profession could be harmful.",
"The workload could be high which could lead to burnout.",
"Even the process of getting through M.B.B.S could be stressful and draining."
]
},
{
"careerid": "surgeon",
"title": "Surgeon",
"cat_dir": "medicine.html",
"cat": "Medicine",
"duration": "8 years",
"p1_1": "Are you intrigued by the innards of a human body? Then, becoming a surgeon could be a great career path for you. Surgeons, as the name specifies, are doctors who specialize in Surgery. These surgeons perform surgery in order to fix abnormalities immediately. In most situations, surgery can be a procedure done for damage control. Thus, surgeons need to be confident in whatever they do. They usually have a team who helps them in the operation theatre.",
"p1_2": "Surgeons can choose to be either general surgeons or they can choose a specialization, such as orthopaedics, or neurosurgery and so on. Some general practitioners and family medicine and emergency medicine experts may undertake a restricted spectrum of minor, common, and emergency surgery. Anesthesia is frequently used in conjunction with surgery, and anesthesiologists and nurse anesthetists may be in charge of this component of the procedure.",
"img1": "assets/images/career/career-details-surgeon.jpg",
"alt1": "Surgeon Image",
"desc": "A surgeon needs to go through rigorous training before performing surgery. Naturally, because it is a complex job the stress and responsibilities are larger. A surgeon has to view the patients’ health conditions and accordingly device a plan for surgery. They must keep in mind any possible hurdles they can face in the operation theatre and must be prepared for that as well. A surgeon would also have to closely view the patient after surgery in what is known as “Post-op.” Surgeons are required to have dexterity and stamina. If they were under any influence that could compromise these two requirements it would be fatal.",
"skills": [
"Endurance Skills: It needs to be taken into account that surgeons stand for long hours in the operation theatre. It's extremely important for them to be able to do this with tiring or losing focus. Thus stamina is one of the crucial factors.",
"Hardworking Skills: It takes a lot of determination and perseverance to be a surgeon. Individuals need to be prepared to work hard and give it their best at all times as it is a demanding career.",
"Learning Skills: Surgeons are required to be passionate about their field. They will be dealing with human lives, thus an individual has to be driven and keep learning."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: Bachelor of Medicine and Bachelor of Surgery (MBBS).",
"Post Graduation: MD in General Surgery."
],
"opp_l": [
" Cardiothoracic Surgery",
" Neurosurgery",
" Orthopaedic Surgery"
],
"opp_r": [
" Urology",
" Vascular Surgery",
" Paediatric Surgery"
],
"insti": [
{
"link": "https://www.aiims.edu/",
"name": "All India Institute of Medical Sciences (AIIMS)"
},
{
"link": "https://fathermuller.edu.in/medical-college/",
"name": "Father Muller Medical College Mangalore"
},
{
"link": "Kasturba Medical College Manipal",
"name": "Grant Medical College Mumbai"
}
],
"pros": [
"The financial stability for doctors is really rewarding once the experience has been gained.",
"Job satisfaction for surgeons is high as they will be working for the betterment of society.",
"It's an extremely respected profession from older times till now and it will continue to be so."
],
"cons": [
"The responsibility this job demands is extremely high.",
"Commitment required by surgeons is also really high, this could leave you having a poor social life.",
"Stress in the job is also quite high."
]
},
{
"careerid": "pathology",
"title": "Pathology",
"cat_dir": "medicine.html",
"cat": "Medicine",
"duration": "7 years",
"p1_1": "Do you want to help diagnose various health conditions? Then pathology is a great career for you! When we go to a doctor for a particular illness we usually tend to ask them why we’ve gotten this illness. If it’s something that requires the doctor to do blood tests, urine tests then we’d have a lab test result that explains the cause of the illness.",
"p1_2": "This is where pathology comes into play. Pathology can be of two types, clinical pathology and anatomic pathology. Where clinical pathology deals with fields such as microbiology, immunology, haematology etc. Anatomic pathology deals with the cells and tissues. Pathology is a very important field in the health care sector. It is the most crucial part when we speak of diagnosis and also the risk factors. General pathology is largely concerned with assessing known clinical abnormalities.",
"img1": "assets/images/career/career-details-pathology.jpg",
"alt1": "Pathology Image",
"desc": "Pathologists are the ones who study the samples of various patients and then produce us with a report that helps in the diagnosis. Thus they play a crucial part in the healthcare system. It is also important in the sense that they warn of available risk factors, in case the patient has a certain aversion to a drug or another medical condition that could interfere with the treatment, it is up to a pathologist to report these things if found in a test result. They use laboratory tests to assess the condition of the patient and ascertain what’s causing the sickness.",
"skills": [
"Analytical Skills: An individual would have to be able to analyse the incoming data and new information and make the right inference.",
"Learning Skills: As the field is growing it requires the pathologists to have an open mind in terms of new technology.",
"Responsibility: As mentioned above the surgeon needs to keep in mind that they are working with human lives. Thus they need to be responsible enough to do this job. In case a surgeon isn't well or has any other issues then they have to immediately refrain from performing surgery.",
"Communication Skills: It is mandatory for them to communicate well with the patients when it comes to making them understand the dose of administration, when to take and how to take medicines.",
"Research Skills: Naturally one would have to be good at research as well to understand new problems, their potential solutions and inventions."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: Bachelor of Medicine and Bachelor of Surgery (MBBS).",
"Post Graduation: MD in Pathology."
],
"opp_l": [
" Chemical Pathology",
" Neuropathology"
],
"opp_r": [
" Paediatric Pathology",
" Forensic Pathology"
],
"insti": [
{
"link": "https://www.aiims.edu/",
"name": "All India Institute of Medical Sciences (AIIMS)"
},
{
"link": "https://www.cmch-vellore.edu/",
"name": "Christian Medical College Vellore"
},
{
"link": "https://manipal.edu/kmc-manipal.html",
"name": "Kasturba Medical College Manipal"
},
{
"link": "http://www.mmc.ac.in/mmc/",
"name": "Madras Medical College"
}
],
"pros": [
"There's a large need for pathologists.",
"Due to the fast-paced world there's almost always something new to study about.",
"It provides a lot of insight to the medical community."
],
"cons": [
"It can be a slow field.",
"The pay is not very rewarding initially.",
"The field requires a lot of study and hectic work."
]
},
{
"careerid": "nursing",
"img1": "../assets/images/career/career-details-nursing.jpg",
"alt1": "AIML Image",
"id": "nursing",
"title": "Nursing",
"cat_dir": "../medicine.html",
"cat": "Medicine",
"duration": "4 years",
"p1_1": "Do you want to treat people and do noble jobs? Then, nursing is a great profession for you. Nurses are required to take a preliminary screening of the patient and to also keep a day to day check on the progress of the patient. All this has to be documented by the nurses. The medicines are given, the time at which they were given, any complications, etc, all of this has to be observed and documented by the nurses.",
"p1_2": "In some cases, nurses can also choose to be part of schools and their healthcare awareness programs. It also has to be noted that nurses usually communicate every day with the family, thus they also are trained to be sensitive in handling volatile situations. They have to keep the doctors updated and also keep up with the treatment plan and schedule of each patient.",
"desc": "A candidate interested in being a nurse is required to have the motivation and the drive to do so. But more importantly, the individual needs to be patient. Whichever area he/she specialises in, there is a large requirement of patience that the nurses have to deliver. The job can get repetitive and mundane. A nurse would also be interacting with patients and their families more closely than the doctors themselves. They thus have to be warm and good with their communication. They could also have long working hours and odd working hours.",
"skills": [
"Empathy: Even though the job is extremely stressful, nurses are required to be empathetic towards their patients.",
"Responsibility: They need to be responsible enough to do this job. In case a nurse isn't well or has any other issues then they have to immediately refrain from interacting with patients as this might affect them.",
"Hard Working: It takes a lot of determination and perseverance to be a nurse. Individuals need to be prepared to work hard and give their best at all times as it is a demanding career.",
"Emotional Strength: They have to often encounter cases that might be hard to digest. They could be emotionally overwhelming and painful. In these cases, nurses are required to stay emotionally strong.",
"Patience: Nurses would be facing a range of patients. Sometimes trying to get a patient to adhere to the treatment or explain to them the kind of illness they have can be stressful, thus this requires patience."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: Bachelor of Science in Nursing / Bachelor of Science Honours in Nursing.",
"Post Graduation: Master of Science in Nursing."
],
"opp_l": [
" Oncological Nursing",
" Nephrological Nursing",
" Critical Care Nursing Surgeon",
" Psychiatric Nursing"
],
"opp_r": [
" Craniological/CTVS Nursing",
" Neurosciences Nursing",
" Paediatric Nursing",
" Private Nursing"
],
"insti": [
{
"link": "https://tmc.gov.in/index.php/en/academics/admission-process",
"name": "Tata Memorial Hospital Mumbai"
},
{
"link": "https://www.cmch-vellore.edu/",
"name": "Christian Medical College Vellore"
},
{
"link": "http://apollohospitalseducation.com/College/index.html",
"name": "Apollo College of Nursing Chennai"
},
{
"link": "https://www.hindujahospital.com/",
"name": "Hinduja Hospital Mumbai"
}
],
"pros": [
"Due to the growing field of medical science, and the growing need for more hospitals, naturally the need for nurses is also increasing. Thus the job market has a high demand.",
"The income in this field is stable and provides good job satisfaction.",
"If the candidate likes helping people, then it's the perfect field to work in."
],
"cons": [
"As mentioned earlier an individual is required to have a lot of patience in this field of work.",
"Rules must be strictly followed as it's a matter of healthcare.",
"It can become tiring and rigorous."
]
},
{
"careerid": "veterinary",
"title": "Veterinary",
"cat_dir": "../medicine.html",
"cat": "Medicine",
"duration": "5 years",
"p1_1": "Are you an animal lover and love taking care of them? Then, this is the perfect field for you. Veterinarians, commonly known as vets, are individuals who treat animals. A veterinary clinic is the place you take your pets, injured animals of all kinds to for treatment. This position falls into the category of animal healthcare. ",
"p1_2": "These individuals are trained specifically to take care of the needs of animals as doctors in general take care of human beings. It is a field under medicine that focuses on the healthcare necessary for animals, both domestic and wild, in reference to the vets who are present in wildlife sanctuaries that help conserve the animals in that region. Veterinarians can work for private hospitals, government hospitals, Shelters and NGOs as well. They also need to be able to effectively communicate their understanding of the symptoms and the diagnosis.",
"img1": "../assets/images/career/career-details-vet.jpg",
"alt1": "AIML Image",
"desc": "Just like human beings, animals tend to fall ill and are at risk for diseases that human beings are not and therefore require medical care at various points, this is where the vet comes in to take care of the animals. Whether it is, vaccinating your pets, ensuring that they are free of disease, treating their infections or tending to the wounds of injured animals, they take care of the needs of these animals. Every animal, just like any other human being is tested and diagnosed by the vet who then after assessing the problem offers specialised and specific treatment for the animal.",
"skills": [
"Communication Skills: They also need to be able to effectively communicate their understanding of the symptoms and the diagnosis. They also have to consider the emotions of owners of the pets.",
"Analytical Skills: As this field puts theory into use, using logic and reasoning becomes important to solve the problems and to come to a conclusion.",
"Learning Skills: You need to be aware of upcoming findings and studies conducted and keep up with the recent developments in this field.",
"Acceptance Skills: As the medical field is growing it requires them to have an open mind in terms of new technology."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: Bachelor of Veterinary Science (BVSc) / Bachelor of Veterinary Medicine and Surgery (BVMS).",
"Post Graduation: MD in Veterinary Sciences."
],
"opp_l": [
"Government Hospitals",
"NGOs",
"Clinics"
],
"opp_r": [
"Wildlife Parks",
"Conservation Parks"
],
"insti": [
{
"link": "http://www.ivri.nic.in/",
"name": "Indian Veterinary Research Institute"
},
{
"link": "http://www.tanuvas.ac.in/",
"name": "Tamil Nadu Veterinary and Animal Sciences University"
},
{
"link": "https://svvu.edu.in/",
"name": "Sri Venkateswara Veterinary University"
},
{
"link": "http://www.mafsu.in/",
"name": "Maharashtra Animal & Fishery Sciences University"
}
],
"pros": [
"This is considered as a noble profession.",
"This is a fun job role for anyone who loves animals, as one gets to spend a lot of time with them.",
"The job is quite versatile, as if you start your own practice, you also get to manage staff, etc."
],
"cons": [
"The training for becoming a vet, like any doctor, is very lengthy.",
"Not a very highly paid profession, unless one works at a huge hospital, or their practice becomes well reputed.",
"Often the vet may have to euthanize the pet (put them down, due to very poor health), which can be very stressful."
]
},
{
"careerid": "orthopaedic",
"title": "Orthopaedic",
"cat_dir": "../medicine.html",
"cat": "Medicine",
"duration": "8 years",
"p1_1": "Do you want to study bones, muscles, joints, ligaments, tendons or nerves and the probable injuries? If you think you have the right healing touch in your hands and can treat these injuries, and want to help such people, then being an orthopedist might be the right job for you.",
"p1_2": "Orthopaedic surgery, often known as orthopaedics, is a discipline of surgery that deals with musculoskeletal problems. Orthopaedic surgeons treat musculoskeletal trauma, spine diseases, sports injuries, degenerative diseases, infections, cancers, and congenital problems with both surgical and nonsurgical methods. Modern orthopedic surgery and musculoskeletal research have aimed to make surgery less invasive while also improving and extending the life of implanted components.",
"img1": "../assets/images/career/career-details-ortho.jpg",
"alt1": "AIML Image",
"desc": "Any orthopaedic professional, surgical or not, is qualified to analyze, diagnose, and treat your orthopaedic condition with non-invasive procedures. It's also worth noting that just because orthopaedic surgeons are qualified to perform surgery doesn't mean they would. Reputable orthopaedic doctors who are supported by strong healthcare systems are more likely to restore lives through innovative non-surgical techniques, such as minimally invasive procedures, computer-assisted treatments, and the harvesting and development of your own cells for cartilage regeneration.",
"skills": [
"Communication Skills: They also need to be able to effectively communicate their understanding of the symptoms and the diagnosis.",
"Analytical Skills: As this field puts theory into use, using logic and reasoning becomes important to solve the problems and to come to a conclusion.",
"Learning Skills: You need to be aware of upcoming findings and studies conducted and keep up with the recent developments in this field.",
"Acceptance Skills: As the medical field is growing it requires them to have an open mind in terms of new technology."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: Bachelor of Medicine and Bachelor of Surgery (MBBS).",
"Post Graduation: MD in Orthopaedics."
],
"opp_l": [
"Hospitals",
"Private Clinics"
],
"opp_r": [
"Sports"
],
"insti": [
{
"link": "https://www.aiims.edu/",
"name": "All India Institute of Medical Sciences (AIIMS)"
},
{
"link": "https://fathermuller.edu.in/medical-college/",
"name": "Father Muller Medical College Mangalore"
},
{
"link": "https://manipal.edu/kmc-manipal.html",
"name": "Kasturba Medical College Manipal"
},
{
"link": "https://ggmcjjh.com/",
"name": "Grant Medical College Mumbai"
}
],
"pros": [
"They have great job stability and is well respected in the community.",
"The pay as well is rewarding and stable.",
"Flexible work hours and room for growth and variety."
],
"cons": [
"They need to study a lot.",
"Sometimes the work can be draining and repetitive.",
"MBBS can be a very hectic course."
]
},
{
"careerid": "optha",
"title": "Ophthalmology",
"cat_dir": "../medicine.html",
"cat": "Medicine",
"duration": "8 years",
"p1_1": "Do you want to study eyes and vision? Then, ophthalmology is the right career. Ophthalmology is a discipline of medicine which deals with the physiology, anatomy and diseases of the eye. The area of ophthalmology requires a lot of expertise due to the speciality's complexity. This field included surgical, medical, and patient care skills ranging from paediatric to geriatric. ",
"p1_2": "Ophthalmology is a speciality medicine field with plenty of career prospects. The students have job opportunities in private and government hospitals, health departments, health centres, and NGOs. While all ophthalmologists are educated to treat all types of eye disorders and conditions, some specialize in a specific area of medical or surgical eye care. This individual is referred to as a subspecialist. To rectify visual difficulties, an ophthalmologist diagnoses and treats all eye disorders, conducts eye surgery, and prescribes and fits eyeglasses and contact lenses.",
"img1": "../assets/images/career/career-details-optha.jpg",
"alt1": "AIML Image",
"desc": "Ophthalmologists are those people who help in the treatment of eye problems. This can range from a power problem to something serious that might require surgery. They are required to assess the problem and devise a treatment plan. As the population of our planet rises every day, the need for ophthalmologists will grow and there will always be employment opportunities. People who have completed their residency training can continue to pursue fellowship training in Subspecialties of Ophthalmology. Aspirants seeking to become licensed medical practitioners must hold a degree in medicine and complete a residency.",
"skills": [
"Analytical Skills: An individual would have to be able to analyse the incoming data and new information and make the right inference",
"Learning Skills: As the field is growing it requires them to have an open mind in terms of new technology.",
"Technical Skills: They must be equipped with enough knowledge about the equipment as well as various health conditions.",
"Research Skills: Naturally one would have to be good at research as well to understand new problems, their potential solutions and inventions."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: Bachelor of Medicine and Bachelor of Surgery (MBBS).",
"Post Graduation: MD in Ophthamology."
],
"opp_l": [
"Hospitals",
"Health Centres",
"Paediatric Ophthalmology"
],
"opp_r": [
"NGOs",
"Academic Institutes"
],
"insti": [
{
"link": "https://www.kem.edu/",
"name": "King Edward Memorial Hospital and College Mumbai"
},
{
"link": "https://fathermuller.edu.in/medical-college/",
"name": "Father Muller Medical College Mangalore"
},
{
"link": "https://manipal.edu/kmc-manipal.html",
"name": "Kasturba Medical College Manipal"
},
{
"link": "https://ggmcjjh.com/",
"name": "Grant Medical College Mumbai"
}
],
"pros": [
"The financial stability for doctors is really rewarding once the experience has been gained.",
"Job satisfaction for doctors is high as they will be working for the betterment of society.",
"It's an extremely respected profession."
],
"cons": [
"There's a lot of stress as any mistake in this profession could be harmful.",
"The workload could be high which could lead to burnout.",
"Even the process of getting through M.B.B.S could be stressful and draining."
]
},
{
"careerid": "cse",
"title": "Computer Science & Engineering",
"cat_dir": "../engineering.html",
"cat": "Engineering",
"duration": "4 years",
"p1_1": "Are you fascinated by computers and technology? If so, then you should seriously consider pursuing a career in Computer Science & Engineering. This field of engineering utilizes elements of both computer science and electronics to create computer systems. ",
"p1_2": "Computer engineers are involved in tasks ranging from designing microcontrollers, personal computers, and supercomputers to working on circuit design. They deal with various aspects of hardware and software in computing. Beyond understanding the inner workings of computer systems, this field also emphasizes how they fit into the broader landscape of different industries. By merging electrical engineering with computer science, computer engineers are able to develop innovative computer hardware and software. They often work in roles as software and hardware engineers.",
"img1": "../assets/images/career/career-details-cse.jpg",
"alt1": "CSE Image",
"desc": "Computer engineers are tasked with the design, creation, and evaluation of computer systems and their integral parts, encompassing processors, circuit boards, memory units, networks, and routers. They hold the responsibility for a wide spectrum of tasks, ranging from software development, system and network establishment, to algorithm implementation and safeguarding system security for sensitive information. Furthermore, computer engineers are frequently relied upon to offer technical support to non-technical colleagues, including board members. Their scope of work encompasses both hardware and software, ensuring seamless integration and optimal functionality.",
"skills": [
"Technical Skills: The professionals must have solid basic knowledge in science. They must have strong maths skills as math is required for both for the construction of hardware and the programming of software.",
"Communication Skills: Computer engineers work in a team and usually require communicating with others regarding their job.",
"Managerial Skills: Progress of a computer engineer is through leading their teams. It is very necessary to have management skills to progress in a career.",
"Problem Solving Skills: This is the basic description of the job of a computer engineer. Even the tiny error will enable the programme to run.",
"Learning Skills: Learning new skills and technology is a life long process for computer engineers to stay in the market."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: B.Tech in Computer Science & Engineering / B.Tech in Software Engineering / B.Tech in Information Technology.",
"Post Graduation: M.Tech in Computer Science & Engineering."
],
"opp_l": [
"Software Developer",
"Machine Learning Engineer",
"Data Analyst",
"DevOps Engineer",
"Cybersecurity Analyst"
],
"opp_r": [
"Database Administrator",
"Network Engineer",
"Embedded Systems Engineer",
"Hardware Engineer",
"System Designer"
],
"insti": [
{
"link": "https://home.iitd.ac.in/",
"name": "Indian Institute of Technology (IITs)"
},
{
"link": "https://www.bits-pilani.ac.in/",
"name": "Birla Institute of Technology & Science (BITS)"
},
{
"link": "https://nitdelhi.ac.in/",
"name": "National Institute of Technology (NITs)"
},
{
"link": "http://dtu.ac.in/",
"name": "Delhi Technological University (DTU)"
},
{
"link": "https://vit.ac.in/",
"name": "Vellore Institute of Technology (VIT)"
}
],
"pros": [
"The pay packages are very good, so would account for a comfortable life.",
"The work environment is positive and allows the individual to thrive.",
"There is a high possibility of progress, with experience."
],
"cons": [
"It can be a stressful job with work load and tight deadlines.",
"Regular updating of knowledge because of the ever-evolving technology.",
"Long sitting hours in front of the computer may have negative health effects."
]
},
{
"careerid": "aiml",
"title": "Artificial Intelligence & Machine Learning",
"cat_dir": "../engineering.html",
"cat": "Engineering",
"duration": "4 years",
"p1_1": "Are you fascinated by the potential of machines to learn and make intelligent decisions? If so, a career in Artificial Intelligence (AI) and Machine Learning (ML) could be the perfect fit for you. This dynamic field revolves around the development of systems that can perform tasks requiring human-like intelligence.",
"p1_2": "Artificial Intelligence and Machine Learning professionals utilize advanced algorithms, data analysis, and pattern recognition techniques to enable computers to learn from data and make predictions or decisions. They work on a diverse range of applications, from natural language processing and computer vision to robotics and autonomous systems. This field not only delves into the technical intricacies of AI and ML but also explores how they can revolutionize industries across the spectrum. By merging principles from computer science, mathematics, and cognitive sciences, AI and ML engineers pave the way for groundbreaking advancements in technology.",
"img1": "../assets/images/career/career-details-aiml.jpg",
"alt1": "AIML Image",
"desc": "Professionals in Artificial Intelligence and Machine Learning are at the forefront of creating intelligent systems capable of learning and making decisions. They specialize in developing algorithms and models that enable computers to process and understand complex data, allowing them to perform tasks traditionally requiring human intelligence. This involves designing neural networks, fine-tuning algorithms, and optimizing models for various applications. Additionally, AI and Machine Learning experts work on enhancing system security to safeguard sensitive information. They also play a vital role in translating technical concepts for non-technical stakeholders, providing valuable support to the board of directors and colleagues less familiar with these advanced technologies. Their work spans both software and hardware, ensuring seamless integration for optimal performance.",
"skills": [
"Technical Skills: The professionals must have solid basic knowledge in science. They must have strong maths skills as math is required for both for the construction of hardware and the programming of software.",
"Communication Skills: Computer engineers work in a team and usually require communicating with others regarding their job.",
"Managerial Skills: Progress of a computer engineer is through leading their teams. It isvery necessary to have management skills to progress in a career.",
"Problem Solving Skills: This is the basic description of the job of a computer engineer. Even the tiny error will enable the programme to run.",
"Learning Skills: Learning new skills and technology is a life long process for computerengineers to stay in the market."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: B.Tech in Artificial Intelligence & Machine Learning / B.Tech in Computer Science & Engineering / B.Tech in Data Science.",
"Post Graduation: M.Tech in Artificial Intelligence & Machine Learning."
],
"opp_l": [
"Computer Vision Engineer",
"Machine Learning Engineer",
"Data Analyst",
"DevOps Engineer",
"Natural Language Processing (NLP) Engineer"
],
"opp_r": [
"AI Ethics and Bias Analyst",
"AI Solutions Architect",
"Data Scientist",
"Robotics Engineer",
"AI Automation Designer"
],
"insti": [
{
"link": "https://home.iitd.ac.in/",
"name": "Indian Institute of Technology (IITs)"
},
{
"link": "https://www.bits-pilani.ac.in/",
"name": "Birla Institute of Technology & Science (BITS)"
},
{
"link": "https://nitdelhi.ac.in/",
"name": "National Institute of Technology (NITs)"
},
{
"link": "http://dtu.ac.in/",
"name": "Delhi Technological University (DTU)"
},
{
"link": "https://vit.ac.in/",
"name": "Vellore Institute of Technology (VIT)"
}
],
"pros": [
"The pay packages are very good, so would account for a comfortable life.",
"The work environment is positive and allows the individual to thrive.",
"There is a high possibility of progress, with experience."
],
"cons": [
"It can be a stressful job with work load and tight deadlines.",
"Regular updating of knowledge because of the ever-evolving technology.",
"Long sitting hours in front of the computer may have negative health effects."
]
},
{
"careerid": "ece",
"title": "Electronics & Communications Engineering",
"cat_dir": "../engineering.html",
"cat": "Engineering",
"duration": "4 years",
"p1_1": "Do you possess a keen interest in electronics, telecommunications, and their wide-ranging applications? If so, Electronics and Communications Engineering might be the perfect fit for you! This field of engineering delves into the study, design, and application of devices, systems, and equipment that harness the power of electronics, telecommunications, and electromagnetism. ",
"p1_2": "Electronics and Communications Engineering encompasses various specialized areas such as signal processing, telecommunication systems, microelectronics, and more. It combines a strong technical foundation in circuit theory with essential managerial skills. This discipline is a blend of pure science and practical application, offering abundant professional opportunities. Engineers with additional management qualifications can explore administrative roles and venture into the corporate sector, further expanding their career horizons.",
"img1": "../assets/images/career/career-details-ece.jpg",
"alt1": "ECE Image",
"desc": "Electronics and Communications Engineers leverage their expertise in the principles of electronics, telecommunications, and signal processing to design and innovate electronic devices and communication systems. They tackle challenges, develop cutting-edge solutions, and rigorously test equipment. In the modern era, Electronics and Communications Engineers employ Computer-Aided Design (CAD) tools to create intricate schematics and circuit layouts. Their projects span a wide spectrum, encompassing areas like wireless communication systems, satellite technology, digital signal processors, integrated circuits, and more. These engineers find themselves in diverse roles including design, research, manufacturing, and supervision within the field of Electronics and Communications Engineering.",
"skills": [
"Technical Skills: Engineers should have basic circuit knowledge as in large scale projects design can get very complex. Thorough knowledge of maths and physics is also necessary.",
"Communication Skills: In every job communication skill is necessary. Professionals should know how to keep their solutions and demands in front of the supervisor or- in front of their clients.",
"Managerial Skills: Progress of a computer engineer is through leading their teams. It is very necessary to have management skills to progress in a career.",
"Problem Solving Skills: The job of an engineer is practical. It is a job where theory gets converted into practical application. They have to think logically and revisit the concepts to solve the problem as every problem will be unique.",
"Learning Skills: Engineering is a very practical job where new challenges will come and the only way to overcome them is to keep learning.",
"Thinking Skills: To solve the unique problems, critical thinking will come into the picture. The ability to approach things differently with innovative techniques will make a difference."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: B.Tech in Electronics & Communication Engineering / B.Tech in Electronics & Instrumentation Engineering / B.Tech in Electrical Engineering.",
"Post Graduation: M.Tech in Electronics & Communication Engineering."
],
"opp_l": [
"Broadcasting Engineer",
"CAD Technician",
"Control & Instrumental Engineer",
"Network Engineer",
"Embedded Systems Engineer"
],
"opp_r": [
"Telecommunications Engineer",
"Signal Processing Engineer",
"Automotive Electronics Engineer",
"Control Systems Engineer",
"Radio Frequency Engineer"
],
"insti": [
{
"link": "https://home.iitd.ac.in/",
"name": "Indian Institute of Technology (IITs)"
},
{
"link": "https://www.bits-pilani.ac.in/",
"name": "Birla Institute of Technology & Science (BITS)"
},
{
"link": "https://nitdelhi.ac.in/",
"name": "National Institute of Technology (NITs)"
},
{
"link": "http://dtu.ac.in/",
"name": "Delhi Technological University (DTU)"
},
{
"link": "https://vit.ac.in/",
"name": "Vellore Institute of Technology (VIT)"
}
],
"pros": [
"The pay scale is very good, which accounts for a comfortable lifestyle.",
"The work hours are slightly more flexible than other fields, which results in job flexibility as well.",
"The field offers a wide range of opporunities."
],
"cons": [
"The occupation is risky, as it deals with electricity.",
"The growth potential is very limited here.",
"There is a lot of hard work involved, as well as tight deadlines."
]
},
{
"careerid": "ee",
"title": "Electrical Engineering",
"cat_dir": "../engineering.html",
"cat": "Engineering",
"duration": "4 years",
"p1_1": "Are you fascinated by the realm of electricity and its diverse applications? If so, electrical engineering could be the perfect fit for you! This branch of engineering revolves around the exploration, design, and implementation of devices, systems, and assorted equipment that harness the power of electricity, electronics, and electromagnetism.",
"p1_2": "Within electrical engineering, there are specialized domains such as power engineering, control engineering, electronic engineering, and instrumentation engineering. It encompasses a broad spectrum of knowledge, encompassing technical aspects like circuit theory, alongside crucial managerial skills. With a substantial professional scope, electrical engineering is a field rooted in pure science. Engineers equipped with a management background have the opportunity to venture into administrative roles and potentially explore the corporate sector, thereby broadening their career horizons.",
"img1": "../assets/images/career/career-details-ee.jpg",
"alt1": "EE Image",
"desc": "Electrical engineers leverage their understanding of the principles of electricity, electromagnetism, and electronics, backed by a foundation in physics and mathematics, to conceive and innovate electrical equipment and systems. They address challenges, conduct equipment testing, and employ Computer-Aided Design (CAD) for tasks like schematic creation and circuit layout. In contemporary practice, electrical engineers are engaged in a diverse array of projects spanning from robotics and mobile devices to navigation systems, radars, computers, and more. They contribute their expertise across various domains, including design, manufacturing, supervision, and beyond.",
"skills": [
"Technical Skills: Engineers should have basic circuit knowledge as in large scale projects design can get very complex. Thorough knowledge of maths and physics is also necessary.",
"Communication Skills: In every job communication skill is necessary. Professionals should know how to keep their solutions and demands in front of the supervisor or- in front of their clients.",
"Managerial Skills: Progress of a computer engineer is through leading their teams. It is very necessary to have management skills to progress in a career.",
"Problem Solving Skills: The job of an engineer is practical. It is a job where theory gets converted into practical application. They have to think logically and revisit the concepts to solve the problem as every problem will be unique.",
"Learning Skills: Engineering is a very practical job where new challenges will come and the only way to overcome them is to keep learning.",
"Thinking Skills: To solve the unique problems, critical thinking will come into the picture. The ability to approach things differently with innovative techniques will make a difference."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: B.Tech in Electrical Engineering / B.Tech in Electronics & Instrumentation Engineering / B.Tech in Electrical & Electronics Engineering.",
"Post Graduation: M.Tech in Electrical Engineering."
],
"opp_l": [
"Electrical Engineer",
"CAD Technician",
"Control & Instrumental Engineer",
"Network Engineer",
"Embedded Systems Engineer"
],
"opp_r": [
"Telecommunications Engineer",
"Electronics Design Engineer",
"Automotive Electronics Engineer",
"Control Systems Engineer",
"Instrumentation Engineer"
],
"insti": [
{
"link": "https://home.iitd.ac.in/",
"name": "Indian Institute of Technology (IITs)"
},
{
"link": "https://www.bits-pilani.ac.in/",
"name": "Birla Institute of Technology & Science (BITS)"
},
{
"link": "https://nitdelhi.ac.in/",
"name": "National Institute of Technology (NITs)"
},
{
"link": "http://dtu.ac.in/",
"name": "Delhi Technological University (DTU)"
},
{
"link": "https://vit.ac.in/",
"name": "Vellore Institute of Technology (VIT)"
}
],
"pros": [
"The pay scale is very good, which accounts for a comfortable lifestyle.",
"The work hours are slightly more flexible than other fields, which results in job flexibility as well.",
"The field offers a wide range of opporunities."
],
"cons": [
"The occupation is risky, as it deals with electricity.",
"The growth potential is very limited here.",
"There is a lot of hard work involved, as well as tight deadlines."
]
},
{
"careerid": "eie",
"title": "Electrical & Instrumentation Engineering",
"cat_dir": "../engineering.html",
"cat": "Engineering",
"duration": "4 years",
"p1_1": "Are you intrigued by the intricate interplay of instruments and systems in various applications? If so, Electrical & Instrumentation Engineering might be the ideal path for you! This discipline is closely linked to the study, development, and utilization of devices, systems, and specialized equipment that involve electricity, electronics, and instrumentation. ",
"p1_2": "Within Electrical & Instrumentation Engineering, there are diverse subfields, including process control systems, industrial automation, and measurement technologies. It encompasses both theoretical understanding, such as signal processing, and practical applications, making it a well-rounded field. Professionals in this domain often find themselves at the intersection of technical expertise and management skills. Moreover, Electrical & Instrumentation Engineering offers a dynamic professional landscape, with opportunities for those interested in administrative roles and corporate sectors to further enhance their career prospects.",
"img1": "../assets/images/career/career-details-eie.jpg",
"alt1": "EIE Image",
"desc": "Electrical and Instrumentation Engineers leverage their expertise in electrical systems, instrumentation, and control technologies to conceive, design, and advance sophisticated equipment and systems. They employ principles of electricity, electronics, and control theory to tackle complex challenges, as well as to validate and fine-tune equipment. In today's technological landscape, Electrical and Instrumentation Engineers proficiently utilize Computer-Aided Design (CAD) tools to craft detailed schematics and circuit layouts. Their scope of projects spans a wide spectrum, encompassing endeavors like refining industrial automation processes, optimizing power distribution networks, and enhancing instrumentation systems for precise control and monitoring. These engineers find opportunities in diverse domains, including design, manufacturing, supervision, and more, contributing significantly to sectors ranging from energy production to process control and beyond.",
"skills": [
"Skills: Engineers should have basic circuit knowledge as in large scale projects design can get very complex. Thorough knowledge of maths and physics is also necessary.",
"Communication Skills: In every job communication skill is necessary. Professionals should know how to keep their solutions and demands in front of the supervisor or- in front of their clients.",
"Managerial Skills: Progress of a computer engineer is through leading their teams. It is very necessary to have management skills to progress in a career.",
"Problem Solving Skills: The job of an engineer is practical. It is a job where theory gets converted into practical application. They have to think logically and revisit the concepts to solve the problem as every problem will be unique.",
"Learning Skills: Engineering is a very practical job where new challenges will come and the only way to overcome them is to keep learning.",
"Thinking Skills: To solve the unique problems, critical thinking will come into the picture. The ability to approach things differently with innovative techniques will make a difference."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: B.Tech in Electronics & Instrumentation Engineering / B.Tech in Electrical & Electronics Engineering / B.Tech in Electrical Engineering.",
"Post Graduation: M.Tech in Electronics & Instrumentation Engineering."
],
"opp_l": [
"Automation Engineer",
"Robotics Engineer",
"Control & Instrumental Engineer",
"Network Engineer",
"Embedded Systems Engineer"
],
"opp_r": [
"Telecommunications Engineer",
"Electronics Design Engineer",
"Automotive Electronics Engineer",
"Control Systems Engineer",
"Instrumentation Engineer"
],
"insti": [
{
"link": "https://home.iitd.ac.in/",
"name": "Indian Institute of Technology (IITs)"
},
{
"link": "https://www.bits-pilani.ac.in/",
"name": "Birla Institute of Technology & Science (BITS)"
},
{
"link": "https://nitdelhi.ac.in/",
"name": "National Institute of Technology (NITs)"
},
{
"link": "http://dtu.ac.in/",
"name": "Delhi Technological University (DTU)"
},
{
"link": "https://vit.ac.in/",
"name": "Vellore Institute of Technology (VIT)"
}
],
"pros": [
"The pay scale is very good, which accounts for a comfortable lifestyle.",
"The work hours are slightly more flexible than other fields, which results in job flexibility as well.",
"The field offers a wide range of opporunities."
],
"cons": [
"The occupation is risky, as it deals with electricity.",
"The growth potential is very limited here.",
"There is a lot of hard work involved, as well as tight deadlines."
]
},
{
"careerid": "aero",
"title": "Aerospace Engineering",
"cat_dir": "../engineering.html",
"cat": "Engineering",
"duration": "4 years",
"p1_1": "Are you fascinated with aircrafts and spacecrafts? If the answer is yes, then aerospace engineering is the perfect choice for you. It is an engineering field which focuses on the science of aircrafts and spacecrafts. ",
"p1_2": "It has two specialized fields, namely: aeronautical engineering and astronautical engineering. It involves studying various conditions like atmospheric pressure, temperature etc. and making use of aerodynamics, fluid dynamics propulsion and other such fields, in order to design the perfect aircraft/spacecraft for those conditions. This includes aircrafts, rockets and other spacecrafts as well, built according to the conditions of stratosphere or outer space. The field involves various aspects of science and mathematics. It covers two aspects of engineering: Aeronautical and Astronomical.",
"img1": "../assets/images/career/career-details-aero.jpg",
"alt1": "EIE Image",
"desc": "Aerospace engineers are involved in designing, construction, and testing aircraft, missiles, and spacecraft. Professionals can either make them from scratch or they can work on testing and improving the aircraft design. They need to take care of each aspect, be it the radar cross-section used to measure distance or be it fluid dynamics, which helps an aircraft fly with an appropriate speed, without much turbulence. Mistakes in this field cost enormously and can even cost human life hence, professionals spend months working on a single project to eliminate mistakes. This field requires individuals to apply theory to practice.",
"skills": [
"Technical Skills: Aerospace Engineering is a true field of science and requires the individual to put the theoretical knowledge into practice. It is necessary to have knowledge about fluid and aerodynamics, physics, mathematics, aeronautics, etc.",
"Reading And Writing Skills: Majority of the work is done theoretically to eliminate huge losses of resources.",
"Communication Skills: Engineers must collaborate with others and express objectives, issues, and requirements.",
"Problem Solving Skills: They have to be updated about new technologies, different advancements in the field, etc. Engineer’s day involves solving client problems. Aerospace engineering is often figuring out how to make Aerospace or thermal devices work better, more efficiently or have different capabilities."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: B.Tech in Aerospace Engineering.",
"Post Graduation: M.Tech in Aerospace Engineering."
],
"opp_l": [
"Flight Technician",
"Aerospace Engineer",
"Technical Communicators"
],
"opp_r": [
"Aerospace Scientist"
],
"insti": [
{
"link": "https://home.iitd.ac.in/",
"name": "Indian Institute of Technology (IITs)"
},
{
"link": "http://flytechaviation.aero/",
"name": "Flytech Aviation Academy"
},
{
"link": "http://www.agragamiinstitutions.com/Home/AME",
"name": "V.S.M. Institute of Aerospace Engineering and Technology"
},
{
"link": "https://iiaeit.org/",
"name": "Indian Institute for Aeronautical Engineering and Information Technology"
},
{
"link": "https://iiaedehradun.org/",
"name": "Indian Institute for Aeronautical Engineering"
}
],
"pros": [
"High job satisfaction as the professionals get to do what they are passionate about.",
"Job security and good working conditions.",
"Experience of helping the community gives the sense of involvement."
],
"cons": [
"Difficult to get into this field as it requires a lot of studying.",
"Highly stressful jobs and working hours are unpredictable.",
"Constant learning as the job grows. Professionals have to update about the latest improvements."
]
},
{
"careerid": "mech",
"title": "Mechanical Engineering",
"cat_dir": "../engineering.html",
"cat": "Engineering",
"duration": "4 years",
"p1_1": "Are you interested in the fusion of engineering principles, material science, and mathematical concepts to design, analyze, manufacture, and maintain mechanical systems? If so, then the field of mechanical engineering may be the perfect fit for you. ",
"p1_2": "Mechanical engineering revolves around the study of moving systems and objects, exerting a profound influence on virtually every aspect of modern life, including the intricate machinery within the human body. It stands as one of the oldest and most multifaceted branches of engineering, seamlessly integrating elements from aerospace, electrical, civil, chemical, materials science, and even bio-engineering, all underpinned by a strong foundation in physics and mathematics. Additionally, mechanical engineers excel in the creation and testing of technical prototypes, bringing innovative ideas and products to life.",
"img1": "../assets/images/career/career-details-mech.jpg",
"alt1": "EIE Image",
"desc": "Mechanical engineers design, manufacture, and assess a variety of mechanical and thermal devices, ranging from tools and engines to machinery. They oversee the production of diverse items, including medical instruments and innovative batteries. Mechanical engineers analyze issues to ascertain if mechanical and thermal systems can offer solutions and oversee the manufacturing process. They employ analytical techniques and utilize computer-aided design for the creation or modification of mechanical and thermal apparatus. Daily responsibilities may involve assessing and diagnosing mechanical and thermal equipment, devising solutions, and conducting necessary repairs.",
"skills": [
"Creativity Skills: Mechanical engineers are frequently involved in the development and design of goods. Creativity is required when it comes to conceptualizing, creating, and designing whole new things.",
"Scientific Skills: Mechanical engineers, like any other profession of engineering, must have a good understanding of the science essential in their field.",
"Communication Skills: Engineers must collaborate with others and express objectives, issues, and requirements.",
"Problem Solving Skills: Engineer’s day involves solving client problems. Mechanical engineering is often figuring out how to make mechanical or thermal devices work better, more efficiently or have different capabilities."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: B.Tech in Mechanical Engineering / B.Tech in Automobile Engineering.",
"Post Graduation: M.Tech in Mechanical Engineering."
],
"opp_l": [
"Robotics Engineer",
"Mechanical Design Engineer",
"Manufacturing Engineer"
],
"opp_r": [
"HVAC Engineer",
"Mechatronics Engineer",
"Control Systems Engineer"
],
"insti": [
{
"link": "https://home.iitd.ac.in/",
"name": "Indian Institute of Technology (IITs)"
},
{
"link": "https://www.bits-pilani.ac.in/",
"name": "Birla Institute of Technology & Science (BITS)"
},
{
"link": "https://nitdelhi.ac.in/",
"name": "National Institute of Technology (NITs)"
},
{
"link": "http://dtu.ac.in/",
"name": "Delhi Technological University (DTU)"
},
{
"link": "https://vit.ac.in/",
"name": "Vellore Institute of Technology (VIT)"
}
],
"pros": [
"It involves a lot of practical work.",
"Extensive learning opportunities.",
"It is an interesting subject to study."
],
"cons": [
"It is a difficult subject to study.",
"There is a low pay initially.",
"Constantly updated knowledge of latest technology."
]
},
{
"careerid": "civil",
"title": "Civil Engineering",
"cat_dir": "../engineering.html",
"cat": "Engineering",
"duration": "4 years",
"p1_1": "Are you always fascinated by different types of buildings and constructions? If yes then, civil engineering is the way to go. Civil engineering is a branch of engineering that deals with the design, development, and maintenance of the physical and naturally constructed environment, such as highways, bridges, canals, dams, airports, sewerage systems, pipes, building structural components, and railways. ",
"p1_2": "It is the broadest of the engineering fields and one of the oldest and broadest engineering disciplines. Civil engineers are responsible for the construction of the world's infrastructure. They silently mold the past of nations all over the world in this way.",
"img1": "../assets/images/career/career-details-civil.jpg",
"alt1": "EIE Image",
"desc": "Civil engineers analyze survey reports, maps, and other data to plan projects. They consider construction costs, government regulations, potential environmental hazards, and other factors in planning stages and risk analysis. Engineers use design software to plan and design transportation systems, hydraulic systems, and structures in line with industry and government standards. They perform or oversee, surveying operations to establish reference points, grades, and elevations to guide construction. They also manage the repair, maintenance, and replacement of public and private infrastructure.",
"skills": [
"Mathematical Skills: Engineering students need to have a thorough understanding of algebra, calculus, trigonometry, and geometry. Knowledge of statistics is the cherry on the top.",
"Thinking Skills: Computer engineers work in a team and usually require communication with others regarding their job.",
"Leadership Skills: Engineers should have leadership skills because their job requires them to oversee planners, technicians, technologists, surveyors, and contractors.",
"Problem Solving Skills: Engineers will experience a variety of variables during the various stages of a project, such as planning and construction, that will affect the outcome or stymie progress.",
"Decision Making Skills: While working as a leader and manager of a project, a civil engineer will need to consider the available information, conflicting goals from different parties involved, professional ethics, financial responsibilities, and safety concerns when making decisions."
],
"educ": [
"School: Any subject combination taking Science as the main stream.",
"Graduation: B.Tech in Civil Engineering.",
"Post Graduation: M.Tech in Civil Engineering."
],
"opp_l": [
"Transport Engineer",
"Construction Engineer",
"Structural Engineer"
],
"opp_r": [
"Geotechnical Engineer",
"Environmental Engineer"
],
"insti": [
{
"link": "https://home.iitd.ac.in/",
"name": "Indian Institute of Technology (IITs)"
},
{
"link": "https://www.bits-pilani.ac.in/",
"name": "Birla Institute of Technology and Science (BITS)"
},
{
"link": "https://nitdelhi.ac.in/",
"name": "National Institute of Technology (NITs)"
},
{
"link": "https://www.iitism.ac.in/",
"name": "Indian School of Mines"
},
{
"link": "https://vit.ac.in/",
"name": "Vellore Institute of Technology (VITs)"
}
],
"pros": [
"This job offers a high salary package and perks.",
"There’s always high demand for civil engineers",
"Opportunity to travel to different parts of the world"
],
"cons": [
"There are tight deadlines and schedules.",
"The job is very stressful.",
"Involvement of third party for approval of designs."
]
},
{
"careerid": "businessadministration",
"title": "Business Administration",
"cat_dir": "../management.html",
"cat": "Management",
"duration": "3 years",
"p1_1": "Do you want to learn about the inner workings of a business enterprise? Then, business administration can be a great field for you! The management of a commercial enterprise is referred to as business administration.",
"p1_2": "It entails overseeing and supervising all parts of business operations. From the point of view of management and leadership, it also covers fields that include office building administration, accounting, finance, designing, development, quality assurance, data analysis, sales, project management, information technology management, research and development, and marketing. The execution or management of business operations and decision-making, as well as the effective organization of people and other resources to steer activities toward common goals and objectives, are all part of business administration.",
"img1": "../assets/images/career/career-details-ba.jpg",
"alt1": "EE Image",
"desc": "Overseeing and evaluating financial operations, approving purchases and expenditures, mediating between staff and other executives, choosing heads of departments, marketing and promoting the firm, and arranging training programs are all responsibilities of the business administrator. They are expected to drive and supervise positive business growth, detect wastage and improve efficiency, oversee day-to-day business activities, introduce and implement innovative short and long-term business goals, liaise and consult with clients, staff, and suppliers, evaluate and enhance employee performance, improve business programs, technologies, etc.",
"skills": [
"Communication Skills: These are essential as they need to interact with clients as well as investors/shareholders.",
"Writing Skills: These are important for written communication as well as paperwork.",
"Time Management Skills: These are essential to be able to run a business smoothly."
],
"educ": [
"School: Any subject combination taking Science or Commerce or Arts (Humanities).",
"Graduation: B.Com / BBA Courses should be done.",
"Post Graduation: MBA should be done."
],
"opp_l": [
"Business Analyst",
"Finance Manager",
"Business Conultant"