-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSoftwareEngineering1Article1.html
More file actions
1738 lines (1033 loc) · 149 KB
/
SoftwareEngineering1Article1.html
File metadata and controls
1738 lines (1033 loc) · 149 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>
<html lang="en-US">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name='robots' content='max-image-preview:large' />
<title>How to Become a Software Engineer? – LEarn</title>
<link rel='dns-prefetch' href='//secure.gravatar.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//widgets.wp.com' />
<link rel='dns-prefetch' href='//jetpack.wordpress.com' />
<link rel='dns-prefetch' href='//public-api.wordpress.com' />
<link rel='dns-prefetch' href='//0.gravatar.com' />
<link rel='dns-prefetch' href='//1.gravatar.com' />
<link rel='dns-prefetch' href='//2.gravatar.com' />
<link rel='dns-prefetch' href='//i0.wp.com' />
<link rel='dns-prefetch' href='//c0.wp.com' />
<link rel="alternate" type="application/rss+xml" title="LEarn » Feed" href="https://elearn767.wpcomstaging.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="LEarn » Comments Feed" href="https://elearn767.wpcomstaging.com/comments/feed/" />
<link rel="alternate" type="application/rss+xml" title="LEarn » How to Become a Software Engineer? Comments Feed" href="https://elearn767.wpcomstaging.com/2024/01/26/how-to-become-a-software-engineer/feed/" />
<script>
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/14.0.0\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/elearn767.wpcomstaging.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.4.2"}};
/*! This file is auto-generated */
!function(i,n){var o,s,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),r=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===r[t]})}function u(e,t,n){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\uddfa\ud83c\uddf3","\ud83c\uddfa\u200b\ud83c\uddf3")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!n(e,"\ud83e\udef1\ud83c\udffb\u200d\ud83e\udef2\ud83c\udfff","\ud83e\udef1\ud83c\udffb\u200b\ud83e\udef2\ud83c\udfff")}return!1}function f(e,t,n){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):i.createElement("canvas"),a=r.getContext("2d",{willReadFrequently:!0}),o=(a.textBaseline="top",a.font="600 32px Arial",{});return e.forEach(function(e){o[e]=t(a,e,n)}),o}function t(e){var t=i.createElement("script");t.src=e,t.defer=!0,i.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",s=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){i.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+f.toString()+"("+[JSON.stringify(s),u.toString(),p.toString()].join(",")+"));",r=new Blob([e],{type:"text/javascript"}),a=new Worker(URL.createObjectURL(r),{name:"wpTestEmojiSupports"});return void(a.onmessage=function(e){c(n=e.data),a.terminate(),t(n)})}catch(e){}c(n=f(s,u,p))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
</script>
<link rel='stylesheet' id='all-css-152d70c6c43351b501c8fc8c85d2a4cf' href='https://elearn767.wpcomstaging.com/_static/??-eJytVe3a0yAMvSEZ75zTXz5eik8KWRcHBQls1qs3dJ17na5O3J+SEHLIxyE9RWXCkHHIOrrS08DaFM7Bq4Q9cU6QKQxqF5JXXSFnMakT5b3i0nlirkYPA/SYNFhPgzbM2kPGROAUCTivZOvN6feLvmCOYA7aB1scsk7oxM+qGDjfaPcg+iJqh6nXU3C6c8EclKMuQRrPGusBjtRPeWjOo8P/AiMvuT4Bh4OpBXI0VGUJ7hQtsSnfdd6jlzJZ3EFx+UEnYEapZt5TklpCyqPeyVkFJ+TgUW1X683qZeraDlbSwEcRq8dlTw77Lix7q+nomTFdgGRfAy3mcssTucyLXbxKxyZRnCgqVqmnCLP5D9ZHL3B0wDsxzT2I9M39W9AeWN5EB+mVFI6YElm8S29pM9W3pDz6rr6wa8WKn3NaKPodd2GixPe1YBpVoavUCpUp8nj+tkLImBlrSnVtxXDYgzmzexo7V0lRc24LoMvPZQmU0aHJby9rA8zMgB05LNEFsK2hRDIHsGK8jJXnAVXleWhytgWtFqoOhDC0VzkhR2k4HVsDEIxpVnBrOUwKMcrevLaHEVOonGkHAGNCGVpYchla8hdo9w7OqgeIejt8eQ8JLVg7TiIN/d88P9Ngfv6jQx/4F+WRu2vEs1yPfvIf1x9e3m+263fbzQ+nWKL2' type='text/css' media='all' />
<style id='wp-block-navigation-inline-css'>
.wp-block-navigation{font-size: 0.875rem;padding-right: 0.25rem !important;padding-left: 0.25rem !important;}.wp-block-navigation-is-layout-flow > :first-child:first-child{margin-block-start: 0;}.wp-block-navigation-is-layout-flow > :last-child:last-child{margin-block-end: 0;}.wp-block-navigation-is-layout-flow > *{margin-block-start: 1rem;margin-block-end: 0;}.wp-block-navigation-is-layout-constrained > :first-child:first-child{margin-block-start: 0;}.wp-block-navigation-is-layout-constrained > :last-child:last-child{margin-block-end: 0;}.wp-block-navigation-is-layout-constrained > *{margin-block-start: 1rem;margin-block-end: 0;}.wp-block-navigation-is-layout-flex{gap: 1rem;}.wp-block-navigation-is-layout-grid{gap: 1rem;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
.wp-block-navigation a:where(:not(.wp-element-button)):focus{text-decoration: underline solid;}
.wp-block-navigation a:where(:not(.wp-element-button)):active{text-decoration: underline dotted;}
</style>
<style id='wpdiscuz-frontend-css-inline-css'>
#wpdcom .wpd-blog-administrator .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-administrator .wpd-comment-author, #wpdcom .wpd-blog-administrator .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-administrator .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment.wpd-reply .wpd-comment-wrap.wpd-blog-administrator{border-left:3px solid #00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-administrator .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-administrator .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-administrator .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-editor .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-editor .wpd-comment-author, #wpdcom .wpd-blog-editor .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-editor .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment.wpd-reply .wpd-comment-wrap.wpd-blog-editor{border-left:3px solid #00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-editor .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-editor .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-editor .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-author .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-author .wpd-comment-author, #wpdcom .wpd-blog-author .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-author .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-author .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-author .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-author .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-contributor .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-contributor .wpd-comment-author, #wpdcom .wpd-blog-contributor .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-contributor .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-contributor .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-contributor .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-contributor .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-subscriber .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-subscriber .wpd-comment-author, #wpdcom .wpd-blog-subscriber .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-subscriber .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-subscriber .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom .wpd-blog-pending .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-pending .wpd-comment-author, #wpdcom .wpd-blog-pending .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-pending .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-pending .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-pending .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-pending .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-stm_lms_instructor .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-stm_lms_instructor .wpd-comment-author, #wpdcom .wpd-blog-stm_lms_instructor .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-stm_lms_instructor .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-stm_lms_instructor .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-stm_lms_instructor .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-stm_lms_instructor .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-post_author .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-post_author .wpd-comment-author, #wpdcom .wpd-blog-post_author .wpd-comment-author a{color:#00B38F}#wpdcom .wpd-blog-post_author .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-1 .wpd-comment .wpd-blog-post_author .wpd-avatar img{border-color:#00B38F}#wpdcom.wpd-layout-2 .wpd-comment.wpd-reply .wpd-comment-wrap.wpd-blog-post_author{border-left:3px solid #00B38F}#wpdcom.wpd-layout-2 .wpd-comment .wpd-blog-post_author .wpd-avatar img{border-bottom-color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-post_author .wpd-comment-subheader{border-top:1px dashed #00B38F}#wpdcom.wpd-layout-3 .wpd-reply .wpd-blog-post_author .wpd-comment-right{border-left:1px solid #00B38F}#wpdcom .wpd-blog-guest .wpd-comment-label{color:#ffffff;background-color:#00B38F;border:none}#wpdcom .wpd-blog-guest .wpd-comment-author, #wpdcom .wpd-blog-guest .wpd-comment-author a{color:#00B38F}#wpdcom.wpd-layout-3 .wpd-blog-guest .wpd-comment-subheader{border-top:1px dashed #00B38F}#comments, #respond, .comments-area, #wpdcom{}#wpdcom .ql-editor > *{color:#777777}#wpdcom .ql-editor::before{}#wpdcom .ql-toolbar{border:1px solid #DDDDDD;border-top:none}#wpdcom .ql-container{border:1px solid #DDDDDD;border-bottom:none}#wpdcom .wpd-form-row .wpdiscuz-item input[type="text"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="email"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="url"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="color"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="date"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="datetime"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="datetime-local"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="month"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="number"], #wpdcom .wpd-form-row .wpdiscuz-item input[type="time"], #wpdcom textarea, #wpdcom select{border:1px solid #DDDDDD;color:#777777}#wpdcom .wpd-form-row .wpdiscuz-item textarea{border:1px solid #DDDDDD}#wpdcom input::placeholder, #wpdcom textarea::placeholder, #wpdcom input::-moz-placeholder, #wpdcom textarea::-webkit-input-placeholder{}#wpdcom .wpd-comment-text{color:#777777}#wpdcom .wpd-thread-head .wpd-thread-info{border-bottom:2px solid #00B38F}#wpdcom .wpd-thread-head .wpd-thread-info.wpd-reviews-tab svg{fill:#00B38F}#wpdcom .wpd-thread-head .wpdiscuz-user-settings{border-bottom:2px solid #00B38F}#wpdcom .wpd-thread-head .wpdiscuz-user-settings:hover{color:#00B38F}#wpdcom .wpd-comment .wpd-follow-link:hover{color:#00B38F}#wpdcom .wpd-comment-status .wpd-sticky{color:#00B38F}#wpdcom .wpd-thread-filter .wpdf-active{color:#00B38F;border-bottom-color:#00B38F}#wpdcom .wpd-comment-info-bar{border:1px dashed #33c3a6;background:#e6f8f4}#wpdcom .wpd-comment-info-bar .wpd-current-view i{color:#00B38F}#wpdcom .wpd-filter-view-all:hover{background:#00B38F}#wpdcom .wpdiscuz-item .wpdiscuz-rating > label{color:#DDDDDD}#wpdcom .wpdiscuz-item .wpdiscuz-rating:not(:checked) > label:hover, .wpdiscuz-rating:not(:checked) > label:hover ~ label{}#wpdcom .wpdiscuz-item .wpdiscuz-rating > input ~ label:hover, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:not(:checked) ~ label:hover ~ label, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:not(:checked) ~ label:hover ~ label{color:#FFED85}#wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover, #wpdcom .wpdiscuz-item .wpdiscuz-rating > label:hover ~ input:checked ~ label, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked + label:hover ~ label, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label:hover ~ label, .wpd-custom-field .wcf-active-star, #wpdcom .wpdiscuz-item .wpdiscuz-rating > input:checked ~ label{color:#FFD700}#wpd-post-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-star{fill:#DDDDDD}#wpd-post-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-active{fill:#FFD700}#wpd-post-rating .wpd-rating-wrap .wpd-rate-starts svg .wpd-star{fill:#DDDDDD}#wpd-post-rating .wpd-rating-wrap .wpd-rate-starts:hover svg .wpd-star{fill:#FFED85}#wpd-post-rating.wpd-not-rated .wpd-rating-wrap .wpd-rate-starts svg:hover ~ svg .wpd-star{fill:#DDDDDD}.wpdiscuz-post-rating-wrap .wpd-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-star{fill:#DDDDDD}.wpdiscuz-post-rating-wrap .wpd-rating .wpd-rating-wrap .wpd-rating-stars svg .wpd-active{fill:#FFD700}#wpdcom .wpd-comment .wpd-follow-active{color:#ff7a00}#wpdcom .page-numbers{color:#555;border:#555 1px solid}#wpdcom span.current{background:#555}#wpdcom.wpd-layout-1 .wpd-new-loaded-comment > .wpd-comment-wrap > .wpd-comment-right{background:#FFFAD6}#wpdcom.wpd-layout-2 .wpd-new-loaded-comment.wpd-comment > .wpd-comment-wrap > .wpd-comment-right{background:#FFFAD6}#wpdcom.wpd-layout-2 .wpd-new-loaded-comment.wpd-comment.wpd-reply > .wpd-comment-wrap > .wpd-comment-right{background:transparent}#wpdcom.wpd-layout-2 .wpd-new-loaded-comment.wpd-comment.wpd-reply > .wpd-comment-wrap{background:#FFFAD6}#wpdcom.wpd-layout-3 .wpd-new-loaded-comment.wpd-comment > .wpd-comment-wrap > .wpd-comment-right{background:#FFFAD6}#wpdcom .wpd-follow:hover i, #wpdcom .wpd-unfollow:hover i, #wpdcom .wpd-comment .wpd-follow-active:hover i{color:#00B38F}#wpdcom .wpdiscuz-readmore{cursor:pointer;color:#00B38F}.wpd-custom-field .wcf-pasiv-star, #wpcomm .wpdiscuz-item .wpdiscuz-rating > label{color:#DDDDDD}.wpd-wrapper .wpd-list-item.wpd-active{border-top:3px solid #00B38F}#wpdcom.wpd-layout-2 .wpd-comment.wpd-reply.wpd-unapproved-comment .wpd-comment-wrap{border-left:3px solid #FFFAD6}#wpdcom.wpd-layout-3 .wpd-comment.wpd-reply.wpd-unapproved-comment .wpd-comment-right{border-left:1px solid #FFFAD6}#wpdcom .wpd-prim-button{background-color:#07B290;color:#FFFFFF}#wpdcom .wpd_label__check i.wpdicon-on{color:#07B290;border:1px solid #83d9c8}#wpd-bubble-wrapper #wpd-bubble-all-comments-count{color:#1DB99A}#wpd-bubble-wrapper > div{background-color:#1DB99A}#wpd-bubble-wrapper > #wpd-bubble #wpd-bubble-add-message{background-color:#1DB99A}#wpd-bubble-wrapper > #wpd-bubble #wpd-bubble-add-message::before{border-left-color:#1DB99A;border-right-color:#1DB99A}#wpd-bubble-wrapper.wpd-right-corner > #wpd-bubble #wpd-bubble-add-message::before{border-left-color:#1DB99A;border-right-color:#1DB99A}.wpd-inline-icon-wrapper path.wpd-inline-icon-first{fill:#1DB99A}.wpd-inline-icon-count{background-color:#1DB99A}.wpd-inline-icon-count::before{border-right-color:#1DB99A}.wpd-inline-form-wrapper::before{border-bottom-color:#1DB99A}.wpd-inline-form-question{background-color:#1DB99A}.wpd-inline-form{background-color:#1DB99A}.wpd-last-inline-comments-wrapper{border-color:#1DB99A}.wpd-last-inline-comments-wrapper::before{border-bottom-color:#1DB99A}.wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments{background:#1DB99A}.wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments:hover,.wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments:active,.wpd-last-inline-comments-wrapper .wpd-view-all-inline-comments:focus{background-color:#1DB99A}#wpdcom .ql-snow .ql-tooltip[data-mode="link"]::before{content:"Enter link:"}#wpdcom .ql-snow .ql-tooltip.ql-editing a.ql-action::after{content:"Save"}.comments-area{width:auto}
</style>
<link rel='stylesheet' id='dashicons-css' href='https://elearn767.wpcomstaging.com/wp-includes/css/dashicons.min.css?ver=6.4.2' media='all' />
<link rel='stylesheet' id='admin-bar-css' href='https://elearn767.wpcomstaging.com/wp-includes/css/admin-bar.min.css?ver=6.4.2' media='all' />
<style id='admin-bar-inline-css'>
@media screen { html { margin-top: 32px !important; } }
@media screen and ( max-width: 782px ) { html { margin-top: 46px !important; } }
@media print { #wpadminbar { display:none; } }
.admin-bar {
position: inherit !important;
top: auto !important;
}
.admin-bar .goog-te-banner-frame {
top: 32px !important
}
@media screen and (max-width: 782px) {
.admin-bar .goog-te-banner-frame {
top: 46px !important;
}
}
@media screen and (max-width: 480px) {
.admin-bar .goog-te-banner-frame {
position: absolute;
}
}
</style>
<style id='wp-block-site-logo-inline-css'>
.wp-block-site-logo{box-sizing:border-box;line-height:0}.wp-block-site-logo a{display:inline-block;line-height:0}.wp-block-site-logo.is-default-size img{height:auto;width:120px}.wp-block-site-logo img{height:auto;max-width:100%}.wp-block-site-logo a,.wp-block-site-logo img{border-radius:inherit}.wp-block-site-logo.aligncenter{margin-left:auto;margin-right:auto;text-align:center}.wp-block-site-logo.is-style-rounded{border-radius:9999px}
.wp-block-site-logo{border-radius: 0;border-color: var(--wp--preset--color--primary);border-width: 2px;border-style: solid;}
</style>
<style id='wp-block-site-title-inline-css'>
.wp-block-site-title a{color:inherit}
.wp-block-site-title{font-family: var(--wp--preset--font-family--uni-05-53);font-size: 0.875rem;font-weight: 400;text-transform: uppercase;}
.wp-block-site-title a:where(:not(.wp-element-button)){text-decoration: none;}
</style>
<style id='wp-block-navigation-link-inline-css'>
.wp-block-navigation .wp-block-navigation-item__label{overflow-wrap:break-word}.wp-block-navigation .wp-block-navigation-item__description{display:none}
</style>
<style id='wp-block-group-inline-css'>
.wp-block-group{box-sizing:border-box}
</style>
<style id='wp-block-columns-inline-css'>
.wp-block-columns{align-items:normal!important;box-sizing:border-box;display:flex;flex-wrap:wrap!important}@media (min-width:782px){.wp-block-columns{flex-wrap:nowrap!important}}.wp-block-columns.are-vertically-aligned-top{align-items:flex-start}.wp-block-columns.are-vertically-aligned-center{align-items:center}.wp-block-columns.are-vertically-aligned-bottom{align-items:flex-end}@media (max-width:781px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:100%!important}}@media (min-width:782px){.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns:not(.is-not-stacked-on-mobile)>.wp-block-column[style*=flex-basis]{flex-grow:0}}.wp-block-columns.is-not-stacked-on-mobile{flex-wrap:nowrap!important}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column{flex-basis:0;flex-grow:1}.wp-block-columns.is-not-stacked-on-mobile>.wp-block-column[style*=flex-basis]{flex-grow:0}:where(.wp-block-columns){margin-bottom:1.75em}:where(.wp-block-columns.has-background){padding:1.25em 2.375em}.wp-block-column{flex-grow:1;min-width:0;overflow-wrap:break-word;word-break:break-word}.wp-block-column.is-vertically-aligned-top{align-self:flex-start}.wp-block-column.is-vertically-aligned-center{align-self:center}.wp-block-column.is-vertically-aligned-bottom{align-self:flex-end}.wp-block-column.is-vertically-aligned-stretch{align-self:stretch}.wp-block-column.is-vertically-aligned-bottom,.wp-block-column.is-vertically-aligned-center,.wp-block-column.is-vertically-aligned-top{width:100%}
</style>
<style id='wp-block-search-inline-css'>
.wp-block-search__button{margin-left:10px;word-break:normal}.wp-block-search__button.has-icon{line-height:0}.wp-block-search__button svg{fill:currentColor;min-height:24px;min-width:24px;vertical-align:text-bottom}:where(.wp-block-search__button){border:1px solid #ccc;padding:6px 10px}.wp-block-search__inside-wrapper{display:flex;flex:auto;flex-wrap:nowrap;max-width:100%}.wp-block-search__label{width:100%}.wp-block-search__input{appearance:none;border:1px solid #949494;flex-grow:1;margin-left:0;margin-right:0;min-width:3rem;padding:8px;text-decoration:unset!important}.wp-block-search.wp-block-search__button-only .wp-block-search__button{flex-shrink:0;margin-left:0;max-width:100%}.wp-block-search.wp-block-search__button-only .wp-block-search__button[aria-expanded=true]{max-width:calc(100% - 100px)}.wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{min-width:0!important;transition-property:width}.wp-block-search.wp-block-search__button-only .wp-block-search__input{flex-basis:100%;transition-duration:.3s}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden,.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__inside-wrapper{overflow:hidden}.wp-block-search.wp-block-search__button-only.wp-block-search__searchfield-hidden .wp-block-search__input{border-left-width:0!important;border-right-width:0!important;flex-basis:0;flex-grow:0;margin:0;min-width:0!important;padding-left:0!important;padding-right:0!important;width:0!important}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){border:1px solid #949494;box-sizing:border-box;padding:4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{border:none;border-radius:0;padding:0 4px}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input:focus{outline:none}:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) :where(.wp-block-search__button){padding:4px 8px}.wp-block-search.aligncenter .wp-block-search__inside-wrapper{margin:auto}.wp-block[data-align=right] .wp-block-search.wp-block-search__button-only .wp-block-search__inside-wrapper{float:right}
.wp-block-search .wp-block-search__label, .wp-block-search .wp-block-search__input, .wp-block-search .wp-block-search__button{font-size: var(--wp--preset--font-size--medium);line-height: 1.6;}
</style>
<style id='wp-block-spacer-inline-css'>
.wp-block-spacer{clear:both}
</style>
<style id='wp-block-post-featured-image-inline-css'>
.wp-block-post-featured-image{margin-left:0;margin-right:0}.wp-block-post-featured-image a{display:block;height:100%}.wp-block-post-featured-image img{box-sizing:border-box;height:auto;max-width:100%;vertical-align:bottom;width:100%}.wp-block-post-featured-image.alignfull img,.wp-block-post-featured-image.alignwide img{width:100%}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim{background-color:#000;inset:0;position:absolute}.wp-block-post-featured-image{position:relative}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-gradient{background-color:transparent}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-0{opacity:0}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-10{opacity:.1}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-20{opacity:.2}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-30{opacity:.3}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-40{opacity:.4}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-50{opacity:.5}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-60{opacity:.6}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-70{opacity:.7}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-80{opacity:.8}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-90{opacity:.9}.wp-block-post-featured-image .wp-block-post-featured-image__overlay.has-background-dim-100{opacity:1}.wp-block-post-featured-image:where(.alignleft,.alignright){width:100%}
</style>
<style id='wp-block-post-title-inline-css'>
.wp-block-post-title{box-sizing:border-box;word-break:break-word}.wp-block-post-title a{display:inline-block}
.wp-block-post-title{font-size: clamp(1.375rem, 1.2916666666666667rem + 0.4166666666666667vw, 1.625rem);font-weight: 500;margin-bottom: 0;}
.wp-block-post-title a:where(:not(.wp-element-button)){text-decoration: none;}
</style>
<style id='wp-block-paragraph-inline-css'>
.is-small-text{font-size:.875em}.is-regular-text{font-size:1em}.is-large-text{font-size:2.25em}.is-larger-text{font-size:3em}.has-drop-cap:not(:focus):first-letter{float:left;font-size:8.4em;font-style:normal;font-weight:100;line-height:.68;margin:.05em .1em 0 0;text-transform:uppercase}body.rtl .has-drop-cap:not(:focus):first-letter{float:none;margin-left:.1em}p.has-drop-cap.has-background{overflow:hidden}p.has-background{padding:1.25em 2.375em}:where(p.has-text-color:not(.has-link-color)) a{color:inherit}p.has-text-align-left[style*="writing-mode:vertical-lr"],p.has-text-align-right[style*="writing-mode:vertical-rl"]{rotate:180deg}
</style>
<style id='wp-block-heading-inline-css'>
h1.has-background,h2.has-background,h3.has-background,h4.has-background,h5.has-background,h6.has-background{padding:1.25em 2.375em}h1.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h1.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h2.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h2.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h3.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h3.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h4.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h4.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h5.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h5.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]),h6.has-text-align-left[style*=writing-mode]:where([style*=vertical-lr]),h6.has-text-align-right[style*=writing-mode]:where([style*=vertical-rl]){rotate:180deg}
</style>
<style id='wp-block-list-inline-css'>
ol,ul{box-sizing:border-box}ol.has-background,ul.has-background{padding:1.25em 2.375em}
ol,ul{padding-left: calc( 2 * var(--wp--custom--gap--horizontal) );}
</style>
<style id='wp-block-post-content-inline-css'>
.wp-block-post-content-is-layout-flow > :first-child:first-child{margin-block-start: 0;}.wp-block-post-content-is-layout-flow > :last-child:last-child{margin-block-end: 0;}.wp-block-post-content-is-layout-flow > *{margin-block-start: var(--wp--custom--gap--vertical);margin-block-end: 0;}.wp-block-post-content-is-layout-constrained > :first-child:first-child{margin-block-start: 0;}.wp-block-post-content-is-layout-constrained > :last-child:last-child{margin-block-end: 0;}.wp-block-post-content-is-layout-constrained > *{margin-block-start: var(--wp--custom--gap--vertical);margin-block-end: 0;}.wp-block-post-content-is-layout-flex{gap: var(--wp--custom--gap--vertical);}.wp-block-post-content-is-layout-grid{gap: var(--wp--custom--gap--vertical);}
.wp-block-post-content a:where(:not(.wp-element-button)):hover{font-style: italic;}
.wp-block-post-content a:where(:not(.wp-element-button)):focus{font-style: italic;}
.wp-block-post-content a:where(:not(.wp-element-button)):active{font-style: italic;}
</style>
<style id='wp-block-post-terms-inline-css'>
.wp-block-post-terms{box-sizing:border-box}.wp-block-post-terms .wp-block-post-terms__separator{white-space:pre-wrap}
</style>
<style id='wp-block-comments-inline-css'>
.wp-block-post-comments{box-sizing:border-box}.wp-block-post-comments .alignleft{float:left}.wp-block-post-comments .alignright{float:right}.wp-block-post-comments .navigation:after{clear:both;content:"";display:table}.wp-block-post-comments .commentlist{clear:both;list-style:none;margin:0;padding:0}.wp-block-post-comments .commentlist .comment{min-height:2.25em;padding-left:3.25em}.wp-block-post-comments .commentlist .comment p{font-size:1em;line-height:1.8;margin:1em 0}.wp-block-post-comments .commentlist .children{list-style:none;margin:0;padding:0}.wp-block-post-comments .comment-author{line-height:1.5}.wp-block-post-comments .comment-author .avatar{border-radius:1.5em;display:block;float:left;height:2.5em;margin-right:.75em;margin-top:.5em;width:2.5em}.wp-block-post-comments .comment-author cite{font-style:normal}.wp-block-post-comments .comment-meta{font-size:.875em;line-height:1.5}.wp-block-post-comments .comment-meta b{font-weight:400}.wp-block-post-comments .comment-meta .comment-awaiting-moderation{display:block;margin-bottom:1em;margin-top:1em}.wp-block-post-comments .comment-body .commentmetadata{font-size:.875em}.wp-block-post-comments .comment-form-author label,.wp-block-post-comments .comment-form-comment label,.wp-block-post-comments .comment-form-email label,.wp-block-post-comments .comment-form-url label{display:block;margin-bottom:.25em}.wp-block-post-comments .comment-form input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments .comment-form textarea{box-sizing:border-box;display:block;width:100%}.wp-block-post-comments .comment-form-cookies-consent{display:flex;gap:.25em}.wp-block-post-comments .comment-form-cookies-consent #wp-comment-cookies-consent{margin-top:.35em}.wp-block-post-comments .comment-reply-title{margin-bottom:0}.wp-block-post-comments .comment-reply-title :where(small){font-size:var(--wp--preset--font-size--medium,smaller);margin-left:.5em}.wp-block-post-comments .reply{font-size:.875em;margin-bottom:1.4em}.wp-block-post-comments input:not([type=submit]),.wp-block-post-comments textarea{border:1px solid #949494;font-family:inherit;font-size:1em}.wp-block-post-comments input:not([type=submit]):not([type=checkbox]),.wp-block-post-comments textarea{padding:calc(.667em + 2px)}:where(.wp-block-post-comments input[type=submit]){border:none}
.wp-block-comments{font-size: 0.75rem;}
</style>
<style id='wp-emoji-styles-inline-css'>
img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<style id='wp-block-library-inline-css'>
:root{--wp-admin-theme-color:#007cba;--wp-admin-theme-color--rgb:0,124,186;--wp-admin-theme-color-darker-10:#006ba1;--wp-admin-theme-color-darker-10--rgb:0,107,161;--wp-admin-theme-color-darker-20:#005a87;--wp-admin-theme-color-darker-20--rgb:0,90,135;--wp-admin-border-width-focus:2px;--wp-block-synced-color:#7a00df;--wp-block-synced-color--rgb:122,0,223}@media (-webkit-min-device-pixel-ratio:2),(min-resolution:192dpi){:root{--wp-admin-border-width-focus:1.5px}}.wp-element-button{cursor:pointer}:root{--wp--preset--font-size--normal:16px;--wp--preset--font-size--huge:42px}:root .has-very-light-gray-background-color{background-color:#eee}:root .has-very-dark-gray-background-color{background-color:#313131}:root .has-very-light-gray-color{color:#eee}:root .has-very-dark-gray-color{color:#313131}:root .has-vivid-green-cyan-to-vivid-cyan-blue-gradient-background{background:linear-gradient(135deg,#00d084,#0693e3)}:root .has-purple-crush-gradient-background{background:linear-gradient(135deg,#34e2e4,#4721fb 50%,#ab1dfe)}:root .has-hazy-dawn-gradient-background{background:linear-gradient(135deg,#faaca8,#dad0ec)}:root .has-subdued-olive-gradient-background{background:linear-gradient(135deg,#fafae1,#67a671)}:root .has-atomic-cream-gradient-background{background:linear-gradient(135deg,#fdd79a,#004a59)}:root .has-nightshade-gradient-background{background:linear-gradient(135deg,#330968,#31cdcf)}:root .has-midnight-gradient-background{background:linear-gradient(135deg,#020381,#2874fc)}.has-regular-font-size{font-size:1em}.has-larger-font-size{font-size:2.625em}.has-normal-font-size{font-size:var(--wp--preset--font-size--normal)}.has-huge-font-size{font-size:var(--wp--preset--font-size--huge)}.has-text-align-center{text-align:center}.has-text-align-left{text-align:left}.has-text-align-right{text-align:right}#end-resizable-editor-section{display:none}.aligncenter{clear:both}.items-justified-left{justify-content:flex-start}.items-justified-center{justify-content:center}.items-justified-right{justify-content:flex-end}.items-justified-space-between{justify-content:space-between}.screen-reader-text{clip:rect(1px,1px,1px,1px);word-wrap:normal!important;border:0;clip-path:inset(50%);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.screen-reader-text:focus{clip:auto!important;background-color:#ddd;clip-path:none;color:#444;display:block;font-size:1em;height:auto;left:5px;line-height:normal;padding:15px 23px 14px;text-decoration:none;top:5px;width:auto;z-index:100000}html :where(.has-border-color){border-style:solid}html :where([style*=border-top-color]){border-top-style:solid}html :where([style*=border-right-color]){border-right-style:solid}html :where([style*=border-bottom-color]){border-bottom-style:solid}html :where([style*=border-left-color]){border-left-style:solid}html :where([style*=border-width]){border-style:solid}html :where([style*=border-top-width]){border-top-style:solid}html :where([style*=border-right-width]){border-right-style:solid}html :where([style*=border-bottom-width]){border-bottom-style:solid}html :where([style*=border-left-width]){border-left-style:solid}html :where(img[class*=wp-image-]){height:auto;max-width:100%}:where(figure){margin:0 0 1em}html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:var(--wp-admin--admin-bar--height,0px)}@media screen and (max-width:600px){html :where(.is-position-sticky){--wp-admin--admin-bar--position-offset:0px}}
.has-text-align-justify{text-align:justify;}
</style>
<style id='wp-block-template-skip-link-inline-css'>
.skip-link.screen-reader-text {
border: 0;
clip: rect(1px,1px,1px,1px);
clip-path: inset(50%);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute !important;
width: 1px;
word-wrap: normal !important;
}
.skip-link.screen-reader-text:focus {
background-color: #eee;
clip: auto !important;
clip-path: none;
color: #444;
display: block;
font-size: 1em;
height: auto;
left: 5px;
line-height: normal;
padding: 15px 23px 14px;
text-decoration: none;
top: 5px;
width: auto;
z-index: 100000;
}
</style>
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--primary: #040DE1;--wp--preset--color--foreground: #040DE1;--wp--preset--color--background: #DDCFFF;--wp--preset--color--tertiary: #CDBAF9;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: .813rem;--wp--preset--font-size--medium: clamp(1rem, 1rem + ((1vw - 0.2rem) * 0.227), 1.125rem);--wp--preset--font-size--large: 1.5rem;--wp--preset--font-size--x-large: 2rem;--wp--preset--font-family--albert-sans: 'Albert Sans', sans-serif;--wp--preset--font-family--alegreya: Alegreya, serif;--wp--preset--font-family--arvo: Arvo, serif;--wp--preset--font-family--bodoni-moda: 'Bodoni Moda', serif;--wp--preset--font-family--cabin: Cabin, sans-serif;--wp--preset--font-family--chivo: Chivo, sans-serif;--wp--preset--font-family--commissioner: Commissioner, sans-serif;--wp--preset--font-family--cormorant: Cormorant, serif;--wp--preset--font-family--courier-prime: 'Courier Prime', monospace;--wp--preset--font-family--crimson-pro: 'Crimson Pro', serif;--wp--preset--font-family--dm-sans: 'DM Sans', sans-serif;--wp--preset--font-family--domine: Domine, serif;--wp--preset--font-family--eb-garamond: 'EB Garamond', serif;--wp--preset--font-family--epilogue: Epilogue, sans-serif;--wp--preset--font-family--figtree: Figtree, sans-serif;--wp--preset--font-family--fira-sans: 'Fira Sans', sans-serif;--wp--preset--font-family--fraunces: Fraunces, serif;--wp--preset--font-family--ibm-plex-mono: 'IBM Plex Mono', monospace;--wp--preset--font-family--ibm-plex-sans: 'IBM Plex Sans', sans-serif;--wp--preset--font-family--inter: Inter, sans-serif;--wp--preset--font-family--josefin-sans: 'Josefin Sans', sans-serif;--wp--preset--font-family--jost: Jost, sans-serif;--wp--preset--font-family--libre-baskerville: 'Libre Baskerville', serif;--wp--preset--font-family--libre-franklin: 'Libre Franklin', sans-serif;--wp--preset--font-family--literata: Literata, serif;--wp--preset--font-family--lora: Lora, serif;--wp--preset--font-family--merriweather: Merriweather, serif;--wp--preset--font-family--montserrat: Montserrat, sans-serif;--wp--preset--font-family--newsreader: Newsreader, serif;--wp--preset--font-family--nunito: Nunito, sans-serif;--wp--preset--font-family--open-sans: 'Open Sans', sans-serif;--wp--preset--font-family--overpass: Overpass, sans-serif;--wp--preset--font-family--petrona: Petrona, serif;--wp--preset--font-family--piazzolla: Piazzolla, serif;--wp--preset--font-family--playfair-display: 'Playfair Display', serif;--wp--preset--font-family--plus-jakarta-sans: 'Plus Jakarta Sans', sans-serif;--wp--preset--font-family--poppins: Poppins, sans-serif;--wp--preset--font-family--raleway: Raleway, sans-serif;--wp--preset--font-family--roboto: Roboto, sans-serif;--wp--preset--font-family--roboto-slab: 'Roboto Slab', serif;--wp--preset--font-family--rubik: Rubik, sans-serif;--wp--preset--font-family--sora: Sora, sans-serif;--wp--preset--font-family--source-sans-3: 'Source Sans 3', sans-serif;--wp--preset--font-family--source-serif-4: 'Source Serif 4', serif;--wp--preset--font-family--space-mono: 'Space Mono', monospace;--wp--preset--font-family--texturina: Texturina, serif;--wp--preset--font-family--work-sans: 'Work Sans', sans-serif;--wp--preset--font-family--dm-mono: 'DM Mono', sans-serif;--wp--preset--font-family--uni-05-53: 'uni 05_53', sans-serif;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);--wp--custom--gap--horizontal: min(30px, 5vw);--wp--custom--gap--vertical: min(30px, 5vw);--wp--custom--spacing--outer: clamp(0.625rem, calc(0.625rem + ((1vw - 0.48rem) * 1.2019)), 1.25rem);--wp--custom--shadow: 5px 5px 0px -2px var(--wp--preset--color--background), 5px 5px var(--wp--preset--color--foreground);}body { margin: 0;--wp--style--global--content-size: 620px;--wp--style--global--wide-size: 1200px;}.wp-site-blocks { padding-top: var(--wp--style--root--padding-top); padding-bottom: var(--wp--style--root--padding-bottom); }.has-global-padding { padding-right: var(--wp--style--root--padding-right); padding-left: var(--wp--style--root--padding-left); }.has-global-padding :where(.has-global-padding:not(.wp-block-block)) { padding-right: 0; padding-left: 0; }.has-global-padding > .alignfull { margin-right: calc(var(--wp--style--root--padding-right) * -1); margin-left: calc(var(--wp--style--root--padding-left) * -1); }.has-global-padding :where(.has-global-padding:not(.wp-block-block)) > .alignfull { margin-right: 0; margin-left: 0; }.has-global-padding > .alignfull:where(:not(.has-global-padding):not(.is-layout-flex):not(.is-layout-grid)) > :where([class*="wp-block-"]:not(.alignfull):not([class*="__"]),.wp-block:not(.alignfull),p,h1,h2,h3,h4,h5,h6,ul,ol) { padding-right: var(--wp--style--root--padding-right); padding-left: var(--wp--style--root--padding-left); }.has-global-padding :where(.has-global-padding) > .alignfull:where(:not(.has-global-padding)) > :where([class*="wp-block-"]:not(.alignfull):not([class*="__"]),.wp-block:not(.alignfull),p,h1,h2,h3,h4,h5,h6,ul,ol) { padding-right: 0; padding-left: 0; }.wp-site-blocks > .alignleft { float: left; margin-right: 2em; }.wp-site-blocks > .alignright { float: right; margin-left: 2em; }.wp-site-blocks > .aligncenter { justify-content: center; margin-left: auto; margin-right: auto; }:where(.wp-site-blocks) > * { margin-block-start: var(--wp--custom--gap--vertical); margin-block-end: 0; }:where(.wp-site-blocks) > :first-child:first-child { margin-block-start: 0; }:where(.wp-site-blocks) > :last-child:last-child { margin-block-end: 0; }body { --wp--style--block-gap: var(--wp--custom--gap--vertical); }:where(body .is-layout-flow) > :first-child:first-child{margin-block-start: 0;}:where(body .is-layout-flow) > :last-child:last-child{margin-block-end: 0;}:where(body .is-layout-flow) > *{margin-block-start: var(--wp--custom--gap--vertical);margin-block-end: 0;}:where(body .is-layout-constrained) > :first-child:first-child{margin-block-start: 0;}:where(body .is-layout-constrained) > :last-child:last-child{margin-block-end: 0;}:where(body .is-layout-constrained) > *{margin-block-start: var(--wp--custom--gap--vertical);margin-block-end: 0;}:where(body .is-layout-flex) {gap: var(--wp--custom--gap--vertical);}:where(body .is-layout-grid) {gap: var(--wp--custom--gap--vertical);}body .is-layout-flow > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-flow > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-flow > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignleft{float: left;margin-inline-start: 0;margin-inline-end: 2em;}body .is-layout-constrained > .alignright{float: right;margin-inline-start: 2em;margin-inline-end: 0;}body .is-layout-constrained > .aligncenter{margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)){max-width: var(--wp--style--global--content-size);margin-left: auto !important;margin-right: auto !important;}body .is-layout-constrained > .alignwide{max-width: var(--wp--style--global--wide-size);}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}body{background-color: var(--wp--preset--color--background);color: var(--wp--preset--color--foreground);font-family: var(--wp--preset--font-family--dm-mono);font-size: 0.875rem;font-weight: 300;line-height: 1.6;--wp--style--root--padding-top: var(--wp--custom--spacing--outer);--wp--style--root--padding-right: var(--wp--custom--spacing--outer);--wp--style--root--padding-bottom: var(--wp--custom--spacing--outer);--wp--style--root--padding-left: var(--wp--custom--spacing--outer);}a:where(:not(.wp-element-button)){color: var(--wp--preset--color--primary);text-decoration: underline;}a:where(:not(.wp-element-button)):hover{text-decoration: underline dotted;}a:where(:not(.wp-element-button)):focus{text-decoration: underline dotted;}a:where(:not(.wp-element-button)):active{text-decoration: underline solid;}h1, h2, h3, h4, h5, h6{font-weight: 500;letter-spacing: 0.05em;line-height: 1.2;}h1{font-size: clamp(1.375rem, 1.1442307692307692rem + 0.4807692307692308vw, 1.625rem);}h2{font-size: clamp(1.25rem, 1.1346153846153846rem + 0.2403846153846154vw, 1.375rem);}h3{font-size: clamp(1.125rem, 1.0096153846153846rem + 0.2403846153846154vw, 1.25rem);}h4{font-size: clamp(0.875rem, 0.875rem + ((1vw - 0.2rem) * 0.455), 1.125rem);}h5{font-size: 0.813rem;text-transform: uppercase;}h6{font-size: 0.75rem;font-weight: 400;line-height: 1.6;text-transform: uppercase;}.wp-element-button, .wp-block-button__link{background-color: var(--wp--preset--color--primary);border-radius: 0;border-color: var(--wp--preset--color--primary);border-width: 2px;border-style: solid;color: var(--wp--preset--color--background);font-family: inherit;font-size: var(--wp--preset--font-size--small);line-height: inherit;padding-top: calc(0.75em - 2px);padding-right: calc(1.5em - 2px);padding-bottom: calc(0.75em - 2px);padding-left: calc(1.5em - 2px);text-decoration: none;box-shadow: var(--wp--custom--shadow) !important;}.wp-element-button:hover, .wp-block-button__link:hover{background-color: var(--wp--preset--color--background);border-color: var(--wp--preset--color--primary);color: var(--wp--preset--color--primary);}.wp-element-button:active, .wp-block-button__link:active{background-color: var(--wp--preset--color--primary);border-color: var(--wp--preset--color--primary);color: var(--wp--preset--color--background);box-shadow: 2px 2px var(--wp--preset--color--primary) !important;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-color{color: var(--wp--preset--color--primary) !important;}.has-foreground-color{color: var(--wp--preset--color--foreground) !important;}.has-background-color{color: var(--wp--preset--color--background) !important;}.has-tertiary-color{color: var(--wp--preset--color--tertiary) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-background-color{background-color: var(--wp--preset--color--primary) !important;}.has-foreground-background-color{background-color: var(--wp--preset--color--foreground) !important;}.has-background-background-color{background-color: var(--wp--preset--color--background) !important;}.has-tertiary-background-color{background-color: var(--wp--preset--color--tertiary) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-primary-border-color{border-color: var(--wp--preset--color--primary) !important;}.has-foreground-border-color{border-color: var(--wp--preset--color--foreground) !important;}.has-background-border-color{border-color: var(--wp--preset--color--background) !important;}.has-tertiary-border-color{border-color: var(--wp--preset--color--tertiary) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}.has-albert-sans-font-family{font-family: var(--wp--preset--font-family--albert-sans) !important;}.has-alegreya-font-family{font-family: var(--wp--preset--font-family--alegreya) !important;}.has-arvo-font-family{font-family: var(--wp--preset--font-family--arvo) !important;}.has-bodoni-moda-font-family{font-family: var(--wp--preset--font-family--bodoni-moda) !important;}.has-cabin-font-family{font-family: var(--wp--preset--font-family--cabin) !important;}.has-chivo-font-family{font-family: var(--wp--preset--font-family--chivo) !important;}.has-commissioner-font-family{font-family: var(--wp--preset--font-family--commissioner) !important;}.has-cormorant-font-family{font-family: var(--wp--preset--font-family--cormorant) !important;}.has-courier-prime-font-family{font-family: var(--wp--preset--font-family--courier-prime) !important;}.has-crimson-pro-font-family{font-family: var(--wp--preset--font-family--crimson-pro) !important;}.has-dm-sans-font-family{font-family: var(--wp--preset--font-family--dm-sans) !important;}.has-domine-font-family{font-family: var(--wp--preset--font-family--domine) !important;}.has-eb-garamond-font-family{font-family: var(--wp--preset--font-family--eb-garamond) !important;}.has-epilogue-font-family{font-family: var(--wp--preset--font-family--epilogue) !important;}.has-figtree-font-family{font-family: var(--wp--preset--font-family--figtree) !important;}.has-fira-sans-font-family{font-family: var(--wp--preset--font-family--fira-sans) !important;}.has-fraunces-font-family{font-family: var(--wp--preset--font-family--fraunces) !important;}.has-ibm-plex-mono-font-family{font-family: var(--wp--preset--font-family--ibm-plex-mono) !important;}.has-ibm-plex-sans-font-family{font-family: var(--wp--preset--font-family--ibm-plex-sans) !important;}.has-inter-font-family{font-family: var(--wp--preset--font-family--inter) !important;}.has-josefin-sans-font-family{font-family: var(--wp--preset--font-family--josefin-sans) !important;}.has-jost-font-family{font-family: var(--wp--preset--font-family--jost) !important;}.has-libre-baskerville-font-family{font-family: var(--wp--preset--font-family--libre-baskerville) !important;}.has-libre-franklin-font-family{font-family: var(--wp--preset--font-family--libre-franklin) !important;}.has-literata-font-family{font-family: var(--wp--preset--font-family--literata) !important;}.has-lora-font-family{font-family: var(--wp--preset--font-family--lora) !important;}.has-merriweather-font-family{font-family: var(--wp--preset--font-family--merriweather) !important;}.has-montserrat-font-family{font-family: var(--wp--preset--font-family--montserrat) !important;}.has-newsreader-font-family{font-family: var(--wp--preset--font-family--newsreader) !important;}.has-nunito-font-family{font-family: var(--wp--preset--font-family--nunito) !important;}.has-open-sans-font-family{font-family: var(--wp--preset--font-family--open-sans) !important;}.has-overpass-font-family{font-family: var(--wp--preset--font-family--overpass) !important;}.has-petrona-font-family{font-family: var(--wp--preset--font-family--petrona) !important;}.has-piazzolla-font-family{font-family: var(--wp--preset--font-family--piazzolla) !important;}.has-playfair-display-font-family{font-family: var(--wp--preset--font-family--playfair-display) !important;}.has-plus-jakarta-sans-font-family{font-family: var(--wp--preset--font-family--plus-jakarta-sans) !important;}.has-poppins-font-family{font-family: var(--wp--preset--font-family--poppins) !important;}.has-raleway-font-family{font-family: var(--wp--preset--font-family--raleway) !important;}.has-roboto-font-family{font-family: var(--wp--preset--font-family--roboto) !important;}.has-roboto-slab-font-family{font-family: var(--wp--preset--font-family--roboto-slab) !important;}.has-rubik-font-family{font-family: var(--wp--preset--font-family--rubik) !important;}.has-sora-font-family{font-family: var(--wp--preset--font-family--sora) !important;}.has-source-sans-3-font-family{font-family: var(--wp--preset--font-family--source-sans-3) !important;}.has-source-serif-4-font-family{font-family: var(--wp--preset--font-family--source-serif-4) !important;}.has-space-mono-font-family{font-family: var(--wp--preset--font-family--space-mono) !important;}.has-texturina-font-family{font-family: var(--wp--preset--font-family--texturina) !important;}.has-work-sans-font-family{font-family: var(--wp--preset--font-family--work-sans) !important;}.has-dm-mono-font-family{font-family: var(--wp--preset--font-family--dm-mono) !important;}.has-uni-05-53-font-family{font-family: var(--wp--preset--font-family--uni-05-53) !important;}
</style>
<style id='core-block-supports-inline-css'>
.wp-container-core-navigation-is-layout-1.wp-container-core-navigation-is-layout-1{justify-content:flex-start;}.wp-container-core-group-is-layout-1.wp-container-core-group-is-layout-1{gap:0;justify-content:center;}.wp-container-core-columns-is-layout-1.wp-container-core-columns-is-layout-1{flex-wrap:nowrap;}.wp-container-core-group-is-layout-2.wp-container-core-group-is-layout-2{flex-wrap:nowrap;gap:var(--wp--preset--spacing--40);justify-content:flex-start;align-items:flex-start;}.wp-container-core-group-is-layout-3.wp-container-core-group-is-layout-3 > *{margin-block-start:0;margin-block-end:0;}.wp-container-core-group-is-layout-3.wp-container-core-group-is-layout-3.wp-container-core-group-is-layout-3.wp-container-core-group-is-layout-3 > * + *{margin-block-start:0;margin-block-end:0;}.wp-elements-6dc1bcad6cc7f4cd2231e7cc3e943bed a{color:var(--wp--preset--color--background);}.wp-container-core-social-links-is-layout-1.wp-container-core-social-links-is-layout-1{justify-content:center;}.wp-container-content-4{flex-grow:1;}.wp-container-core-group-is-layout-5.wp-container-core-group-is-layout-5{flex-wrap:nowrap;justify-content:space-between;}.wp-container-core-columns-is-layout-2.wp-container-core-columns-is-layout-2{flex-wrap:nowrap;gap:2em 0;}.wp-container-core-navigation-is-layout-2.wp-container-core-navigation-is-layout-2{justify-content:center;}.wp-container-core-group-is-layout-7.wp-container-core-group-is-layout-7 > *{margin-block-start:0;margin-block-end:0;}.wp-container-core-group-is-layout-7.wp-container-core-group-is-layout-7.wp-container-core-group-is-layout-7.wp-container-core-group-is-layout-7 > * + *{margin-block-start:var(--wp--preset--spacing--50);margin-block-end:0;}.wp-container-core-group-is-layout-10.wp-container-core-group-is-layout-10{flex-wrap:nowrap;}
</style>
<link rel='stylesheet' id='a8c-wpcom-masterbar-css' href='https://s0.wp.com/wp-content/mu-plugins/admin-bar/wpcom-admin-bar.css?ver=13.1-a.7' media='all' />
<link rel='stylesheet' id='a8c-wpcom-masterbar-overrides-css' href='https://s0.wp.com/wp-content/mu-plugins/admin-bar/masterbar-overrides/masterbar.css?ver=13.1-a.7' media='all' />
<link rel='stylesheet' id='noticons-css' href='//s0.wp.com/i/noticons/noticons.css?ver=20120621' media='all' />
<style id='jetpack-global-styles-frontend-style-inline-css'>
:root { --font-headings: unset; --font-base: unset; --font-headings-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; --font-base-default: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;}
</style>
<script src="https://elearn767.wpcomstaging.com/wp-includes/js/jquery/jquery.min.js?ver=3.7.1" id="jquery-core-js"></script>
<script type='text/javascript' src='https://elearn767.wpcomstaging.com/_static/??-eJyVjkkOwjAMRS9ECEiA2gXiKChN3GDIUGyH4fZ40QVsEEiRbMvvfec+GSw+tQBsz/quDeg5F5MxkhNYZizLMy/un2xAFnuDEipZXU01PUdMSRkg+cEhiKCok0qGWhHMf156o30tAkXslFrEohLI5PzFHjXGDg1TsM57YMYhgRmrb/yfnR0L0ODorRNSiA3oz+RbXGw6DkBxzjrVemGLJcBjtg55v971fd9ttqvuBZAdmC8='></script>
<script src="https://elearn767.wpcomstaging.com/wp-content/plugins/gutenberg/build/i18n/index.min.js?ver=f5a63315d8d2f363ce59" id="wp-i18n-js"></script>
<script id="wp-i18n-js-after">
wp.i18n.setLocaleData( { 'text direction\u0004ltr': [ 'ltr' ] } );
</script>
<script type='text/javascript' src='https://elearn767.wpcomstaging.com/wp-content/plugins/ultimate-member/assets/js/um-gdpr.min.js?m=1706211875'></script>
<link rel="https://api.w.org/" href="https://elearn767.wpcomstaging.com/wp-json/" /><link rel="alternate" type="application/json" href="https://elearn767.wpcomstaging.com/wp-json/wp/v2/posts/535" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://elearn767.wpcomstaging.com/xmlrpc.php?rsd" />
<link rel="canonical" href="https://elearn767.wpcomstaging.com/2024/01/26/how-to-become-a-software-engineer/" />
<link rel='shortlink' href='https://wp.me/pfmgSF-8D' />
<link rel="alternate" type="application/json+oembed" href="https://elearn767.wpcomstaging.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Felearn767.wpcomstaging.com%2F2024%2F01%2F26%2Fhow-to-become-a-software-engineer%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://elearn767.wpcomstaging.com/wp-json/oembed/1.0/embed?url=https%3A%2F%2Felearn767.wpcomstaging.com%2F2024%2F01%2F26%2Fhow-to-become-a-software-engineer%2F&format=xml" />
<script type="importmap">{"imports":{"@wordpress\/interactivity":"https:\/\/elearn767.wpcomstaging.com\/wp-content\/plugins\/gutenberg\/build\/interactivity\/index.min.js?ver=17.5.2"}}</script><script type="module" src="https://elearn767.wpcomstaging.com/wp-content/plugins/gutenberg/build/interactivity/navigation.min.js?ver=17.5.2" id="@wordpress/block-library/navigation-block"></script>
<link rel="modulepreload" href="https://elearn767.wpcomstaging.com/wp-content/plugins/gutenberg/build/interactivity/index.min.js?ver=17.5.2" id="@wordpress/interactivity"> <style type="text/css">
.um_request_name {
display: none !important;
}
</style>
<script type="text/javascript">
var ajaxurl = "https://elearn767.wpcomstaging.com/wp-admin/admin-ajax.php";
</script><meta name="description" content="By Simplilearn Software engineering is a cornerstone of technological progress in an era where software is seamlessly integrated into every aspect of our lives. It encompasses the art and science of designing, developing, testing, and maintaining software systems. From small utility applications to complex, mission-critical systems, software engineering is the discipline that transforms concepts into functional,…" />
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="article" />
<meta property="og:title" content="How to Become a Software Engineer?" />
<meta property="og:url" content="https://elearn767.wpcomstaging.com/2024/01/26/how-to-become-a-software-engineer/" />
<meta property="og:description" content="By Simplilearn Software engineering is a cornerstone of technological progress in an era where software is seamlessly integrated into every aspect of our lives. It encompasses the art and science o…" />
<meta property="article:published_time" content="2024-01-26T15:34:36+00:00" />
<meta property="article:modified_time" content="2024-01-28T03:54:34+00:00" />
<meta property="og:site_name" content="LEarn" />
<meta property="og:image" content="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/cropped-Untitled_Artwork-15.png?fit=512%2C512&ssl=1" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:text:title" content="How to Become a Software Engineer?" />
<meta name="twitter:image" content="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/cropped-Untitled_Artwork-15.png?fit=240%2C240&ssl=1" />
<meta name="twitter:card" content="summary" />
<!-- End Jetpack Open Graph Tags -->
<script>( HTMLScriptElement.supports && HTMLScriptElement.supports("importmap") ) || document.write( '<script src="https://elearn767.wpcomstaging.com/wp-content/plugins/gutenberg/build/modules/importmap-polyfill.min.js"></scr' + 'ipt>' );</script><style id='wp-fonts-local'>
@font-face{font-family:"DM Mono";font-style:normal;font-weight:300;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-Light.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"DM Mono";font-style:italic;font-weight:300;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-LightItalic.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"DM Mono";font-style:normal;font-weight:400;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-Regular.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"DM Mono";font-style:italic;font-weight:400;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-Italic.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"DM Mono";font-style:normal;font-weight:500;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-Medium.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"DM Mono";font-style:italic;font-weight:500;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-MediumItalic.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"uni 05_53";font-style:normal;font-weight:400;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/uni05_53.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"DM Mono";font-style:normal;font-weight:300;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-Light.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"DM Mono";font-style:italic;font-weight:300;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-LightItalic.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"DM Mono";font-style:normal;font-weight:400;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-Regular.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"DM Mono";font-style:italic;font-weight:400;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-Italic.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"DM Mono";font-style:normal;font-weight:500;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-Medium.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"DM Mono";font-style:italic;font-weight:500;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/DMMono-MediumItalic.ttf') format('truetype');font-stretch:normal;}
@font-face{font-family:"uni 05_53";font-style:normal;font-weight:400;font-display:block;src:url('https://elearn767.wpcomstaging.com/wp-content/themes/pixl/assets/fonts/uni05_53.ttf') format('truetype');font-stretch:normal;}
</style>
<link rel="icon" href="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/cropped-Untitled_Artwork-15.png?fit=32%2C32&ssl=1" sizes="32x32" />
<link rel="icon" href="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/cropped-Untitled_Artwork-15.png?fit=192%2C192&ssl=1" sizes="192x192" />
<link rel="apple-touch-icon" href="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/cropped-Untitled_Artwork-15.png?fit=180%2C180&ssl=1" />
<meta name="msapplication-TileImage" content="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/cropped-Untitled_Artwork-15.png?fit=270%2C270&ssl=1" />
<style data-ampdevmode type='text/css'>
#wpadminbar .quicklinks li#wp-admin-bar-stats {
height: 32px;
}
#wpadminbar .quicklinks li#wp-admin-bar-stats a {
height: 32px;
padding: 0;
}
#wpadminbar .quicklinks li#wp-admin-bar-stats a div {
height: 32px;
width: 95px;
overflow: hidden;
margin: 0 10px;
}
#wpadminbar .quicklinks li#wp-admin-bar-stats a:hover div {
width: auto;
margin: 0 8px 0 10px;
}
#wpadminbar .quicklinks li#wp-admin-bar-stats a img {
height: 24px;
margin: 4px 0;
max-width: none;
border: none;
}
</style>
<script data-ampdevmode type="text/javascript">
/* <![CDATA[ */
var wpNotesIsJetpackClient = true;
var wpNotesIsJetpackClientV2 = true;
/* ]]> */
window.addEventListener('message', function ( event ) {
// Confirm that the message is from the right origin.
if ('https://widgets.wp.com' !== event.origin) {
return;
}
// Check whether 3rd Party Cookies are blocked
var has3PCBlocked = 'WPCOM:3PC:blocked' === event.data;
var tagerElement = document.getElementById('wp-admin-bar-notes');
if ( has3PCBlocked && tagerElement ) {
// Hide the notification button/icon
tagerElement.style.display = 'none';
}
}, false );
</script>
<!-- Your Google Analytics Plugin is missing the tracking ID -->
</head>
<body class="post-template-default single single-post postid-535 single-format-standard logged-in admin-bar no-customize-support wp-custom-logo wp-embed-responsive ctdb-layout-classic ctdb-archive-layout-classic ctdb-pixl ctdb-user-can-view ctdb-user-can-post">
<script>
(function() {
var request, b = document.body, c = 'className', cs = 'customize-support', rcs = new RegExp('(^|\\s+)(no-)?'+cs+'(\\s+|$)');
request = true;
b[c] = b[c].replace( rcs, ' ' );
// The customizer requires postMessage and CORS (if the site is cross domain).
b[c] += ( window.postMessage && request ? ' ' : ' no-' ) + cs;
}());
</script>
<div id="wpadminbar" class="nojq nojs">
<div class="quicklinks" id="wp-toolbar" role="navigation" aria-label="Toolbar">
<ul id='wp-admin-bar-root-default' class="ab-top-menu ab-top-menu"><li id='wp-admin-bar-blog' class="menupop my-sites mb-trackable"><a class='ab-item' aria-haspopup="true" href='https://wordpress.com/sites/elearn767.wpcomstaging.com'>My Site</a><div class="ab-sub-wrapper"></div></li><li id='wp-admin-bar-newdash' class="mb-trackable"><a class='ab-item' href='https://wordpress.com/read'>Reader</a></li></ul><ul id='wp-admin-bar-top-secondary' class="ab-top-secondary ab-top-menu"><li id='wp-admin-bar-notes' class="menupop mb-trackable"><a class='ab-item' href='https://wordpress.com/notifications'><span id="wpnt-notes-unread-count" class="wpnt-loading wpn-read"></span>
<span class="screen-reader-text">Notifications</span>
<span class="noticon noticon-bell"></span></a><div id="wpnt-notes-panel2" style="display:none" lang="en" dir="ltr"><div class="wpnt-notes-panel-header"><span class="wpnt-notes-header">Notifications</span><span class="wpnt-notes-panel-link"></span></div></div></li><li id='wp-admin-bar-my-account' class="with-avatar mb-trackable"><a class='ab-item' href='https://wordpress.com/me'><img src="https://elearn767.wpcomstaging.com/wp-content/uploads/2024/01/IMG_2254.png" class="gravatar avatar avatar-32 um-avatar um-avatar-default" width="32" height="32" alt="etharjur" data-default="https://elearn767.wpcomstaging.com/wp-content/uploads/2024/01/IMG_2254.png" onerror="if ( ! this.getAttribute('data-load-error') ){ this.setAttribute('data-load-error', '1');this.setAttribute('src', this.getAttribute('data-default'));}" loading="lazy" /><span class="ab-text">Me</span></a></li><li id='wp-admin-bar-ab-new-post' class="mb-trackable"><a class='ab-item' href='https://elearn767.wpcomstaging.com/wp-admin/post-new.php'><span>Write</span></a></li></ul> </div>
<a class="screen-reader-shortcut" href="https://elearn767.wpcomstaging.com/wp-login.php?action=logout&_wpnonce=c515b5d0a0">Log Out</a>
</div>
<div class="wp-site-blocks"><header class="wp-block-template-part">
<div class="wp-block-group has-global-padding is-layout-constrained wp-container-core-group-is-layout-3 wp-block-group-is-layout-constrained" style="padding-top:0;padding-right:calc(2 * var(--wp--custom--spacing--outer));padding-bottom:0;padding-left:calc(2 * var(--wp--custom--spacing--outer))">
<div class="wp-block-group alignfull is-content-justification-left is-nowrap is-layout-flex wp-container-core-group-is-layout-2 wp-block-group-is-layout-flex"><div style="padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;" class="pixl-shadow wp-block-site-logo"><a href="https://elearn767.wpcomstaging.com/" class="custom-logo-link" rel="home"><img width="114" height="114" src="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2023/12/untitled_artwork.png?fit=5000%2C5000&ssl=1" class="custom-logo" alt="LEarn" decoding="async" data-attachment-id="51" data-permalink="https://elearn767.wpcomstaging.com/?attachment_id=51" data-orig-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2023/12/untitled_artwork.png?fit=5000%2C5000&ssl=1" data-orig-size="5000,5000" data-comments-opened="1" data-image-meta="{"aperture":"0","credit":"","camera":"","caption":"","created_timestamp":"0","copyright":"","focal_length":"0","iso":"0","shutter_speed":"0","title":"","orientation":"0"}" data-image-title="untitled_artwork" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2023/12/untitled_artwork.png?fit=300%2C300&ssl=1" data-large-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2023/12/untitled_artwork.png?fit=1024%2C1024&ssl=1" /></a></div>
<div class="wp-block-columns is-layout-flex wp-container-core-columns-is-layout-1 wp-block-columns-is-layout-flex">
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow" style="flex-basis:100%">
<div class="wp-block-group alignfull pixl-shadow pixl-header is-content-justification-center is-layout-flex wp-container-core-group-is-layout-1 wp-block-group-is-layout-flex" style="border-width:2px;padding-top:var(--wp--preset--spacing--30);padding-right:var(--wp--preset--spacing--30);padding-bottom:var(--wp--preset--spacing--30);padding-left:var(--wp--preset--spacing--30)"><h1 class="wp-block-site-title"><a href="https://elearn767.wpcomstaging.com" target="_self" rel="home">LEarn</a></h1>
<nav class="is-responsive items-justified-left wp-block-navigation is-horizontal is-content-justification-left is-layout-flex wp-container-core-navigation-is-layout-1 wp-block-navigation-is-layout-flex" aria-label="التنقل"
data-wp-interactive='{"namespace":"core/navigation"}'
data-wp-context='{"overlayOpenedBy":[],"type":"overlay","roleAttribute":"","ariaLabel":"Menu"}'
data-wp-init="callbacks.initNav" data-wp-class--is-collapsed="context.isCollapsed"><button aria-haspopup="dialog" aria-label="Open menu" class="wp-block-navigation__responsive-container-open"
data-wp-on--click="actions.openMenuOnClick"
data-wp-on--keydown="actions.handleMenuKeydown"
><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" aria-hidden="true" focusable="false"><rect x="4" y="7.5" width="16" height="1.5" /><rect x="4" y="15" width="16" height="1.5" /></svg></button>
<div class="wp-block-navigation__responsive-container has-text-color has-foreground-color has-background has-background-background-color" style="" id="modal-1"
data-wp-class--has-modal-open="state.isMenuOpen"
data-wp-class--is-menu-open="state.isMenuOpen"
data-wp-watch="callbacks.initMenu"
data-wp-on--keydown="actions.handleMenuKeydown"
data-wp-on--focusout="actions.handleMenuFocusout"
tabindex="-1"
>
<div class="wp-block-navigation__responsive-close" tabindex="-1">
<div aria-label="" aria-modal="" role="" class="wp-block-navigation__responsive-dialog"
data-wp-bind--aria-modal="state.ariaModal"
data-wp-bind--aria-label="state.ariaLabel"
data-wp-bind--role="state.roleAttribute"
>
<button aria-label="Close menu" class="wp-block-navigation__responsive-container-close"
data-wp-on--click="actions.closeMenuOnClick"
><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" aria-hidden="true" focusable="false"><path d="M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"></path></svg></button>
<div class="wp-block-navigation__responsive-container-content"
data-wp-watch="callbacks.focusFirstElement"
id="modal-1-content">
<ul class="wp-block-navigation__container is-responsive items-justified-left wp-block-navigation"><li class=" wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://elearn767.wpcomstaging.com/"><span class="wp-block-navigation-item__label">Home</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://elearn767.wpcomstaging.com/60-2/"><span class="wp-block-navigation-item__label">Course List</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://elearn767.wpcomstaging.com/discussion-board/"><span class="wp-block-navigation-item__label">Discussion Board</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://elearn767.wpcomstaging.com/login-2/"><span class="wp-block-navigation-item__label">Login</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://elearn767.wpcomstaging.com/account/"><span class="wp-block-navigation-item__label">Profile Page</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content" href="https://elearn767.wpcomstaging.com/288-2/"><span class="wp-block-navigation-item__label">Challenges</span></a></li></ul>
</div>
</div>
</div>
</div></nav></div>
</div>
</div>
<form role="search" method="get" action="https://elearn767.wpcomstaging.com/" class="wp-block-search__button-outside wp-block-search__text-button wp-block-search" ><label class="wp-block-search__label screen-reader-text" for="wp-block-search__input-2" >بحث</label><div class="wp-block-search__inside-wrapper " ><input class="wp-block-search__input" id="wp-block-search__input-2" placeholder="" value="" type="search" name="s" required /><button aria-label="Search" class="wp-block-search__button wp-element-button" type="submit" >Search</button></div></form></div>
</div>
<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
</header>
<main class="wp-block-group is-layout-flow wp-block-group-is-layout-flow">
<div class="wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained">
<h2 class="wp-block-post-title">How to Become a Software Engineer?</h2>
</div>
<div class="entry-content wp-block-post-content has-global-padding is-layout-constrained wp-block-post-content-is-layout-constrained">
<p>By Simplilearn</p>
<figure class="wp-block-image"><img decoding="async" src="https://i0.wp.com/www.simplilearn.com/ice9/free_resources_article_thumb/how_to_become_a_software_engineer.jpg?ssl=1" alt="How to Become a Software Engineer?" title="How to Become a Software Engineer?" data-recalc-dims="1"/></figure>
<h2 class="wp-block-heading"></h2>
<p>Software engineering is a cornerstone of technological progress in an era where software is seamlessly integrated into every aspect of our lives. It encompasses the art and science of designing, developing, testing, and maintaining software systems. From small utility applications to complex, mission-critical systems, software engineering is the discipline that transforms concepts into functional, reliable, and user-friendly software.</p>
<h2 class="wp-block-heading" id="what_is_software_engineering">What Is Software Engineering?</h2>
<p>Software Engineering is a computer science and engineering discipline that designs, develops, tests and maintains software systems. It involves applying systematic and structured approaches to software development to ensure that software products are reliable, efficient, and meet the needs of users and organizations. SE encompasses various processes, principles, and methodologies to produce high-quality software.</p>
<h3 class="wp-block-heading">1. Requirements Analysis</h3>
<p>The first step in software engineering is understanding the problem that needs to be solved. Software engineers work closely with stakeholders to gather and analyze requirements.</p>
<h3 class="wp-block-heading">2. Design</h3>
<p>Once the requirements are clear, software engineers design the architecture and structure of the software. This includes creating high-level and low-level designs, specifying data structures, and planning the overall system layout. Good design is crucial to ensure scalability, maintainability, and performance.</p>
<h3 class="wp-block-heading">3. Implementation</h3>
<p>Coding is where the rubber meets the road. Software engineers write code using programming languages, turning the design into a working product. They must follow best practices and coding standards to create clean, readable, and maintainable code.</p>
<h3 class="wp-block-heading">4. Testing</h3>
<p>Quality assurance forms a foundational pillar of software engineering. Engineers engage in diverse testing processes, such as unit testing, integration testing, and user acceptance testing, to guarantee that the software operates flawlessly and aligns with the defined specifications. Any identified bugs or issues are promptly addressed and resolved during this phase.</p>
<h3 class="wp-block-heading">5. Maintenance</h3>
<p>Software isn’t a one-time endeavor. Following deployment, software engineers are responsible for ongoing support and maintenance. This entails rectifying issues, introducing fresh functionalities, and ensuring the software stays aligned with advancing technologies and evolving needs.</p>
<h2 class="wp-block-heading" id="the_importance_of_software_engineering_in_todays_techdriven_world">The Importance of Software Engineering in Today’s Tech-Driven World</h2>
<ol>
<li>Innovation drives progress, and software engineering is at the forefront of innovation. It creates new products and services that enhance our lives, from self-driving cars to healthcare apps that monitor our well-being.</li>
<li>Software engineering automates tasks, making processes more efficient and cost-effective. Businesses can streamline operations and improve productivity with the right software solutions.</li>
<li>Software engineering connects people and devices. The internet, social media platforms, and communication apps have revolutionized how we interact and share information globally.</li>
<li>Software engineering allows for scalable solutions in a world where businesses can experience rapid growth. Companies can adapt and expand their software systems to meet increasing demand.</li>
<li>As the digital landscape expands, so does the need for cybersecurity. Software engineers help develop secure systems and protect sensitive data from cyber threats.</li>
<li>Software engineering has made technology more accessible to a wider audience. User-friendly interfaces and intuitive design make using digital tools easier for people of all ages and backgrounds.</li>
</ol>
<h2 class="wp-block-heading" id="software_engineer_roles_and_responsibilities">Software Engineer Roles and Responsibilities</h2>
<p>Software engineer roles and responsibilities can vary depending on the specific company, project, and team structure. However, here is a list of common roles and responsibilities that software engineers often have.</p>
<h3 class="wp-block-heading">1. Software Development: </h3>
<ul>
<li>Design, code, test, and maintain software applications.</li>
<li>Develop clean, efficient, and maintainable code.</li>
<li>Use programming languages and development frameworks.</li>
</ul>
<h3 class="wp-block-heading">2. Problem Solving:</h3>
<ul>
<li>Analyze complex technical problems and propose solutions.</li>
<li>Debug and troubleshoot issues in software systems.</li>
<li>Optimize code and algorithms for performance.</li>
</ul>
<h3 class="wp-block-heading">3. System Architecture:</h3>
<ul>
<li>Participate in architectural design discussions.</li>
<li>Collaborate with system architects to define software architecture.</li>
</ul>
<h3 class="wp-block-heading">4. Testing and Quality Assurance:</h3>
<ul>
<li>Write unit tests, integration tests, and perform code reviews.</li>
<li>Ensure software meets quality and security standards.</li>
<li>Perform automated and manual testing.</li>
</ul>
<h3 class="wp-block-heading">5. Documentation:</h3>
<ul>
<li>Create technical documentation for code, APIs, and systems.</li>
<li>Maintain documentation and keep it up-to-date.</li>
</ul>
<h3 class="wp-block-heading">6. Collaboration:</h3>
<ul>
<li>Work closely with cross-functional teams (designers, product managers, QA engineers).</li>
</ul>
<h3 class="wp-block-heading">7. Version Control:</h3>
<ul>
<li>Use version control tools to manage code repositories.</li>
<li>Understand branching, merging, and conflict resolution.</li>
</ul>
<h3 class="wp-block-heading">8. Agile/Scrum:</h3>
<ul>
<li>Follow Agile methodologies for project management.</li>
<li>Participate in daily stand-ups, sprint planning, and retrospectives.</li>
</ul>
<h3 class="wp-block-heading">9. Continuous Integration/Continuous Deployment (CI/CD):</h3>
<ul>
<li>Set up and maintain CI/CD pipelines for automated testing and deployment.</li>
<li>Ensure code is integrated and deployed efficiently.</li>
</ul>
<h3 class="wp-block-heading">10. Performance Optimization:</h3>
<ul>
<li>Identify and resolve performance bottlenecks.</li>
<li>Optimize algorithms, database queries, and code for efficiency.</li>
</ul>
<h3 class="wp-block-heading">11. Security:</h3>
<ul>
<li>Be aware of security best practices and potential vulnerabilities.</li>
<li>Implement security measures to protect software and data.</li>
</ul>
<h3 class="wp-block-heading">12. Maintenance and Updates:</h3>
<ul>
<li>Provide ongoing support for deployed software.</li>
<li>Apply updates, patches, and bug fixes as needed.</li>
</ul>
<h3 class="wp-block-heading">13. Technical Research:</h3>
<ul>
<li>Research and evaluate new tools, libraries, and frameworks.</li>
</ul>
<h3 class="wp-block-heading">14. Mentoring and Knowledge Sharing:</h3>
<ul>
<li>Conduct code reviews and provide constructive feedback.</li>
</ul>
<h3 class="wp-block-heading">15. Communication:</h3>
<ul>
<li>Communicate technical information effectively to non-technical stakeholders.</li>
<li>Document and communicate project progress and issues.</li>
</ul>
<h3 class="wp-block-heading">16. Continuous Learning:</h3>
<ul>
<li>Maintain and improve technical skills and knowledge.</li>
<li>Attend conferences, workshops, and training programs.</li>
</ul>
<h2 class="wp-block-heading" id="15_essential_software_engineer_skills">15 Essential Software Engineer Skills</h2>
<ol>
<li>Communication: Engineers must convey ideas, discuss solutions, and collaborate with cross-functional teams, including designers, product managers, and non-technical stakeholders.</li>
<li>Problem-solving: Software engineers are problem solvers by nature. They identify issues, analyze them, and develop creative and efficient solutions. The ability to think critically and troubleshoot is invaluable.</li>
<li>Coding: At its core, software engineering is about writing code. Strong coding skills are essential, including knowledge of best practices, clean code principles, and version control systems like Git.</li>
<li>Programming Languages: Proficiency in programming languages is a must. Depending on the project, you may work with languages like Java, C++, C#, Ruby, etc. The key is to master the languages relevant to your field.</li>
<li>Software Testing: Writing code is only part of the job. Ensuring the code works as intended through rigorous testing is crucial. Familiarity with testing frameworks and methodologies is vital for delivering reliable software.</li>
<li>Python: It is a widely used programming language known for its simplicity and readability. It’s a popular choice for web development, data analysis, and artificial intelligence, making it a valuable skill for software engineers.</li>
<li>Software Development: Understanding the whole SDLC, from requirements gathering to deployment and maintenance, is essential. Knowledge of methodologies like Agile and Scrum can be beneficial.</li>
<li>Software Engineering Principles: Familiarity with software engineering principles, including design patterns, architectural concepts, and scalability, helps create robust and maintainable software systems.</li>
<li>JavaScript: For front-end development, JavaScript is a dominant player. It powers interactivity and user experiences on the web. Proficiency in JavaScript and its associated frameworks (e.g., React, Angular, Vue.js) is highly sought after.</li>
<li>Project Management: Software engineers often work on complex projects. Project management skills, including task prioritization, time management, and Agile methodologies, help ensure successful project completion.</li>
<li>Creativity: Software engineering is not just about writing code but crafting elegant solutions. Creative thinking can lead to innovative approaches and unique problem-solving.</li>
<li>Design: Understanding user experience (UX) and user interface (UI) design principles is essential, especially for front-end developers. Design skills contribute to creating user-friendly applications.</li>
<li>Teamwork: Collaboration is a cornerstone of software engineering. Software engineers must work effectively within teams, share knowledge, and contribute to collective success.</li>
<li>SQL: Databases are a fundamental part of many software applications. SQL (Structured Query Language) knowledge is essential for managing and querying databases efficiently.</li>
<li>HTML: For web development, HTML is the foundation of all web pages. Understanding HTML and its role in structuring web content is crucial for front-end developers.</li>
</ol>
<h2 class="wp-block-heading" id="how_to_become_a_software_engineer_software_engineer_roadmap">How to Become a Software Engineer: Software Engineer Roadmap</h2>
<p>Becoming a software engineer is an exciting journey, offering numerous opportunities for learning and growth in the ever-evolving tech industry. Whether you’re just starting or considering a career change, this roadmap will guide you through the steps to become a software engineer and embark on a rewarding path in technology.</p>
<h3 class="wp-block-heading">Step 1: Lay a Strong Educational Foundation</h3>
<p>Establishing a solid educational background is the first step. Most software engineers hold a bachelor’s degree in computer science or a related field.</p>
<h3 class="wp-block-heading">Step 2: Master Programming Languages</h3>
<p>Programming is the heart and soul of software engineering. Depending on your career goals, you must become proficient in Python, Java, JavaScript, C++, etc. Begin by learning the basics and gradually move on to more advanced topics.</p>
<h3 class="wp-block-heading">Step 3: Dive into Data Structures and Algorithms</h3>
<p>They are the building blocks of software development. These concepts are essential for solving complex problems efficiently. Invest time in understanding how data structures work, practice implementing algorithms, and learn how to analyze their time and space complexity.</p>
<h3 class="wp-block-heading">Step 4: Build Personal Projects</h3>
<p>Hands-on experience is crucial in software engineering. Create personal projects to apply what you’ve learned. Start with small, manageable projects and gradually work up to more complex ones. Building your own applications or websites will improve your skills and give you a portfolio to showcase to potential employers.</p>
<h3 class="wp-block-heading">Step 5: Contribute to Open Source</h3>
<p>Collaborating on open-source projects is a fantastic way to gain real-world experience, work with experienced developers, and give back to the community. It’s an opportunity to improve your coding skills, learn from others, and build a reputation in the software engineering world.</p>
<h3 class="wp-block-heading">Step 6: Seek Internships and Co-op Programs</h3>
<p>Internships and co-op programs with tech companies provide invaluable hands-on experience and insight into the industry. Apply for these opportunities to gain exposure to real-world software engineering projects and learn from professionals.</p>
<h3 class="wp-block-heading">Step 7: Network and Connect</h3>
<p>Networking is an essential part of any career. Attend tech meetup conferences and join online forums to connect with professionals in the field. Use platforms like LinkedIn to build your professional network and stay updated on industry trends.</p>
<h3 class="wp-block-heading">Step 8: Keep Learning</h3>
<p>The tech industry constantly evolves, so staying up-to-date is crucial. Consider pursuing certifications, online courses, or additional degrees to expand your knowledge and skills.</p>
<h3 class="wp-block-heading">Step 9: Prepare for Technical Interviews</h3>
<p>When you’re ready to enter the job market, be prepared for technical interviews. Practice coding challenges, algorithm questions, and system design discussions. Many resources, including books, websites, and coding platforms like LeetCode and HackerRank, are available to help you prepare.</p>
<h3 class="wp-block-heading">Step 10: Start Your Software Engineering Career</h3>
<p>Once you’ve acquired the necessary skills and prepared for interviews, apply for software engineering positions. Optimize your curriculum vitae and cover letter to highlight your skills and experiences. Be open to entry-level positions to gain practical experience and work your way up.</p>
<h2 class="wp-block-heading" id="software_engineer_career_path_progression">Software Engineer Career Path Progression</h2>
<h3 class="wp-block-heading">The Foundation: Junior Software Engineer</h3>
<p>Your journey typically begins as a Junior Software Engineer. You are like a sponge at this stage, absorbing knowledge and gaining practical experience. Your responsibilities may include writing code, debugging, and assisting with smaller projects. Here are some tips for success in this role:</p>
<ol>
<li>Learn Continuously: Stay up-to-date with the latest programming languages and technologies.</li>
<li>Seek Mentorship: Don’t hesitate to ask questions and seek guidance from senior colleagues.</li>
<li>Contribute Actively: Show enthusiasm and take ownership of your assigned tasks.</li>
</ol>
<h3 class="wp-block-heading">The Ascent: Software Engineer</h3>
<p>As you gain experience and confidence, you’ll transition into the role of a Software Engineer. You’ll tackle more complex projects, participate in architectural discussions, and become an integral part of the development team. Here’s how to thrive in this stage:</p>
<ol>
<li>Problem Solving: Sharpen your problem-solving skills by tackling challenging coding problems and optimizing code for efficiency.</li>
<li>Collaboration: Embrace teamwork and communicate effectively with your peers and other stakeholders.</li>
<li>Code Quality: Focus on writing clean, maintainable code that adheres to best practices.</li>
</ol>
<h3 class="wp-block-heading">Reaching New Heights: Senior Software Engineer</h3>
<p>The next rung on the ladder is the Senior Software Engineer position. At this stage, you’re recognized for your expertise and leadership within the team. You may take on mentoring roles, guide architectural decisions, and drive projects to success. To excel as a Senior Software Engineer:</p>
<ol>
<li>Mentorship: Share your knowledge and help junior engineers grow.</li>
<li>Architectural Thinking: Think beyond code and consider system-level design and architecture.</li>
<li>Leadership: Lead by example and inspire others with your work ethic and problem-solving abilities.</li>
</ol>
<h3 class="wp-block-heading">Beyond the Horizon: Lead Roles and Beyond</h3>
<p>As your career progresses, you may choose to specialize in a particular area, such as becoming a Principal/Lead Engineer, Engineering Manager, or even an Architect. Each of these roles involves greater responsibilities, leadership, and strategic decision-making. Here’s what to focus on:</p>
<ol>
<li>Technical Leadership: Drive technical initiatives and shape the technical direction of your projects and teams.</li>
<li>Management Skills: If you transition into management, develop strong leadership and communication skills to guide your team effectively.</li>
<li>Innovation: Continue to innovate and stay at the forefront of technology trends.</li>
</ol>
<h3 class="wp-block-heading">Pinnacle of Success: Technical Director or VP of Engineering</h3>
<p>You may reach roles like Technical Director or VP of Engineering at the highest echelons of the software engineering career ladder. Here, you’ll be responsible for shaping the overall technical strategy of the organization, making critical decisions, and managing larger teams.</p>
<h2 class="wp-block-heading" id="worklife_balance_in_software_engineering">Work-life Balance in Software Engineering</h2>
<p>Software engineers are dedicated to solving complex problems and creating innovative solutions. However, this commitment can sometimes blur the line between work and personal life. The nature of the profession, including tight project deadlines, on-call responsibilities, and the ever-evolving technology landscape, can lead to burnout if work-life balance is not prioritized.</p>
<h3 class="wp-block-heading">The Importance of Work-Life Balance</h3>
<ol>
<li>Preventing Burnout: Burnout is a real concern in software engineering due to the high-pressure environment. A healthy work-life balance helps prevent burnout, reduce stress and improve mental health.</li>
<li>Enhancing Productivity: Paradoxically, overworking can lead to decreased productivity. Regular breaks and time away from work allow software engineers to recharge and return to tasks with renewed focus and creativity.</li>
<li>Maintaining Relationships: Neglecting personal relationships can adversely affect mental health and happiness. Work-life balance enables you to spend quality time with loved ones.</li>
<li>Long-Term Career Sustainability: Burnout can lead to career stagnation or derailment. A sustainable work-life balance is crucial for a long and successful career.</li>
</ol>
<h3 class="wp-block-heading">Practical Tips for Achieving Work-Life Balance</h3>
<h3 class="wp-block-heading">1. Set Boundaries:</h3>
<ul>
<li>Define clear boundaries between work and personal life.</li>
<li>Establish set working hours and stick to them.</li>
</ul>