-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaaa.html
More file actions
3247 lines (2594 loc) · 129 KB
/
Copy pathaaa.html
File metadata and controls
3247 lines (2594 loc) · 129 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<!-- saved from url=(0023)https://www.scaler.com/ -->
<html lang="en" class=""><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, shrink-to-fit=no">
<meta name="author" content="Kings Gambit Labs">
<title>Scaler Academy: Accelerate your tech career</title>
<meta name="description" content="The first job-driven online tech-versity - improve tech skills and land a dream job. An InterviewBit product.">
<meta property="og:site_name" content="Scaler Academy">
<meta property="og:title" content="Scaler Academy: Accelerate your tech career">
<meta property="og:description" content="The first job-driven online tech-versity - improve tech skills and land a dream job. An InterviewBit product.">
<meta property="og:image" content="https://assets.scaler.com/assets/scaler/png/scaler-meta-image-fed27fda894abf1a87190ae638e18c9b8417095d963cf27540c90108824b9ec8.png.gz">
<meta property="og:url" content="https://www.scaler.com/">
<link rel="canonical" href="https://www.scaler.com/">
<link rel="icon" type="image/x-icon" href="https://assets.scaler.com/assets/scaler/favicon-b652dfb99111a74c5432b44897a3a277c89f7385c3c0e945e3afcf76ce22971b.ico.gz">
<link rel="stylesheet" media="all" href="./aaa_files/scaler-e12bff8b2bcdbec875b79f236c264e1fc03ba71ab88566b425f766f95366934e.css.gz">
<link rel="stylesheet" media="all" href="./aaa_files/landing-ad91d4c38ea08fb2a12b1808f36eb07c088394748737fc3942de8cb935af4767.css.gz">
<link rel="stylesheet" href="./aaa_files/glider.min.css">
<link rel="stylesheet" href="./aaa_files/plyr.css">
<style>
/* TODO Remove this after `techversity-frontend` is merged */
.plyr--paused .plyr__video-embed iframe {
z-index: 2;
}
.plyr--stopped .plyr__video-embed iframe {
z-index: 1 !important;
}
.plyr.plyr--stopped .plyr__controls {
display: none;
}
</style>
<meta name="csrf-param" content="authenticity_token">
<meta name="csrf-token" content="l60Yko3m4igFTDlaZmW4W00eH+FLioOkA7+SQREbWvM5560MC3zL62T07hOP18dlvcnkMSKPUc3no8bOfh6wjA==">
<script type="text/javascript" id="www-widgetapi-script" src="./aaa_files/www-widgetapi.js.download" async=""></script><script src="./aaa_files/679941092186626" async=""></script><script async="" src="./aaa_files/fbevents.js.download"></script><script type="text/javascript" async="" src="./aaa_files/f.txt"></script><script type="text/javascript" async="" src="./aaa_files/insight.min.js.download"></script><script type="text/javascript" async="" src="./aaa_files/analytics.js.download"></script><script type="text/javascript" async="" src="./aaa_files/hotjar-1579796.js.download"></script><script type="text/javascript" async="" src="./aaa_files/analytics.js.download"></script><script async="" src="./aaa_files/gtm.js.download"></script><script>
var domain = 'scaler.com';
if (domain.indexOf('www.') !== 0) {
domain = 'www.' + domain;
}
if (0 === document.location.href.indexOf("https://")) {
domain = "https://" + domain + "/";
if (0 !== document.location.href.indexOf(domain)) {
var newLocation = document.location.href.replace(/https:\/\/[^\/]+\//, domain);
if (newLocation !== document.location.href) {
document.location.replace(newLocation);
}
}
} else {
domain = "http://" + domain + "/";
if (0 != document.location.href.indexOf(domain)) {
var newLocation = document.location.href.replace(/http:\/\/[^\/]+\//, domain);
if(newLocation !== document.location.href) {
document.location.replace(newLocation);
}
}
}
</script>
<!--It's okay to have this in the head -->
<script>
window.ENV_VARS = {
mode: "production",
application: JSON.parse('{"env_id":"scaler","env_site_name":"Scaler Academy","env_site_nick":"Scaler","env_domain":"scaler.com","env_base_url":"https://www.scaler.com","env_from_mailer":"info@scaler.com","env_reply_to_mailer":"info@scaler.com","env_support_mailer":"support@scaler.com","env_hello_mailer":"hello@scaler.com","env_calendar_organiser":"info1@scaler.com","env_webpush_manifest":"/gcm-manifest-scaler.json"}')
};
</script>
<script>
(function(w,d,s,l,i){w[l]=w[l]||[];w[l].push({'gtm.start':
new Date().getTime(),event:'gtm.js'});var f=d.getElementsByTagName(s)[0],
j=d.createElement(s),dl=l!='dataLayer'?'&l='+l:'';j.async=true;j.src=
'https://www.googletagmanager.com/gtm.js?id='+i+dl;f.parentNode.insertBefore(j,f);
})(window,document,'script','dataLayer','GTM-M94JJN9');
</script>
<script src="./aaa_files/iframe_api" async=""></script><script async="" src="./aaa_files/modules.41541f6a501adb422321.js.download" charset="utf-8"></script><style type="text/css">iframe#_hjRemoteVarsFrame {display: none !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important;}</style><script src="./aaa_files/f(1).txt"></script></head>
<body><div hidden="" id="sprite-plyr"><!--?xml version="1.0" encoding="UTF-8"?--><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><symbol id="plyr-airplay" viewBox="0 0 18 18"><path d="M16 1H2a1 1 0 00-1 1v10a1 1 0 001 1h3v-2H3V3h12v8h-2v2h3a1 1 0 001-1V2a1 1 0 00-1-1z"></path><path d="M4 17h10l-5-6z"></path></symbol><symbol id="plyr-captions-off" viewBox="0 0 18 18"><path d="M1 1c-.6 0-1 .4-1 1v11c0 .6.4 1 1 1h4.6l2.7 2.7c.2.2.4.3.7.3.3 0 .5-.1.7-.3l2.7-2.7H17c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1H1zm4.52 10.15c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41C8.47 4.96 7.46 3.76 5.5 3.76c-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69zm7.57 0c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41c-.28-1.15-1.29-2.35-3.25-2.35-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69z" fill-rule="evenodd" fill-opacity=".5"></path></symbol><symbol id="plyr-captions-on" viewBox="0 0 18 18"><path d="M1 1c-.6 0-1 .4-1 1v11c0 .6.4 1 1 1h4.6l2.7 2.7c.2.2.4.3.7.3.3 0 .5-.1.7-.3l2.7-2.7H17c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1H1zm4.52 10.15c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41C8.47 4.96 7.46 3.76 5.5 3.76c-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69zm7.57 0c1.99 0 3.01-1.32 3.28-2.41l-1.29-.39c-.19.66-.78 1.45-1.99 1.45-1.14 0-2.2-.83-2.2-2.34 0-1.61 1.12-2.37 2.18-2.37 1.23 0 1.78.75 1.95 1.43l1.3-.41c-.28-1.15-1.29-2.35-3.25-2.35-1.9 0-3.61 1.44-3.61 3.7 0 2.26 1.65 3.69 3.63 3.69z" fill-rule="evenodd"></path></symbol><symbol id="plyr-download" viewBox="0 0 18 18"><path d="M9 13c.3 0 .5-.1.7-.3L15.4 7 14 5.6l-4 4V1H8v8.6l-4-4L2.6 7l5.7 5.7c.2.2.4.3.7.3zm-7 2h14v2H2z"></path></symbol><symbol id="plyr-enter-fullscreen" viewBox="0 0 18 18"><path d="M10 3h3.6l-4 4L11 8.4l4-4V8h2V1h-7zM7 9.6l-4 4V10H1v7h7v-2H4.4l4-4z"></path></symbol><symbol id="plyr-exit-fullscreen" viewBox="0 0 18 18"><path d="M1 12h3.6l-4 4L2 17.4l4-4V17h2v-7H1zM16 .6l-4 4V1h-2v7h7V6h-3.6l4-4z"></path></symbol><symbol id="plyr-fast-forward" viewBox="0 0 18 18"><path d="M7.875 7.171L0 1v16l7.875-6.171V17L18 9 7.875 1z"></path></symbol><symbol id="plyr-logo-vimeo" viewBox="0 0 18 18"><path d="M17 5.3c-.1 1.6-1.2 3.7-3.3 6.4-2.2 2.8-4 4.2-5.5 4.2-.9 0-1.7-.9-2.4-2.6C5 10.9 4.4 6 3 6c-.1 0-.5.3-1.2.8l-.8-1c.8-.7 3.5-3.4 4.7-3.5 1.2-.1 2 .7 2.3 2.5.3 2 .8 6.1 1.8 6.1.9 0 2.5-3.4 2.6-4 .1-.9-.3-1.9-2.3-1.1.8-2.6 2.3-3.8 4.5-3.8 1.7.1 2.5 1.2 2.4 3.3z"></path></symbol><symbol id="plyr-logo-youtube" viewBox="0 0 18 18"><path d="M16.8 5.8c-.2-1.3-.8-2.2-2.2-2.4C12.4 3 9 3 9 3s-3.4 0-5.6.4C2 3.6 1.3 4.5 1.2 5.8 1 7.1 1 9 1 9s0 1.9.2 3.2c.2 1.3.8 2.2 2.2 2.4C5.6 15 9 15 9 15s3.4 0 5.6-.4c1.4-.3 2-1.1 2.2-2.4.2-1.3.2-3.2.2-3.2s0-1.9-.2-3.2zM7 12V6l5 3-5 3z"></path></symbol><symbol id="plyr-muted" viewBox="0 0 18 18"><path d="M12.4 12.5l2.1-2.1 2.1 2.1 1.4-1.4L15.9 9 18 6.9l-1.4-1.4-2.1 2.1-2.1-2.1L11 6.9 13.1 9 11 11.1zM3.786 6.008H.714C.286 6.008 0 6.31 0 6.76v4.512c0 .452.286.752.714.752h3.072l4.071 3.858c.5.3 1.143 0 1.143-.602V2.752c0-.601-.643-.977-1.143-.601L3.786 6.008z"></path></symbol><symbol id="plyr-pause" viewBox="0 0 18 18"><path d="M6 1H3c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h3c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1zm6 0c-.6 0-1 .4-1 1v14c0 .6.4 1 1 1h3c.6 0 1-.4 1-1V2c0-.6-.4-1-1-1h-3z"></path></symbol><symbol id="plyr-pip" viewBox="0 0 18 18"><path d="M13.293 3.293L7.022 9.564l1.414 1.414 6.271-6.271L17 7V1h-6z"></path><path d="M13 15H3V5h5V3H2a1 1 0 00-1 1v12a1 1 0 001 1h12a1 1 0 001-1v-6h-2v5z"></path></symbol><symbol id="plyr-play" viewBox="0 0 18 18"><path d="M15.562 8.1L3.87.225c-.818-.562-1.87 0-1.87.9v15.75c0 .9 1.052 1.462 1.87.9L15.563 9.9c.584-.45.584-1.35 0-1.8z"></path></symbol><symbol id="plyr-restart" viewBox="0 0 18 18"><path d="M9.7 1.2l.7 6.4 2.1-2.1c1.9 1.9 1.9 5.1 0 7-.9 1-2.2 1.5-3.5 1.5-1.3 0-2.6-.5-3.5-1.5-1.9-1.9-1.9-5.1 0-7 .6-.6 1.4-1.1 2.3-1.3l-.6-1.9C6 2.6 4.9 3.2 4 4.1 1.3 6.8 1.3 11.2 4 14c1.3 1.3 3.1 2 4.9 2 1.9 0 3.6-.7 4.9-2 2.7-2.7 2.7-7.1 0-9.9L16 1.9l-6.3-.7z"></path></symbol><symbol id="plyr-rewind" viewBox="0 0 18 18"><path d="M10.125 1L0 9l10.125 8v-6.171L18 17V1l-7.875 6.171z"></path></symbol><symbol id="plyr-settings" viewBox="0 0 18 18"><path d="M16.135 7.784a2 2 0 01-1.23-2.969c.322-.536.225-.998-.094-1.316l-.31-.31c-.318-.318-.78-.415-1.316-.094a2 2 0 01-2.969-1.23C10.065 1.258 9.669 1 9.219 1h-.438c-.45 0-.845.258-.997.865a2 2 0 01-2.969 1.23c-.536-.322-.999-.225-1.317.093l-.31.31c-.318.318-.415.781-.093 1.317a2 2 0 01-1.23 2.969C1.26 7.935 1 8.33 1 8.781v.438c0 .45.258.845.865.997a2 2 0 011.23 2.969c-.322.536-.225.998.094 1.316l.31.31c.319.319.782.415 1.316.094a2 2 0 012.969 1.23c.151.607.547.865.997.865h.438c.45 0 .845-.258.997-.865a2 2 0 012.969-1.23c.535.321.997.225 1.316-.094l.31-.31c.318-.318.415-.781.094-1.316a2 2 0 011.23-2.969c.607-.151.865-.547.865-.997v-.438c0-.451-.26-.846-.865-.997zM9 12a3 3 0 110-6 3 3 0 010 6z"></path></symbol><symbol id="plyr-volume" viewBox="0 0 18 18"><path d="M15.6 3.3c-.4-.4-1-.4-1.4 0-.4.4-.4 1 0 1.4C15.4 5.9 16 7.4 16 9c0 1.6-.6 3.1-1.8 4.3-.4.4-.4 1 0 1.4.2.2.5.3.7.3.3 0 .5-.1.7-.3C17.1 13.2 18 11.2 18 9s-.9-4.2-2.4-5.7z"></path><path d="M11.282 5.282a.909.909 0 000 1.316c.735.735.995 1.458.995 2.402 0 .936-.425 1.917-.995 2.487a.909.909 0 000 1.316c.145.145.636.262 1.018.156a.725.725 0 00.298-.156C13.773 11.733 14.13 10.16 14.13 9c0-.17-.002-.34-.011-.51-.053-.992-.319-2.005-1.522-3.208a.909.909 0 00-1.316 0zm-7.496.726H.714C.286 6.008 0 6.31 0 6.76v4.512c0 .452.286.752.714.752h3.072l4.071 3.858c.5.3 1.143 0 1.143-.602V2.752c0-.601-.643-.977-1.143-.601L3.786 6.008z"></path></symbol></svg></div>
<script>
function closeNotification(event) {
var target = event.target || event.srcElement;
var notificationEl = target.closest('.sr-notification');
notificationEl && notificationEl.remove()
}
</script>
<div class="main-site-header__header-spacer" style="width: 100%; height: 70px;"></div><header id="main-site-header" class="header header--sticky slide-in-down">
<div class="header__container">
<!-- Brand Logo -->
<div class="header__brand">
<a href="https://www.scaler.com/">
<img class="header__logo" alt="scaler logo" src="./aaa_files/logo-by-ib-056ab22f1a6547d6d9a6896f0048a4cb5d4c6cc7bfa6f2a0f27bb8e265c95bd3.svg.gz">
</a>
</div>
<!-- For user-category-switch -->
<div class="user-switch">
<a class="sr-dropdown-trigger user-switch__trigger" data-action="dropdown-toggle" data-target="user-switch-dropdown">
<img class="user-switch__icon--small" src="./aaa_files/professional-icon-1b63db0f9f7d22f7545c2c5f83e86f541fcf240e984c9ab30a0ad8a1950e304c.svg.gz">
<span class="account-button__text dark bold">
Professional
</span>
<i class="icon-chevron-down"></i>
</a>
<div id="user-switch-dropdown-backdrop" class="sr-dropdown-backdrop">
</div>
<div id="user-switch-dropdown" data-alignment="center" class="sr-dropdown user-switch__dropdown sr-dropdown--arrow-center drop-in-reverse" style="top: -699px; min-width: 163px; left: 115.75px; right: auto;">
<div class="sr-dropdown__content user-switch__options">
<div class="user-switch__section">
Please select an option below so that we can tailor the content best suited for you.
</div>
<a class="user-switch__section" href="https://www.scaler.com/student/?switched=true">
<div class="user-switch__section--left"></div>
<div class="user-switch__section--right">
<div class="user-switch__section--heading">
<img class="user-switch__icon" src="./aaa_files/student-icon-2ba17c79d77e96bc87c2edc940efd7c2402ea2bb1fc96fa176985a8ec93f9827.svg.gz">
<h4 class="bolder">I am a Student</h4>
</div>
<p class="">
Individuals studying in college/universities
</p>
<div class="user-switch__section__points">
<div class="user-switch__section__points--left">
Grad Year:<br>
SDE exp:
</div>
<div class="user-switch__section__points--right">
2020 and above<br>
< 6 Months
</div>
</div>
</div>
</a>
<a class="user-switch__section" href="https://www.scaler.com/#">
<i class="icon-check user-switch__section--check"></i>
<div class="user-switch__section--right">
<div class="user-switch__section--heading">
<img class="user-switch__icon" src="./aaa_files/professional-icon-1b63db0f9f7d22f7545c2c5f83e86f541fcf240e984c9ab30a0ad8a1950e304c.svg.gz">
<h4 class="bolder">I am a Working Professional</h4>
</div>
<p class="">
Individuals working fulltime/partime<br>
</p>
<div class="user-switch__section__points">
<div class="user-switch__section__points--left">
Grad Year:<br>
SDE exp:
</div>
<div class="user-switch__section__points--right">
No bar<br>
6+ Months
</div>
</div>
</div>
</a>
</div>
</div>
</div>
<div class="header__content">
<!-- Nav Links -->
<div class="header__nav">
<a href="https://www.scaler.com/#success-stories" data-action="smooth-scroll" class="header__nav-item">
Student Stories
</a>
<a href="https://www.scaler.com/#curriculum" data-action="smooth-scroll" class="header__nav-item">
Curriculum
</a>
<a href="https://www.scaler.com/#community" data-action="smooth-scroll" class="header__nav-item">
Community
</a>
<a href="https://www.scaler.com/#payment" data-action="smooth-scroll" class="header__nav-item">
Payment Plans
</a>
<a href="https://www.scaler.com/#faq" data-action="smooth-scroll" class="header__nav-item">
FAQ
</a>
</div>
<!-- Account related stuff -->
<div class="header__right">
<div class="header-apply" style="display: block;">
<a class="apply-button sr-button is-rounded uppercase bold m-r-10 m-b-10 secondary is-flat" href="https://www.scaler.com/apply/" data-action="" data-gtm-placement="header">
Apply Now
</a>
</div>
<div class="auth-options">
<a href="https://www.scaler.com/users/sign_in/" class="sr-button primary is-inverted is-rounded auth-options__option">
Log in
</a>
</div>
</div>
</div>
<!-- Burger menu button -->
<div class="header__burger-button">
<div class="burger">
<div class="burger__line"></div>
<div class="burger__line"></div>
<div class="burger__line"></div>
</div>
</div>
</div>
<div class="header__backdrop">
</div>
<!-- Burger menu content -->
<div class="header__burger">
<!-- Nav Links -->
<div class="header__nav">
<a href="https://www.scaler.com/#success-stories" data-action="smooth-scroll" class="header__nav-item">
Student Stories
</a>
<a href="https://www.scaler.com/#curriculum" data-action="smooth-scroll" class="header__nav-item">
Curriculum
</a>
<a href="https://www.scaler.com/#community" data-action="smooth-scroll" class="header__nav-item">
Community
</a>
<a href="https://www.scaler.com/#payment" data-action="smooth-scroll" class="header__nav-item">
Payment Plans
</a>
<a href="https://www.scaler.com/#faq" data-action="smooth-scroll" class="header__nav-item">
FAQ
</a>
</div>
<div class="header-apply" style="display: block;">
<a class="apply-button sr-button is-rounded uppercase bold m-r-10 m-b-10 secondary is-flat" href="https://www.scaler.com/apply/" data-action="" data-gtm-placement="header">
Apply Now
</a>
</div>
<div class="auth-options">
<a href="https://www.scaler.com/users/sign_in/" class="sr-button primary is-inverted is-rounded auth-options__option">
Log in
</a>
</div>
</div>
</header>
<div class="landing-page">
<!-- header banner -->
<section class="banner banner--bp-mobile">
<div class="banner__section banner__section--left" style="background-image: url(https://assets.scaler.com/assets/scaler/svg/banner-1-e7a302b19b7d11daa0974eac0e72b9faa4b2be48c1a61ef8e0237e842145537f.svg.gz);">
</div>
<div class="banner__section banner__section--right" style="background-image: url(https://assets.scaler.com/assets/scaler/jpeg/banner-2-f722e8c942e0fe3b78b8b73142fb54b920ef5357d2eef8be4848c14bd2f30fea.jpg.gz);">
</div>
<div class="banner__content">
<div class="sr-container">
<div class="banner__desc-container">
<h1 class="banner__header">
Accelerate Your Tech Career
</h1>
<div class="banner__desc">
Join Scaler Academy, a 6 month immersive online program that helps you develop your coding skills and gets you your dream job at no upfront cost.
</div>
<div class="banner__buttons">
<a class="apply-button sr-button is-rounded uppercase bold m-r-10 m-b-10 secondary " href="https://www.scaler.com/apply/" data-action="" data-gtm-placement="banner">
Apply Now
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Alumni working in companies -->
<section id="alumni" class="section alumni ">
<div class="sr-container">
<div class="section-body">
<div class="alumni__header">
<div class="bold">Our alumni work at</div>
<div class="alumni__global">
<i class="icon-globe"></i>
<div>We also refer our students to Europe and South East Asia</div>
</div>
</div>
<div class="alumni__companies">
<div class="alumni__company">
<span class="companies amazon one-third hide-in-tablet"></span>
<span class="companies amazon one-fifth show-in-tablet"></span>
</div>
<div class="alumni__company">
<span class="companies goldman one-third hide-in-tablet"></span>
<span class="companies goldman one-fifth show-in-tablet"></span>
</div>
<div class="alumni__company">
<span class="companies razorpay one-third hide-in-tablet"></span>
<span class="companies razorpay one-fifth show-in-tablet"></span>
</div>
<div class="alumni__company">
<span class="companies flipkart one-third hide-in-tablet"></span>
<span class="companies flipkart one-fifth show-in-tablet"></span>
</div>
<div class="alumni__company">
<span class="companies dream11 one-third hide-in-tablet"></span>
<span class="companies dream11 one-fifth show-in-tablet"></span>
</div>
<div class="alumni__company">
<span class="companies cisco one-third hide-in-tablet"></span>
<span class="companies cisco one-fifth show-in-tablet"></span>
</div>
<div class="alumni__company">
<span class="companies oyo one-third hide-in-tablet"></span>
<span class="companies oyo one-fifth show-in-tablet"></span>
</div>
</div>
<div class="alumni__global alumni__global--mobile">
<i class="icon-globe"></i>
<div>We also refer our students to Europe and South East Asia</div>
</div>
</div>
</div>
</section>
<!-- Tesimonials -->
<section id="success-stories" class="section testimonials is-v-padded is-alternate">
<div class="sr-container">
<div class="section-header ">
<div class="section-header__content">
<h2 class="section-header__title">
Student Stories
</h2>
</div>
</div>
<div class="section-body">
<div class="testimonials__items">
<div class="story story--compact">
<div class="story__body">
<div class="story__avatar">
<img alt="Naman Bhalla Avatar" src="./aaa_files/naman-439f6ae6cebade1916cc3e22c2503cbdc21bce80303d0d3bd0c4e33471e27d15.jpg.gz">
<div class="story__overlay">
<div class="story__name">
Naman Bhalla
</div>
</div>
</div>
<div class="story__attraction">
<div class="story__career">
<div class="story__before">
Tier 3 College
</div>
<div class="story__arrow">
<i class="icon-arrow-right"></i>
</div>
<div class="story__companies">
<div class="story__company">
<span class="companies hide-in-tablet google one-fourth">
</span>
<span class="companies show-in-tablet google one-fifth">
</span>
</div>
</div>
</div>
</div>
<div class="story__writeup">
<div class="story__title">
From Tier 3 College to Google
</div>
<div class="story__description story__description--large story__description--expanded">
I have been privileged to have been guided by people like Anshuman, Abhimanyu and looking forward to use these learnings while building a strong career ahead! Getting to learn System Design topics from people having worked at top tech companies and algorithms from people who have been at ICPC World Finals is an altogether different experience. The guest lectures and mentorship by people at top positions at companies like Google itself provides a clear idea of how to build a great career.
</div>
</div>
</div>
</div>
<div class="story story--compact">
<div class="story__body">
<div class="story__avatar">
<img alt="Bibhu Prasad Pala Avatar" src="./aaa_files/bibhu-53b18472f3ea5a4d2201850e83f3e77fe6ac66e087c3e560fd69476044edc12f.jpg.gz">
<div class="story__overlay">
<div class="story__name">
Bibhu Prasad Pala
</div>
</div>
</div>
<div class="story__attraction">
<div class="story__career">
<div class="story__before">
Tier 2 College
</div>
<div class="story__arrow">
<i class="icon-arrow-right"></i>
</div>
<div class="story__companies">
<div class="story__company">
<span class="companies hide-in-tablet amazon one-fourth">
</span>
<span class="companies show-in-tablet amazon one-fifth">
</span>
</div>
</div>
</div>
</div>
<div class="story__writeup">
<div class="story__title">
Thanks to Scaler I landed my dream job
</div>
<div class="story__description story__description--large story__description--expanded">
While interning as a Software Engineer I was looking to make a move in my career. I heard about Scaler Academy (IB Academy): learn new skills, pay nothing upfront and get referred to the dream companies! I decided to quit my job, and focus on the opportunities. Everyone said I was making a mistake, but I trusted myself and the team at Scaler. On the last day of my old work I received an offer from Amazon!
</div>
</div>
</div>
</div>
<div class="story story--compact">
<div class="story__body">
<div class="story__avatar">
<img alt="Aditya Nihal Kumar Singh Avatar" src="./aaa_files/aditya-31d37b906528a4567be3dde43be2e0931d8cd9cfd48ccdfeba24aa6f15d6f27b.jpg.gz">
<div class="story__overlay">
<div class="story__name">
Aditya Nihal Kumar Singh
</div>
</div>
</div>
<div class="story__attraction">
<div class="story__career">
<div class="story__before">
Tier 2 College
</div>
<div class="story__arrow">
<i class="icon-arrow-right"></i>
</div>
<div class="story__companies">
<div class="story__company">
<span class="companies hide-in-tablet mindtickle one-fourth">
</span>
<span class="companies show-in-tablet mindtickle one-fifth">
</span>
</div>
</div>
</div>
</div>
<div class="story__writeup">
<div class="story__title">
Scaler Academy proved to be the turning point of my career
</div>
<div class="story__description story__description--large story__description--expanded">
Back in March 2019, I received an email about the Scaler Academy (IB Academy). I immediately felt that I should be a part of, and it proved to be the turning point of my career. I was referred to so many companies that I stopped being afraid of interviews. Midway through the program I got referred and accepted an offer from Mindtickle. Scaler has played a big role in my pursuit of becoming a 10x engineer.
</div>
</div>
</div>
</div>
</div>
<div class="success-banner">
<div class="success-banner__icon">
<img alt="Success Icon" src="./aaa_files/mountain-964e330f6ff5703fdc73bf76ee82d27fc65311a0e19811b8c0697c9c2877470a.png.gz">
</div>
<div class="success-banner__text">
Scaler has empowered many students like you.
</div>
<div class="success-banner__action">
<a href="https://www.scaler.com/success-stories" class="sr-button is-inverted is-rounded bold uppercase success-stories-link" data-gtm-placement="read-more">
Read More Stories
</a>
</div>
</div>
</div>
</div>
</section>
<!-- Our Motivation -->
<section id="motivation" class="section motivation ">
<div class="sr-container">
<div class="section-header ">
<div class="section-header__content">
<h2 class="section-header__title">
Why we do, what we do
</h2>
</div>
</div>
<div class="section-body">
<div class="motivation__sections">
<div class="motivation__section">
<div class="motivation__video-container">
<div class="motivation__video">
<div tabindex="0" class="plyr plyr--full-ui plyr--video plyr--youtube plyr--fullscreen-enabled plyr--paused plyr--stopped plyr__poster-enabled"><div class="plyr__controls"><button class="plyr__controls__item plyr__control" type="button" data-plyr="play" aria-label="Play, Scaler Academy: Why we do, what we do."><svg class="icon--pressed" role="presentation" focusable="false"><use href="#plyr-pause"></use></svg><svg class="icon--not-pressed" role="presentation" focusable="false"><use href="#plyr-play"></use></svg><span class="label--pressed plyr__sr-only">Pause</span><span class="label--not-pressed plyr__sr-only">Play</span></button><div class="plyr__controls__item plyr__progress__container"><div class="plyr__progress"><input data-plyr="seek" type="range" min="0" max="100" step="0.01" value="0" autocomplete="off" role="slider" aria-label="Seek" aria-valuemin="0" aria-valuemax="100" aria-valuenow="0" id="plyr-seek-6259" style="--value:0%;"><progress class="plyr__progress__buffer" min="0" max="100" value="0" role="progressbar" aria-hidden="true">% buffered</progress><span class="plyr__tooltip">00:00</span></div></div><div class="plyr__controls__item plyr__time--current plyr__time" aria-label="Current time">-22:51</div><div class="plyr__controls__item plyr__volume"><button type="button" class="plyr__control" data-plyr="mute"><svg class="icon--pressed" role="presentation" focusable="false"><use href="#plyr-muted"></use></svg><svg class="icon--not-pressed" role="presentation" focusable="false"><use href="#plyr-volume"></use></svg><span class="label--pressed plyr__sr-only">Unmute</span><span class="label--not-pressed plyr__sr-only">Mute</span></button><input data-plyr="volume" type="range" min="0" max="1" step="0.05" value="1" autocomplete="off" role="slider" aria-label="Volume" aria-valuemin="0" aria-valuemax="100" aria-valuenow="100" id="plyr-volume-6259" aria-valuetext="100.0%" style="--value:100%;"></div><button class="plyr__controls__item plyr__control" type="button" data-plyr="captions"><svg class="icon--pressed" role="presentation" focusable="false"><use href="#plyr-captions-on"></use></svg><svg class="icon--not-pressed" role="presentation" focusable="false"><use href="#plyr-captions-off"></use></svg><span class="label--pressed plyr__sr-only">Disable captions</span><span class="label--not-pressed plyr__sr-only">Enable captions</span></button><div class="plyr__controls__item plyr__menu"><button aria-haspopup="true" aria-controls="plyr-settings-6259" aria-expanded="false" type="button" class="plyr__control" data-plyr="settings"><svg role="presentation" focusable="false"><use href="#plyr-settings"></use></svg><span class="plyr__sr-only">Settings</span></button><div class="plyr__menu__container" id="plyr-settings-6259" hidden=""><div><div id="plyr-settings-6259-home"><div role="menu"><button data-plyr="settings" type="button" class="plyr__control plyr__control--forward" role="menuitem" aria-haspopup="true" hidden=""><span>Captions<span class="plyr__menu__value">Disabled</span></span></button><button data-plyr="settings" type="button" class="plyr__control plyr__control--forward" role="menuitem" aria-haspopup="true" hidden=""><span>Quality<span class="plyr__menu__value">undefined</span></span></button><button data-plyr="settings" type="button" class="plyr__control plyr__control--forward" role="menuitem" aria-haspopup="true"><span>Speed<span class="plyr__menu__value">Normal</span></span></button></div></div><div id="plyr-settings-6259-captions" hidden=""><button type="button" class="plyr__control plyr__control--back"><span aria-hidden="true">Captions</span><span class="plyr__sr-only">Go back to previous menu</span></button><div role="menu"></div></div><div id="plyr-settings-6259-quality" hidden=""><button type="button" class="plyr__control plyr__control--back"><span aria-hidden="true">Quality</span><span class="plyr__sr-only">Go back to previous menu</span></button><div role="menu"></div></div><div id="plyr-settings-6259-speed" hidden=""><button type="button" class="plyr__control plyr__control--back"><span aria-hidden="true">Speed</span><span class="plyr__sr-only">Go back to previous menu</span></button><div role="menu"><button data-plyr="speed" type="button" role="menuitemradio" class="plyr__control" aria-checked="false" value="0.5"><span>0.5×</span></button><button data-plyr="speed" type="button" role="menuitemradio" class="plyr__control" aria-checked="false" value="0.75"><span>0.75×</span></button><button data-plyr="speed" type="button" role="menuitemradio" class="plyr__control" aria-checked="true" value="1"><span>Normal</span></button><button data-plyr="speed" type="button" role="menuitemradio" class="plyr__control" aria-checked="false" value="1.25"><span>1.25×</span></button><button data-plyr="speed" type="button" role="menuitemradio" class="plyr__control" aria-checked="false" value="1.5"><span>1.5×</span></button><button data-plyr="speed" type="button" role="menuitemradio" class="plyr__control" aria-checked="false" value="1.75"><span>1.75×</span></button><button data-plyr="speed" type="button" role="menuitemradio" class="plyr__control" aria-checked="false" value="2"><span>2×</span></button></div></div></div></div></div><button class="plyr__controls__item plyr__control" type="button" data-plyr="pip"><svg role="presentation" focusable="false"><use href="#plyr-pip"></use></svg><span class="plyr__sr-only">PIP</span></button><button class="plyr__controls__item plyr__control" type="button" data-plyr="fullscreen"><svg class="icon--pressed" role="presentation" focusable="false"><use href="#plyr-exit-fullscreen"></use></svg><svg class="icon--not-pressed" role="presentation" focusable="false"><use href="#plyr-enter-fullscreen"></use></svg><span class="label--pressed plyr__sr-only">Exit fullscreen</span><span class="label--not-pressed plyr__sr-only">Enter fullscreen</span></button></div><div class="plyr__video-wrapper plyr__video-embed" style="padding-bottom: 56.25%;"><iframe id="youtube-4953" frameborder="0" allowfullscreen="1" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" title="Player for Scaler Academy: Why we do, what we do." width="640" height="360" src="./aaa_files/faGIKYparWA.html"></iframe><div class="plyr__poster" style="background-image: url("https://i.ytimg.com/vi/faGIKYparWA/maxresdefault.jpg");"></div></div><button type="button" class="plyr__control plyr__control--overlaid" data-plyr="play" aria-label="Play, Scaler Academy: Why we do, what we do."><svg role="presentation" focusable="false"><use href="#plyr-play"></use></svg><span class="plyr__sr-only">Play</span></button></div>
</div>
</div>
</div>
<div class="motivation__section">
Scaler Academy is an attempt to create a parallel tech-versity. A platform for revamping your coding skills that helps bridge the gap between the college education and the industry requirements. Our prime aim remains educating individuals irrespective of their educational, geographical or financial background. We upskill you to be able to perform your best, as we believe, your capability determines your job security. Our utmost emphasis is on the quality of content and the learning experience. At, Scaler Academy, we focus on empowering aspiring coders by upskilling them as a result of which they are sought after by the top product companies
</div>
</div>
</div>
</div>
</section>
<!-- Success Goal -->
<section id="goals" class="section goal is-alternate is-v-padded">
<div class="sr-container">
<div class="section-header ">
<div class="section-header__content">
<h2 class="section-header__title">
Your Success is Our Goal
</h2>
<h4 class="section-header__subtitle">
We are focused on helping you unlock your true potential and more.
</h4>
</div>
</div>
<div class="section-body">
<div class="goal__blocks">
<div class="goal__block">
<div class="goal__block-row">
<img class="goal__image" src="./aaa_files/salary-range-4aa985cdcb16cc685509469cbf6927912a8e3538a6542b597c78f6e3b2ea7f43.svg.gz" alt="18-35 LPA">
<div class="goal__block-body">
<h2 class="bolder">18-35 LPA</h2>
<h4>Scaler Academy Alumni Salary Range</h4>
</div>
</div>
<div class="goal__block-footer">
<div class="goal__companies">
</div>
</div>
</div>
<div class="goal__block">
<div class="goal__block-row">
<img class="goal__image" src="./aaa_files/salary-jump-ba08809b21321b24fe3597c1b17830a798087c5a1b918afce195caddba9226de.svg.gz" alt="300%">
<div class="goal__block-body">
<h2 class="bolder">300%</h2>
<h4>Average Jump in Alumni Salaries</h4>
</div>
</div>
<div class="goal__block-footer">
<div class="goal__companies">
</div>
</div>
</div>
<div class="goal__block">
<div class="goal__block-row">
<img class="goal__image" src="./aaa_files/teaching-support-d2d7500beb4d386ad5a36731c48ff6b780b538e517aa952f25c8dd97fb633a45.svg.gz" alt="300+">
<div class="goal__block-body">
<h2 class="bolder">300+</h2>
<h4>Teaching Faculty & Support Staff from</h4>
</div>
</div>
<div class="goal__block-footer">
<div class="goal__companies">
<div class="goal__company">
<span class="companies one-fifth google"></span>
</div>
<div class="goal__company">
<span class="companies one-fifth facebook"></span>
</div>
<div class="goal__company">
<span class="companies one-fifth amazon"></span>
</div>
<div class="goal__company">
<span class="companies one-fifth uber"></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- How it works? -->
<section id="process" class="section is-v-padded process ">
<div class="sr-container">
<div class="section-header ">
<div class="section-header__content">
<h2 class="section-header__title">
How it works
</h2>
</div>
</div>
<div class="section-body">
<div class="process__blocks">
<div class="process__block">
<div class="process__header">
<div class="process__block-header">
<div class="h1 bolder">01</div>
</div>
<div class="h3 process__icon"><i class="icon-double-arrow-right"></i></div>
<div class="process__gradient"></div>
<div class="process__image">
<img src="./aaa_files/process-shuttle-d2f038604b7a0bf672da0ee94e45cd80fb17d64d50c95e4ba75b673ef704a91a.svg.gz">
</div>
</div>
<div class="process__block-subheader">
<h3 class="bolder">Apply to Scaler Academy</h3>
</div>
<div class="process__block-points">
<div class="process-arrow"> ➤ </div>
<div class="process-point">Register on the website by filling in your details.</div>
</div>
<div class="process__block-points">
<div class="process-arrow"> ➤ </div>
<div class="process-point">Write the online entrance test (Mandatory).</div>
</div>
<div class="process__block-points">
<div class="process-arrow"> ➤ </div>
<div class="process-point">Results will be announced on the website.</div>
</div>
<div class="process__companies">
</div>
</div>
<div class="process__block">
<div class="process__header">
<div class="process__block-header">
<div class="h1 bolder">02</div>
</div>
<div class="h3 process__icon"><i class="icon-double-arrow-right"></i></div>
<div class="process__gradient"></div>
<div class="process__image">
<img src="./aaa_files/process-mentee-f92bbc3c590da64bbc3a0b067960029d6c69e03d79056acd18388dd5a4743358.svg.gz">
</div>
</div>
<div class="process__block-subheader">
<h3 class="bolder">Attend live interactive classes</h3>
</div>
<div class="process__block-points">
<div class="process-arrow"> ➤ </div>
<div class="process-point">Live interactive online classes, from the comfort of your home, three days a week.</div>
</div>
<div class="process__block-points">
<div class="process-arrow"> ➤ </div>
<div class="process-point">Solidify your learning by doing regular assignments with our <b>Teaching Assistants.</b></div>
</div>
<div class="process__block-points">
<div class="process-arrow"> ➤ </div>
<div class="process-point">Get regular guidance and support from our <b>Mentors</b> - Engineers working at top tech companies.</div>
</div>
<div class="process__companies">
<div class="process__company">
<span class="companies one-fifth google"></span>
</div>
<div class="process__company">
<span class="companies one-fifth facebook"></span>
</div>
<div class="process__company">
<span class="companies one-fifth amazon"></span>
</div>
</div>
</div>
<div class="process__block">
<div class="process__header">
<div class="process__block-header">
<div class="h1 bolder">03</div>
</div>
<div class="h3 process__icon"><i class="icon-double-arrow-right"></i></div>
<div class="process__gradient"></div>
<div class="process__image">
<img src="./aaa_files/process-flag-f5e255852b42ee072cc722dc564c0f54ef879968fd2440647dd2b512ed28e5a9.svg.gz">
</div>
</div>
<div class="process__block-subheader">
<h3 class="bolder">Get your dream tech career</h3>
</div>
<div class="process__block-points">
<div class="process-arrow"> ➤ </div>
<div class="process-point">Once you're job-ready, we start referring you to the top tech companies.</div>
</div>
<div class="process__block-points">
<div class="process-arrow"> ➤ </div>
<div class="process-point">Get confident by attending mock interviews with your Mentors.</div>
</div>
<div class="process__block-points">
<div class="process-arrow"> ➤ </div>
<div class="process-point">Our Students Success Managers will assist you throughout the hiring process until you land a top job. See our <a class="success-stories-link link" data-gtm-placement="how-it-works" href="https://www.scaler.com/success-stories">200+ success stories here.</a></div>
</div>
<div class="process__companies">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- Course Curriculum -->
<section id="curriculum" class="section course">
<div class="sr-container">
<div class="section-header course__header">
<div class="section-header__content">
<h2 class="section-header__title">
Industry Tested Course Curriculum
</h2>
<h4 class="section-header__subtitle">
We have reverse engineered our curriculum by talking to the best companies and understanding what skills the industry needs the most right now.
</h4>
</div>
</div> <div class="section-body">
<div class="course__content">
<div class="show-in-tablet">
<div class="curriculum">
<div class="curriculum__step">
<a class="accordion-trigger curriculum__heading" data-action="accordion-toggle" data-target="curriculum-step-1">
<div class="curriculum__title bold h3 no-mgn-b">
Week 01-12
</div>
<i class="icon-double-arrow-down"></i>
</a>
<div class="accordion curriculum__accordion" id="curriculum-step-1" style="height: 0px;">
<div class="curriculum__accordion-inner">
<div class="curriculum-step">
<div class="curriculum-step__track-items">
<div class="curriculum-track-row ">
<div class="curriculum-track-row__item">
<div class="curriculum-course-item curriculum-course-item--common curriculum-course-item--connected ">
<div class="curriculum-course-item__content">
<h4 class="bold dark no-mgn-b">
Week 01-09
</h4>
</div>
</div> </div>
</div>
<div class="curriculum-track-row">
<div class="curriculum-track-row__item">
<div class="curriculum-course-item curriculum-course-item--common curriculum-course-item--connected ">
<div class="curriculum-course-item__content">
Data Structure/ Algorithms
</div>
</div> </div>
</div>
<div class="curriculum-track-row ">
<div class="curriculum-track-row__item">
<div class="curriculum-course-item curriculum-course-item--common curriculum-course-item--connected ">
<div class="curriculum-course-item__content">
<h4 class="bold dark no-mgn-b">
Week 10-12
</h4>
</div>
</div> </div>
</div>
<div class="curriculum-track-row">
<div class="curriculum-track-row__item">
<div class="curriculum-course-item curriculum-course-item--common ">
<div class="curriculum-course-item__content">
High Level Design
</div>
</div> </div>
</div>
</div>
</div>
</div>
</div> </div>
<div class="curriculum__step">
<a class="accordion-trigger curriculum__heading" data-action="accordion-toggle" data-target="curriculum-step-2">
<div class="curriculum__title bold h3 no-mgn-b">
Get Referred
</div>
<i class="icon-double-arrow-down"></i>
</a>
<div class="accordion curriculum__accordion" id="curriculum-step-2" style="height: 0px;">
<div class="curriculum__accordion-inner">
<div class="curriculum-step">
<div class="curriculum-step__subtitle">
Once you are enrolled with us, we will keep referring you during and after the courses as well.
</div>
<div class="curriculum-step__companies">
<div class="curriculum-companies ">
<div class="curriculum-companies__header">
Startups
</div>
<div class="curriculum-companies__body">
<div class="curriculum-companies__company">
<div class="companies one-sixth toppr">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth mindtickle">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth razorpay">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth curefit">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth onemg">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth zeta">
</div>
</div>
</div>
</div>
<div class="curriculum-companies ">
<div class="curriculum-companies__header">
Top MNCs
</div>
<div class="curriculum-companies__body">
<div class="curriculum-companies__company">
<div class="companies one-sixth microsoft">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth flipkart">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth zomato">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth deshaw">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth zenefits">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth sapient">
</div>
</div>
</div>
</div>
<div class="curriculum-companies ">
<div class="curriculum-companies__header">
Dream Companies
</div>
<div class="curriculum-companies__body">
<div class="curriculum-companies__company">
<div class="companies one-sixth google">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth facebook">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth amazon">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth uber">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth booking">
</div>
</div>
<div class="curriculum-companies__company">
<div class="companies one-sixth intuit">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div> </div>
<div class="curriculum__step">
<a class="accordion-trigger curriculum__heading" data-action="accordion-toggle" data-target="curriculum-step-3">
<div class="curriculum__title bold h3 no-mgn-b">
Week 13-15
</div>
<i class="icon-double-arrow-down"></i>
</a>
<div class="accordion curriculum__accordion" id="curriculum-step-3" style="height: 0px;">
<div class="curriculum__accordion-inner">
<div class="curriculum-step">
<div class="curriculum-step__track-items">