-
Notifications
You must be signed in to change notification settings - Fork 183
/
jobs.json
1184 lines (1176 loc) · 33.7 KB
/
jobs.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
{
"jobs" : [
{
"id": "1",
"companyName": "abc",
"position": "Frontend Developer",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "xyz@gmail.com"
},
{
"id": "2",
"companyName": "tcs",
"position": "Full stack Developer",
"requirements": "Html, CSS, JavaScript, react js , mongo DB, ejs, DSA, DBMS",
"contactEmail": "vishalabhange2002@gmail.com"
},
{
"id": "3",
"companyName": "Infosys",
"position": "Full stack Developer",
"requirements": "Html, CSS, JavaScript, react js , , ejs, DSA, DBMS",
"contactEmail": "gaurigadge17@gmail.com"
},
{
"id": "4",
"companyName": "Colab India",
"contactEmail": "diyagandhisb@gmail.com"
},
{
"id": "5",
"companyName": "Google",
"position": "Frontend Developer",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "diyagandhisb@gmail.com"
},
{
"id": "6",
"companyName": "abc",
"position": "Frontend Developer",
"requirements": "Html, CSS, cpp",
"contactEmail": "pratikshahodade@gmail.com"
},
{
"id": "7",
"companyName": "Digitize Matrix",
"position": "Web Developer",
"requirements": "MERN Stack",
"contactEmail": "applyatapple@ios.com"
},
{
"id": "8",
"companyName": "BYJU'S",
"position": "Marketing",
"requirements": "English Proficiency (Spoken)Tamil Proficiency (Spoken)",
"contactEmail": "contact@byjus.comxyz@gmail.com"
},
{
"id": "9",
"companyName": "TCS",
"position": "Frontend Developer",
"requirements": "html,css,javascript",
"contactEmail": "prajaktalandge2003@gmail.com"
},
{
"id": "10",
"companyName": "Skillred",
"position": "App Developer",
"requirements": "Html, C++, JavaScript",
"contactEmail": "skillred123@gmail.com"
},
{
"id": "11",
"companyName": "RedForce",
"position": "Cybersecurity Analyser",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "redforceone@gmail.com"
},
{
"id": "12",
"companyName": "anchor",
"position": "operator",
"requirements": "Excel,Typing Speed and Knowlege of Electrical Energy",
"contactEmail": "anchorhr17@gmail.com"
},
{
"id": "13",
"companyName": "Moneymakes",
"position": "UI/UX Developer",
"requirements": "Html, CSS, JavaScript, Figma, Photoshop",
"contactEmail": "shahodade@gmail.com"
},
{
"id": "14",
"companyName": "TATA",
"position": "MAchine Designer",
"requirements": "Autocad, Catia",
"contactEmail": "shubhadasalvi99@gmail.com"
},
{
"id": "15",
"companyName": "UPSPIKE ",
"position": "WEB DEVELOPER ",
"requirements": " HTML , CSS , JAVASCTRIPT ",
"contactEmail": "sahil952003@gmail.com"
},
{
"id": "16",
"companyName": "IBM",
"position": "Data Scientist",
"requirements": "python,R,ML,Deep Learning,CNN,tensorflow",
"contactEmail": "ibm2003@gmail.com"
},
{
"id": "17",
"companyName": "IBM",
"position": "Support Enginner",
"requirements": "Linux, Big Data, Database",
"contactEmail": "arslaan077799@gmail.com"
},
{
"id": "18",
"companyName": "Accenture",
"position": "Frontend Developer",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "sanskrutithorve75@gmail.com"
},
{
"id": "19",
"companyName": "AMAZON",
"position": "CTO",
"requirements": "Cybersecurity ",
"contactEmail": "chavanas1511@gmail.com"
},
{
"id": "20",
"companyName": "makesues",
"position": "UI/UX Developer",
"requirements": "Html, CSS, JavaScript, Figma, Photoshop",
"contactEmail": "badebrode@gmail.com"
},
{
"id": "21",
"companyName": "Barclays ",
"position": "Web Developer",
"requirements": "Html,Java, Python, CSS, JavaScript",
"contactEmail": "shindeanmol125@gmail.com"
},
{
"id": "22",
"companyName": "CareerFounding",
"position": "Full stack Developer",
"requirements": "Html, CSS, JavaScript, SQL, MongoDB",
"contactEmail": "https://careerfoundry.com"
},
{
"id": "23",
"companyName": "tcs",
"position": "Full stack Developer",
"requirements": "Html, CSS, JavaScript, react js , mongo DB, ejs, DSA, DBMS",
"contactEmail": "vishalabhange2002@gmail.com"
},
{
"id": "24",
"companyName": "tcs",
"position": "Software Developer",
"requirements": "Html,CSS,Python,C++,C,Cotlin",
"contactEmail": "anuradhathombare1512@gmail.com"
},
{
"id": "25",
"companyName": "tcs",
"position": "Full stack Developer",
"requirements": "Html, CSS, JavaScript, react js , mongo DB, ejs, DSA, DBMS",
"contactEmail": "vishalabhange2002@gmail.com"
},
{
"id": "26",
"companyName": "Google",
"position": "Frontend Developer",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "shajahansayyedz@gmail.com"
},
{
"id": "26",
"companyName": "Bolt inovation",
"position": "Full stack Developer",
"requirements": "Html, CSS, JavaScript, DS, python",
"contactEmail": "mardhekarsanket@gmail.com"
},
{
"id": "27",
"companyName": "IESoft Technologies Private Limited",
"position": "UX Design",
"requirements": "Adobe After Effects, Adobe Creative Suite, Adobe Illustrator, Adobe Photoshop, Adobe XD, Figma, UI & UX Design",
"contactEmail": "info@iesoftfzc.com"
},
{
"id": "28",
"companyName": "Colab India",
"contactEmail": "diyagandhisb@gmail.com"
},
{
"id": "29",
"companyName": "IBM",
"position": "Cloud Computing Intern",
"requirements": "AWS,GCP, Azure",
"contactEmail": "googlesupport@google.com"
},
{
"id": "30",
"companyName": "tcs",
"position": "Frontend Developer",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "adityabhagwat357@gmail.com"
},
{
"id": "31",
"companyName": "Skar",
"position": "Mechanical Engineer",
"requirements": "Catia, Ansys, Fundamentals of Mechanical Engineering",
"contactEmail": "sarthakkatwate12@gmail.com"
},
{
"id": "32",
"companyName": "Comely Enterprises",
"position": "web Developer",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "contact@aimcomely.com"
},
{
"id": "33",
"companyName": "Morgan stanley",
"position": "Full Time Analyst",
"requirements": "Java, C++ or C# database knowledge. Operating system knowledge (Windows and Unix).",
"contactEmail": "asia.recruit@morganstanley.com"
},
{
"id": "34",
"companyName": "Paytm",
"position": "Frontend Developer",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "guptashaurya2002@gmail.com"
},
{
"id": "35",
"companyName": "AMAZON",
"position": "Frontend Developer",
"requirements": "Html, CSS, JavaScript,frameworks",
"contactEmail": "tejaskhatkale18@gmail.com"
},
{
"id": "36",
"companyName": "Google",
"position": "Project Manager",
"requirement": "java,css,kotlin",
"contactEmail": "vedantdhage61@gmail.com"
},
{
"id": "37",
"companyName": "Wipro",
"position": "Web Developer"
},
{
"id": "38",
"companyName": "PhonePe",
"position": "Graduate Trainee",
"requirements": "Html, CSS, JavaScript, Java/C++/Python, MySQL",
"contactEmail": "businessrecruitment@phonepe.com"
},
{
"id": "39",
"companyName": "Hewlett Packard Enterprise",
"position": "AI ML ",
"requirements": "Graduation in AIML, Higher Mathematics"
},
{
"id": "40",
"companyName": "Microsoft",
"position": "SDE",
"requirements": "Html, CSS, JavaScript, C++/Java/Python, DBMS, DSA",
"contactEmail": "recruitment@hotmail.com"
},
{
"id": "41",
"companyName": "Digital Ocean",
"position": "cloud support engineer",
"requirement": "Linux, cloud technology"
},
{
"id": "42",
"companyName": "amazon",
"position": "AWS developer",
"requirements": "AWS",
"contactEmail": "bhargavagraval@gmail.com"
},
{
"id": "43",
"companyName": "Google",
"position": "web developer",
"requirement": "html,css,javaScript",
"contactEmail": "shrutishinde145@gmail.com"
},
{
"id": "44",
"companyName": "tcs",
"position": "web developer",
"requirements": "html,css ,js,bootstrap,git,java,reactjs",
"contactEmail": "bhargavagraval@gmail.com"
},
{
"id": "45",
"company name ": "Google",
"position": "Senior Software Engineer",
"requirements": "Cloud Computing, DSA, Testing Experience",
"contactEmail": "jobs@google.com"
},
{
"id": "46",
"company name ": "Dhruva",
"position": " pROJECT Manager",
"requirements": "DSA,MBA,Testing Experience",
"contactEmail": "jobs@dhruva.com"
},
{
"id": "47",
"companyName": "Birlasoft",
"position": "Sr Technical Lead",
"requirements": "Any Graduate",
"contactEmail": "campusteam@birlasoft.com"
},
{
"id": "48",
"companyName": "persistent",
"position": "Intern",
"requirements": "Third or Fourth year students",
"contactEmail": "info@persistent.com"
},
{
"id": "49",
"companyName": "SBI",
"position": "Dupty Chief Technology Officer",
"requirements": "B.Tech/B.E, M.E/M.Tech, MBA/PGDM, MCA",
"contactEmail": "dphelp@hdfcbank.com"
},
{
"id": "50",
"companyName": "Google",
"position": "Cloud storage Specialist",
"requirements": "B.Tech in CS ",
"contactEmail": "jobs@google.com"
},
{
"id": "51",
"companyName": "Jaduu",
"position": "Graduate Trainee",
"requirements": "Fourth year students",
"contactEmail": "not_so_sober.com"
},
{
"id": "52",
"companyName": "Back2Study",
"position": "Content Writer",
"requirements": "Graduation completed",
"contactEmail": "https://www.back2study.co.in"
},
{
"id": "53",
"companyName": "tcs",
"position": "android developer",
"requirements": "Html, CSS, JavaScript, c++",
"contactEmail": "prasadkhotkar916@gmail.com"
},
{
"id": "54",
"companyName": "frenz-d.in",
"position": "python",
"requirements": "Peoples skills, ui designing, canva , adobe xd expert",
"contactEmail": "vaishalic@gmail.com"
},
{
"id": "55",
"companyName": "Accenture",
"position": "Java Enterprice Edition Application Developer",
"requirements": "B.Tech in CS/IT",
"contactEmail": "https://www.accenture.com/in-en/careers"
},
{
"id": "56",
"companyName": "Zenser",
"position": "Java Enterprice Edition Application Developer",
"requirements": "B.Tech in CS/IT",
"contactEmail": "https://www.zanser.com/in-en/careers"
},
{
"id": "57",
"companyName": "Eaton",
"position": "Java Developer",
"requirements": "Java",
"contactEmail": "jobrapido.com"
},
{
"id": "58",
"companyName": "frenz-d.in",
"position": "ui designer",
"requirements": "Peoples skills, ui designing, canva , adobe xd expert",
"contactEmail": "guruprasadvaidya@gmail.com"
},
{
"id": "59",
"companyName": "Hoffmann Group",
"position": "Intern",
"requirements": "Peoples skills, CAD",
"contactEmail": "harshada.shirude.ext@hoffmann-group.com"
},
{
"id": "60",
"companyName": "E2Open",
"position": "Cloud Computing Architect",
"requirements": "Java, Python,C#,aws",
"contactEmail": "ccca@gmail.com"
},
{
"id": "61",
"companyName": "Wipro",
"position": "Project Trainee",
"requirements": "Java, Python,C#,aws",
"contactEmail": "cbha@gmail.com"
},
{
"id": "62",
"companyName": "MindTree",
"position": "Web Developer Intern",
"requirements": "Javascript, React,C#,Mongo",
"contactEmail": "hr.mindtree@gmail.com"
},
{
"id": "63",
"companyName": "Microsoft",
"position": "Software Engginer",
"requirements": "C++, Python, PHP, HTML, CSS,C#,Mongo",
"contactEmail": "hr.MSWork@gmail.com"
},
{
"id": "64",
"companyName": "VCL",
"position": "CTO",
"requirements": "CyberSecurity",
"contactEmail": "cyberhim99@gmail.com"
},
{
"id": "65",
"companyName": "Elixir Techne",
"position": "Python Developer ",
"requirements": "Experience: 0-2 Years & Python Programming language",
"contactEmail": "career@elixirtechne.com"
},
{
"id": "66",
"companyName": "Oracle",
"position": "Software Developer - Intern",
"requirements": "Basic DBMS, DSA",
"contactEmail": "interns@oracle.com"
},
{
"id": "67",
"companyName": "Ciena",
"position": "SDE Intern",
"requirements": "Batch 2022/2023",
"contactEmail": "https://careers.ciena.com/us/en/job/R020602/Software-Engineering-Intern"
},
{
"id": "68",
"companyName": "Mindtree",
"position": "IOS Devloper",
"requirements": "Swift, Ios Devlopment , xcode, Objective c",
"contactEmail": "https://www.mindtree.com/careers/jobs-apply"
},
{
"id": "69",
"companyName": "UBER",
"position": "Sr. Software Developer",
"requirements": "CORE DSA, GOOD PROBLEM SOLVEING SKILLS , Node js. ",
"contactEmail": "https://www.uber.com/global/en/careers/list/113044/"
},
{
"id": "70",
"companyName ": "Pixelmattic",
"position": "Frontend Developer Web",
"requirements": "WordPress, HTML, CSS, jQuery, PHP",
"contactEmail": "info@pixelmatic.com"
},
{
"id": "71",
"companyName ": "Phyllo Inc",
"position": "QA Manager / SDET Manager",
"requirements": "Team leading & Building, test framework for test automation, Good communication skills",
"contactEmail": "saroj@getphyllo.com"
},
{
"id" : "72",
"companyName " : "Pixelmattic",
"position" : "Frontend Developer Web",
"requirements" : "WordPress, HTML, CSS, jQuery, PHP",
"contactEmail" : "info@pixelmatic.com"
},
{
"id": "73",
"companyName ": "Sparks Foundation",
"position": "Full stack Developer",
"requirements": "Html, CSS, JavaScript, react js , mongo DB, ejs, DSA, DBMS",
"contactEmail": "krankit121202@gmail.com"
},
{
"id": "74",
"companyName ": "Cromptom",
"position": "Frontend Developer",
"requirements": "Html, CSS",
"contactEmail ": "crompton@gmail.com"
},
{
"id": "75",
"companyName ": "CoolBoots Media",
"position": " Software Developer ",
"requirements": "PHP, MySQL ,laravel",
"contactEmail ": "CoolBoots@gmail.com"
},
{
"id": "76",
"companyName ": "Media",
"position": " Software Developer ",
"requirements": "PHP, MySQL ,laravel",
"contactEmail ": "Media@gmail.com"
},
{
"id": "77",
"companyName": "IBM",
"position": "Data Scientist",
"requirements": "python,R,ML,Deep Learning,CNN,tensorflow",
"contactEmail": "ibm2003@gmail.com"
},
{
"id": "78",
"companyName": "Microsoft",
"position": "SDE",
"requirements": "Html, CSS, JavaScript, C++/Java/Python, DBMS, DSA",
"contactEmail": "recruitment@hotmail.com"
},
{
"id": "79",
"companyName": "Skillred",
"position": "App Developer",
"requirements": "Html, C++, JavaScript",
"contactEmail": "skillred123@gmail.com"
},
{
"id": "80",
"companyName": "BYJU'S",
"position": "Marketing",
"requirements": "English Proficiency (Spoken)Tamil Proficiency (Spoken)",
"contactEmail": "contact@byjus.comxyz@gmail.com"
},
{
"id": "81",
"companyName": "Thinkfinity Labs Pvt Ltd",
"position": "Intern",
"requirements": "HTML CSS JS and React/Nodejs",
"contactEmail": "nithishr81@gmail.com"
},
{
"id": "82",
"companyName": "Investo",
"position": "Frontend Developer",
"requirements": "Reactjs",
"contactEmail": "Intern@123"
},
{
"id": "83",
"companyName": "AMAZON",
"position": "App Developer",
"requirements": "Html, C++, JavaScript",
"contactEmail": "sohini.official.in@gmail.com"
},
{
"id": "84",
"companyName": "Neemtree",
"position": "Backend Developer",
"requirements": "MERN Full Stack web development",
"contactEmail": "abc@neemtree.com"
},{
"id": "85",
"companyName ": "Sparks Foundation",
"position": "Full stack Developer",
"requirements": "Html, CSS, JavaScript,angular",
"contactEmail": "intern@gmail.com"
},
{
"id": "86",
"companyName": "Mindtree",
"position": "DevOps Engineer",
"requirements": "Python, Kubernetes, Linux",
"contactEmail": "hr.mindtree@gmail.com"
},
{
"id": "87",
"companyName": "KFC",
"position": "Manager",
"requirements": "Experience,leardship qualities",
"contactEmail": "kfc@gmail.com"
},
{
"id": "88",
"companyName": "Lexmark",
"position": "frontend Developer",
"requirements": "Html, C++, JavaScript",
"contactEmail": "indhelpdesk@lexmark.com"
},
{
"id": "89",
"companyName": "Cisco",
"position": "Senior Software Engineer",
"requirements": "C++/Java, Data Stucture and Algorithms, Computer Networks, Strong Communication Skill",
"contactEmail": "adarshpy@cisco.com"
},
{
"id": "90",
"companyName": "splunk",
"position": "Software Engineer",
"requirements": "C++/Java, Data Stucture and Algorithms, Computer Networks, Strong Communication Skill",
"contactEmail": "https://www.splunk.com/en_us/careers.html"
},
{
"id": "91",
"companyName": "Girl Power Talk",
"position": "Frontend Developer",
"requirements": "HTML, CSS, SCSS, JavaScript, React.js, REST API’s, Jquery",
"contactEmail": "girlpower1@gmail.com"
},
{
"id": "92",
"companyName": "Splunk",
"position": "Software Engineer",
"requirements": "C++/Java, Data Stucture and Algorithms, Computer Networks, Strong Communication Skill",
"contactEmail": "https://www.splunk.com/en_us/careers.html"
},
{
"id": "93",
"companyName": "Wipro",
"position": "Technical Lead",
"requirements": "C++/Java, Python",
"contactEmail": "wiprotech@gmail.com"
},
{
"id": "94",
"companyName": "AMAZON",
"position": "CTO",
"requirements": "Cybersecurity ",
"contactEmail": "ashishrairai968560@gmail.com"
},
{
"id": "95",
"companyName": "Netflix",
"position": "SWE (Visa Sponsored)",
"requirements": "Data structure and algorithm, competitive programming",
"contactEmail": "https://csforall.in/job/software-engineer-intern-summer-2023-netflix-ca-234866639/"
},
{ "id": "96",
"companyName": "AIESEC",
"position": "BDA",
"requirements": "Marketting",
"contactEmail": "aekagra.dhamani02@aiesec.net"
},
{
"id": "97",
"companyName": "Safe Security",
"position": "Frontend Developer",
"requirements": "C++/Java, MERN, MEAN, Strong Communication Skill",
"contactEmail": "ta@safe.security"
},
{
"id": "98",
"position": "Cybersecurity Engineer",
"requirements": "VAPT,OWASP Top 10, Penetration Testing",
"contactEmail": "ta@safe.security"
},
{
"id": "99",
"companyName": "Google",
"position": "Frontend Developer",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "sj5027052@gmail.com"
},
{
"id" : "100",
"companyName " : "TATA Group",
"position" : "Relationship Manager",
"requirements" : "Interpersonal Skills,Communication Skills,Influencing Skills,Relationship Building Skills,Decision Making Skills",
"contactEmail" : "careers@tcs.com"
},
{
"id" : "101",
"companyName " : "Sony Research India",
"position" : "C++ Programming Intern",
"requirements" : "OOP concepts proficiently in C and C++, maths, probability, statistics, and algorithms.",
"contactEmail" : "info.sonyresearchindia@sony.com"
},
{
"id" : "102",
"companyName " : "LG India",
"position" : "Software Developer",
"requirements" : "Strong C/c++ programing skills,Good analytical/debugging skills, designing,building, delivering, maintaining software applications",
"contactEmail" : "lgindia@.com"
},
{
"id" : "103",
"companyName " : "Cargill",
"position" : "Risk & Security Analyst",
"requirements" : "Identify and assess risk and security threats, Contribute to solutions,Strong knowledge with SAP ABAP, HANA, Java and Cloud systems security. communications with IT leadership",
"contactEmail" : "cargillcareers@.com"
},
{
"id" : "104",
"companyName " : "Dell Technologies",
"position" : "Software Senior Engineer",
"requirements" : "Experience in using Python or JavaScript,(C, Java); operating systems - Windows, POSIX, UNIX, Linux,framework design and development, debugging and kernel",
"contactEmail" : "delltech@gmail.com"
},
{
"id": "105",
"companyName": "Moneymakes",
"position": "UI/UX Developer",
"requirements": "Html, CSS, JavaScript, Figma, Photoshop",
"contactEmail": "shahodade@gmail.com"
},
{
"id": "106",
"companyName": "SharpHeads",
"position": "Inside Sales Executive, Business Development Executive",
"requirements": "BBA Graduate, Team building skills",
"contactEmail": "priya@sharpheadsrpo.com"
},
{
"id": "107",
"companyName": "IBM",
"position": "Data Scientist",
"requirements": "python,R,ML,Deep Learning,CNN,tensorflow",
"contactEmail": "sagar.rajput9753@gmail.com"
},
{
"id": "108",
"companyName": "Google",
"position": "Frontend Developer",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "diyagandhisb@gmail.com"
},
{
"id": "109",
"companyName": "GeekyAnts",
"position": "Software Engineer",
"requirements": "Html, CSS, JavaScript, Java/C++/Python, MySQL",
"contactEmail": "recruitment@geekyants.com"
},
{
"id": "110",
"companyName": "Titan'S",
"position": "Marketing",
"requirements": "English Proficiency (Spoken)Tamil Proficiency (Spoken)",
"contactEmail": "aditya@byjus.comxyz@gmail.com"
},
{
"id": "111",
"companyName": "BYJ",
"position": "Marketing",
"requirements": "English Proficiency (Spoken)Tamil Proficiency (Spoken)",
"contactEmail": "contact@BYJ.comxyz@gmail.com"
},
{
"id": "112",
"companyName ": "Phyllo Inc",
"position": "QA Manager / SDET Manager",
"requirements": "Team leading & Building, test framework for test automation, Good communication skills",
"contactEmail": "sarita@getphyllo.com"
},
{
"id" : "113",
"companyName " : "Netflix",
"position" : "SWE intern",
"requirements" : "Html, CSS, JavaScript,java",
"contactEmail" : "netflic933@gmail.com"
},
{
"id": "114",
"companyName ": "Citrix",
"position": "Software Engineering",
"requirements": "object-oriented programming language, preferably C++,Python,strong debugging and troubleshooting skills",
"contactEmail": " microsoft@gmail.com"
},
{
"id": "115",
"companyName": "persistent",
"position": "Intern",
"requirements": "Third or Fourth year students",
"contactEmail": "info@persistent.com"
},
{
"id": "116",
"companyName": "Elixir Techne",
"position": "Python Developer ",
"requirements": "Experience: 0-2 Years & Python Programming language",
"contactEmail": "vishu@iet.davv.ac.in"
},
{
"id" : "117",
"companyName " : "Clarivate",
"position" : "Associate QA Engineer-1",
"requirements" : "Html, CSS, JavaScript,php",
"contactEmail" : "ex. jane.doe@clarivate.com"
},
{
"id" : "118",
"companyName": "Thinkfinity Labs Pvt Ltd",
"position": "Intern",
"requirements": "HTML CSS JS and React/Nodejs",
"contactEmail": "vishwakarmasourabh@iips.edu.in"
},
{
"id": "119",
"companyName " : "IBM",
"position" : "System Engineer",
"requirements" : "Web Technology, Java, DBMS",
"contactEmail" : "eschoolhiringt@ibmindia.com"
},
{
"id": "120",
"companyName " : "ITC Infotech",
"position" : "Analyst Trainee",
"requirements" : "Html, CSS, JavaScript, Java/C++/Python, MySQL",
"contactEmail" : "businessrecruitment@itcinfotech.com"
},
{
"id" : "121",
"companyName " : "IBM",
"position" : "Software Developer",
"requirements" : "Html, CSS, JavaScript, Java/C++/Python",
"contactEmail" : "cvo@ibm.gov.in"
},
{
"id": "122",
"companyName " : "Suvidha Foundation",
"position" : "volunteer for fund raising",
"requirements" : "English Proficiency (Spoken)",
"contactEmail" : "https://internshala.com/internship/detail/fundraising-coordinator-internship-work-from-home-job-internship-at-suvidha-foundation1665470285?utm_source=cp_link&referral=web_share"
},
{
"id" : "123",
"companyName " : "KYRO",
"position" : "Software Developement Engineer",
"requirements" : "C,C++,Java,Python,MySQL,Data Structures and Algorithms",
"contactEmail" : "vignesh@kriyators.com"
},
{
"id": "124",
"companyName ": "IBM",
"position": " Software Engineer Intern",
"requirements": "C, C , Java, Python, GoLang, ReactJS, Groovy",
"contactEmail": "ibm2003@gmail.com"
},
{
"id": "125",
"companyName " : "TCS",
"position" : "Test Analyst",
"requirements" : "Basic android, testing, Bug reporting ,WiFi, DRM, Testing",
"contactEmail" : "careers@tcs.com"
},
{
"id" : "126",
"companyName " : "Google",
"position" : "Student Training in Engineering Program, STEP 2023",
"requirements" : "Programming experience in Java,C++ OR Python",
"contactEmail" : "support-in@google.com"
},
{
"id" : "127",
"companyName " : "Dell Technologies",
"position" : "Full Stack Software Engineer - APEX offer Engineering",
"requirements" : "Basic programming knowledge, debugging skills, first-hand experience with server, network ,client technologies",
"contactEmail" : "dell.com"
},
{
"id" : "128",
"companyName " : "DTCC",
"position" : "Software Engineer Intern [2023 Internship Program]",
"requirements" : "Strong problem solving and analytic skills, Good written and oral communication skills",
"contactEmail" : "dtcc.com"
},
{
"id" : "129",
"companyName " : "Shell",
"position" : "Shell Assessed Innternship Programme 2023",
"requirements" : "Possess a degree(Bachelors / Masters), Strong communication and presenation skills",
"contactEmail" : "generalpublicenquiries-in@shell.com"
},
{
"id": "130",
"companyName": "LensKart",
"position": "Full stack Developer",
"requirements": "Html, CSS, JavaScript, react js , mongo DB, ejs, DSA, DBMS",
"contactEmail": "ankitkr124@gmail.com"
},
{
"id" : "131",
"companyName " : "Palo Alto Networks",
"position" : "Security Researcher",
"requirements" : "Degree(Bachelors / Masters),Cybersecurity Certifications",
"contactEmail" : "rnamana@paloaltonetworks.com"
},
{
"id" : "132",
"companyName " : "TryHackMe",
"position" : "Technical Support Engineer",
"requirements" : "IT and Cybersecurity releated Degree or Certification",
"contactEmail" : "jobs@tryhackme.com"
},
{
"id": "133",
"companyName": "Accenture",
"position": "Frontend Developer",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "sanskrutithorve75@gmail.com"
},
{
"id": "134",
"companyName":"CISCO",
"position":"Technical Consulting Engineer (Intern)",
"requirements":"2023 passout",
"contactEmail":"https://jobs.cisco.com/jobs/ProjectDetail/Technical-Consulting-Engineer-Intern-India-UHR/1375370"
},
{
"id" : "135",
"companyName " : "Indecab",
"position" : "Full-Stack Developer",
"requirements" : "Proficiency in Javascript and Node.js. MeteorJS, React, MongoDB is a must.",
"contactEmail" : "jobs@indecab.com"
},
{
"id": "136",
"companyName": "Google",
"position": "Frontend Developer",
"requirements": "Html, CSS, JavaScript",
"contactEmail": "shajahansayyedz@gmail.com"
},
{
"id": "137",
"companyName": "Nerdy Academy",
"position": "Teacher",
"requirements": "Hindi Proficiency (Spoken), Teaching",
"contactEmail": "https://internshala.com/internship/detail/teaching-part-time-job-internship-at-multiple-locations-in-nerdy-academy1664969092?utm_source=cp_link&referral=web_share"
},
{
"id" : "138",
"companyName " : "Namastetu Technologies",
"position" : "Web Designer",
"requirements" : "Deep understanding of HTML, CSS, JQuery , Photoshop , Figma , wordpress , bootstrap , React",
"contactEmail" : "hr@namastetu.com"
},
{
"id" : "139",
"companyName " : "Amazon",
"position" : "Software Support Engineeer",
"requirements" : "Experience: 0-2 Years",
"contactEmail" : " https://bit.ly/3yH7FKE"
},
{
"id" : "140",
"companyName " : "Airbus",
"position" : "Meanstack Developer",
"requirements" : "Node Js+Angular+Sql",
"contactEmail" : "https://www.linkedin.com/in/shouvik4/"
},
{
"id" : "141",
"companyName " : "Airbus",
"position" : "C++ Fullstack Developer",
"requirements" : "HPC+Python+c++ +linux",
"contactEmail" : "https://www.linkedin.com/in/shouvik4/"
},
{
"id": "142",
"companyName": "EdWorks ",
"position": "WordPress web developer ",
"requirements": " HTML , CSS , JAVASCTRIPT, PHP, ELEMENTOR ",
"contactEmail": "shreyash009@gmail.com"
},
{
"id" : "143",
"companyName " : "Bookmyshow",
"position" : "Product designer intership",
"requirements" : "Must have experience in designing customer-facing or consumer-oriented websites or mobile app",