-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathJava1Article1.html
More file actions
1363 lines (1005 loc) · 152 KB
/
Java1Article1.html
File metadata and controls
1363 lines (1005 loc) · 152 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 start learning Java – 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 start learning Java Comments Feed" href="https://elearn767.wpcomstaging.com/2024/01/26/how-to-start-learning-java/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-d11a1409a3a16f58544e51ec367da6ef' href='https://elearn767.wpcomstaging.com/_static/??-eJytVluW0zAM3RCup5TCF4elcBxbTUX9wrIbwuqR02Q6FBo6Zn5qyZKu9U6HKHTwGXyW0ZYePUldKAcnEvRIOamMwYtDSE50Ba2BJAbMR0Glc0hUhU551UOSyjj0UhNJpzIkVFYgg9OGr94Nfz70DXJU+iRdMMUCyQSW7YyIgfINdw+iL8x2kHo5OSc7G/RJWOySSuOFI+nVGfspDkl5tPBfYOg41jfAoaBrgiz6yqzB3aZJqxQKgZU0YORydMWbButZIJaLewBDNEi6/JT5CI4BDBxUsXnd52cjRQRczHzExKVUKY/ywLpCDUDBgdhvtrvN09Q0B7Xh/nkUsVosd6zsurBuLSbVS8N2QSXzEuh1+Q/OsZytSkc6YZwmhKVcTiZm8V+kjz5g8QR3fJprEPGHfZ3TThGPZKfSCyqcISU0cHe6uMxYR1k4cF0d8GvGiptjWkn6HXMeBPbve4E0ioJXqhUqY6Tx8tsKwVturCHVsxXDQq/0pbunrXelBDbHtgK6Pi5roDzsoPP75WyAmTvggBZKtEGZVlci6pMyLFzWytsBVebt0Fi3Ba0mqi6E4NuznIAiFxzPrQ4wxrQrqDUdOoXIX5rlbHcjplB7ph1AaR2Kb+mSZWnxV6DdOlgjHmjU2+VLR5XAKGPGiUTf/8vyK3r9/Bch9IF+Yx55u3o801X1i/u8/fT0cbffftjvfgHnj9RU' 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/532" /><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-start-learning-java/" />
<link rel='shortlink' href='https://wp.me/pfmgSF-8A' />
<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-start-learning-java%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-start-learning-java%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 Pavlo Plynko The Java language Java is not just a programming language. It's an entire software platform with extensive capabilities. The main components of the platform are: Libraries and classes (the core of the language). They provide Java's basic programming capabilities: exception handling, multithreading, collections, logging, reflection, security, networking, XML processing, serialization, regular expressions.…" />
<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="article" />
<meta property="og:title" content="How to start learning Java" />
<meta property="og:url" content="https://elearn767.wpcomstaging.com/2024/01/26/how-to-start-learning-java/" />
<meta property="og:description" content="By Pavlo Plynko The Java language Java is not just a programming language. It’s an entire software platform with extensive capabilities. The main components of the platform are: Libraries and…" />
<meta property="article:published_time" content="2024-01-26T15:55:31+00:00" />
<meta property="article:modified_time" content="2024-01-28T03:55:27+00:00" />
<meta property="og:site_name" content="LEarn" />
<meta property="og:image" content="https://elearn767.wpcomstaging.com/wp-content/uploads/2024/01/512-1.jpeg" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="406" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:text:title" content="How to start learning Java" />
<meta name="twitter:image" content="https://elearn767.wpcomstaging.com/wp-content/uploads/2024/01/512-1.jpeg?w=640" />
<meta name="twitter:card" content="summary_large_image" />
<!-- 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-532 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 start learning Java</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 Pavlo Plynko</p>
<h2 class="wp-block-heading"><strong>The Java language</strong></h2>
<p class="has-text-align-left">Java is not just a programming language. It’s an entire software platform with extensive capabilities. The main components of the platform are:</p>
<ul>
<li>Libraries and classes (the core of the language). They provide Java’s basic programming capabilities: exception handling, multithreading, collections, logging, reflection, security, networking, XML processing, serialization, regular expressions.</li>
<li>Basic tools for writing and running Java programs.</li>
<li>Tools for deploying and automatically launching applications.</li>
<li>Tools for creating a frontend (GUI, user interface). These are found in the classes of the JavaFX, Swing, and Java2D libraries.</li>
<li>Libraries for working with databases remotely over the network, such as JDBC, JNDI, RMI and Java RMI-IIOP.</li>
</ul>
<p>If you want to learn more about Java classes and tools, read the <a href="https://docs.oracle.com/javase/8/docs/index.html" rel="noreferrer noopener" target="_blank">Oracle documentation</a>. It has everything. Java JDK 1.0, the first version, included “only” a few hundred classes. But now that number has increased to several thousand. Over the life of the language, its creators have made a huge number of changes that increase its security, functionality and portability. Thanks to this continuous improvement and support from developers, Java has always been in step with the development of IT technologies. As a result, we now we have a state-of-the-art language whose main characteristics are:</p>
<ul>
<li>Low barrier to entry.<br>Learning Java is easier than most languages with a C-like syntax.</li>
<li>Object orientation.<br>Programs in Java are built based on objects and interactions between objects. This lets you enjoy all the advantages of OOP.</li>
<li>Portability.<br>Because an interpreter (the Java virtual machine) is used, programs can be run on various platforms and devices.</li>
<li>Platform independence<br>A Java program written for one platform is compiled into intermediate byte code that can be run on other platforms, because it is interpreted by a JVM for each specific platform.</li>
<li>Advanced multithreading.<br>Java tools let you control the execution of multiple threads, which means you can create multithreaded applications.</li>
<li>Security.<br>Because the JVM has built-in bytecode verification, and Java has no manual memory management, tracks stack overflows, and has various APIs that let you control security, you can create really safe applications in Java.</li>
<li>Fault tolerance.<br>The exception mechanism increases programs’ fault tolerance and reduces the number of errors, both at compile time and run time.</li>
<li>Interpretability.<br>The Java interpreter can execute Java bytecode on any machine that has a JVM and JRE.</li>
<li>Distributability.<br>Java has tools for creating distributed applications.</li>
<li>Performance.<br>A <a href="https://en.wikipedia.org/wiki/Just-in-time_compilation" target="_blank" rel="noreferrer noopener">JIT</a> (just-in-time) compiler provides high speed performance comparable to C and C++.</li>
</ul>
<p></p>
<h2 class="wp-block-heading has-text-align-left"><strong>How to start programming in Java?</strong></h2>
<p>To start <a href="https://codegym.cc/quests/lectures/questsyntax.level00.lecture00" target="_blank" rel="noreferrer noopener">learning Java from scratch</a>, you should dig into some basic concepts: what’s included in the Java language, what’s a Java program, and how does it run? Then move on to the language’s syntax and basics, and study libraries. After reading a couple of articles about Java, you can tackle the basics. </p>
<p>The following flowchart clearly demonstrates the sequence of steps:</p>
<figure class="wp-block-image size-full"><img fetchpriority="high" decoding="async" width="512" height="406" data-attachment-id="557" data-permalink="https://elearn767.wpcomstaging.com/2024/01/26/how-to-start-learning-java/512-1/" data-orig-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/512-1.jpeg?fit=512%2C406&ssl=1" data-orig-size="512,406" 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="512-1" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/512-1.jpeg?fit=300%2C238&ssl=1" data-large-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/512-1.jpeg?fit=512%2C406&ssl=1" src="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/512-1.jpeg?resize=512%2C406&ssl=1" alt="" class="wp-image-557" srcset="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/512-1.jpeg?w=512&ssl=1 512w, https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/512-1.jpeg?resize=300%2C238&ssl=1 300w" sizes="(max-width: 512px) 100vw, 512px" data-recalc-dims="1" /></figure>
<h2 class="wp-block-heading"><strong>What do you need to program in Java?</strong></h2>
<p>First, you need to install software for developing and running programs — the Java Development Kit (JDK). After that, configure the JDK on your computer, download and install an integrated development environment (IDE), which is an environment for software development. The most popular IDE is IntelliJ IDEA. Alternatives are Eclipse, NetBeans, JCreator, and even an ordinary text editor.</p>
<p></p>
<h2 class="wp-block-heading"><strong>Installing Java on your computer</strong></h2>
<p>As we’ve already seen, when we learn Java from scratch, the first step is to install the JDK. For this, you need to perform a few simple operations:</p>
<ol>
<li>Go to the <a href="https://www.java.com/en/download/help/windows_manual_download.xml" target="_blank" rel="noreferrer noopener">Oracle website</a>.</li>
<li>Select and download the installation file for your operating system.</li>
<li>Perform the installation, following the installer’s recommendations.</li>
<li>Set an environment variable if you’re using Windows.</li>
</ol>
<h2 class="wp-block-heading"><strong>Basic definitions</strong></h2>
<p>If you’re just starting to learn Java, you will certainly encounter the following terms: </p>
<p>JVM stands for Java virtual machine. This is a platform-dependent software module that serves to interpret the source bytecode into machine code and executes it.</p>
<p> JRE stands for Java Runtime Environment. It includes the JVM implementation for a specific platform and a set of libraries needed to run Java programs. </p>
<p>JDK stands for Java Development Kit, which is a set of developer tools needed to write Java programs. It includes a compiler, JRE, standard Java libraries, documentation, and various utilities. </p>
<p>Source code is found in a text file written in the Java language with the .java extension.</p>
<p>Bytecode is machine-independent low-level code that consists of a set of instructions for the JVM.</p>
<p>Machine code is binary machine instructions that are executed directly by the processor. </p>
<p>Compile means to convert source code to bytecode. </p>
<p>Interpret means to convert bytecode to machine code. </p>
<p>A platform is a software and hardware environment for running programs. The most popular platforms are Microsoft Windows, Linux, Solaris OS and Mac OS. </p>
<p>This diagram will help you better understand the concepts of JVM, JRE and JDK:</p>
<figure class="wp-block-image size-full"><img decoding="async" width="800" height="457" data-attachment-id="571" data-permalink="https://elearn767.wpcomstaging.com/2024/01/26/how-to-start-learning-java/image-1/" data-orig-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-1.png?fit=800%2C457&ssl=1" data-orig-size="800,457" 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="image-1" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-1.png?fit=300%2C171&ssl=1" data-large-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-1.png?fit=800%2C457&ssl=1" src="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-1.png?resize=800%2C457&ssl=1" alt="" class="wp-image-571" srcset="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-1.png?w=800&ssl=1 800w, https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-1.png?resize=300%2C171&ssl=1 300w, https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-1.png?resize=768%2C439&ssl=1 768w" sizes="(max-width: 800px) 100vw, 800px" data-recalc-dims="1" /></figure>
<p></p>
<h2 class="wp-block-heading"><strong>Program lifecycle</strong></h2>
<p>A Java program’s life begins when source code is written in a text file. Usually, this is done in a special programming environment called an integrated development environment (IDE), but simple programs can be typed into a text editor, even Notepad, which comes with any edition of Windows. The source code must be saved in a file with the .java extension.</p>
<p><strong>Example program:</strong> HelloWorld.java:</p>
<figure class="wp-block-image size-full"><img decoding="async" width="876" height="195" data-attachment-id="581" data-permalink="https://elearn767.wpcomstaging.com/2024/01/26/how-to-start-learning-java/untitled/" data-orig-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled.png?fit=876%2C195&ssl=1" data-orig-size="876,195" 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" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled.png?fit=300%2C67&ssl=1" data-large-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled.png?fit=876%2C195&ssl=1" src="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled.png?resize=876%2C195&ssl=1" alt="" class="wp-image-581" srcset="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled.png?w=876&ssl=1 876w, https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled.png?resize=300%2C67&ssl=1 300w, https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled.png?resize=768%2C171&ssl=1 768w" sizes="(max-width: 876px) 100vw, 876px" data-recalc-dims="1" /></figure>
<p>Before this source code is executed, it must be compiled it into bytecode by a compiler. A compiler is a utility that is part of the JDK. It produces a file with the .class extension. This file contains bytecode, which are instructions for the JVM. Their format resembles assembly language. Our HelloWorld.java program will be compiled into a HelloWorld.class file. The Java platform does not provide tools for editing bytecode, but you can view it. To view the bytecode of a Java program, you can use the javap disassembler utility, which is included in the JDK. HelloWorld.class will contain the following bytecode:</p>
<figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="430" data-attachment-id="584" data-permalink="https://elearn767.wpcomstaging.com/2024/01/26/how-to-start-learning-java/untitled1/" data-orig-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled1.png?fit=1469%2C617&ssl=1" data-orig-size="1469,617" 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="Untitled1" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled1.png?fit=300%2C126&ssl=1" data-large-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled1.png?fit=1024%2C430&ssl=1" src="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled1.png?resize=1024%2C430&ssl=1" alt="" class="wp-image-584" srcset="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled1.png?resize=1024%2C430&ssl=1 1024w, https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled1.png?resize=300%2C126&ssl=1 300w, https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled1.png?resize=768%2C323&ssl=1 768w, https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled1.png?resize=1200%2C504&ssl=1 1200w, https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/Untitled1.png?w=1469&ssl=1 1469w" sizes="(max-width: 1000px) 100vw, 1000px" data-recalc-dims="1" /></figure>
<p>Now our program is stored in a compiled form in the HelloWorld.class file. To run it on any platform, the JRE must be installed. The JVM provides the ability to port Java programs to any platform.</p>
<p>Execution means execution of the bytecode by the Java virtual machine. Programs are executed using the java utility. You need to specify the name of the compiled file. Execution happens as follows:</p>
<ol>
<li>The JVM is loaded into the computer’s memory. Basically, this is a program that serves to run the Java programs we write.</li>
<li>Using the bootstrap classloader, the JVM loads and initializes our class in memory. In our example, this is the HelloWorld class.</li>
<li>Next, the JVM looks for a public static void main(String []) method in our class.</li>
<li>The code of the main method is executed. If execution of the program requires other classes, they are loaded and initialized.</li>
<li>After the code is executed, garbage collection is performed. This involves clearing memory and closing the JVM program.</li>
</ol>
<p>When performing all of these actions, the JVM interprets (translates) the bytecode into a machine instruction for the processor, taking into account the operating system on which it is running. </p>
<p>We can represent the lifecycle of a Java program in the following diagram:</p>
<figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="800" height="753" data-attachment-id="587" data-permalink="https://elearn767.wpcomstaging.com/2024/01/26/how-to-start-learning-java/image-3/" data-orig-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-3.png?fit=800%2C753&ssl=1" data-orig-size="800,753" 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="image-3" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-3.png?fit=300%2C282&ssl=1" data-large-file="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-3.png?fit=800%2C753&ssl=1" src="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-3.png?resize=800%2C753&ssl=1" alt="" class="wp-image-587" srcset="https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-3.png?w=800&ssl=1 800w, https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-3.png?resize=300%2C282&ssl=1 300w, https://i0.wp.com/elearn767.wpcomstaging.com/wp-content/uploads/2024/01/image-3.png?resize=768%2C723&ssl=1 768w" sizes="(max-width: 800px) 100vw, 800px" data-recalc-dims="1" /></figure>
<p></p>
<h2 class="wp-block-heading"><strong>Choosing and installing a development environment</strong></h2>
<p>To quickly and efficiently program in Java, you need a development environment — an application for writing Java programs. Among Java developers, the most popular IDEs are:</p>
<ul>
<li>IntelliJ IDEA</li>
<li>Eclipse</li>
<li>NetBeans</li>
</ul>
<p>According to a <a href="https://jrebel.com/rebellabs/developer-productivity-report-2017-why-do-you-use-java-tools-you-use/" target="_blank" rel="noreferrer noopener">review of the popularity of Java development tools</a>, prepared by RebelLabs in 2017, the leader was IntelliJ IDEA, Eclipse was second, and NetBeans ranked third, lagging significantly behind the top two leaders. Other IDEs represent a small fraction of the market, totaling no more than 3%. </p>
<p>For beginners, installing IntelliJ IDEA Community Edition is sufficient. First, you get all the advantages of a modern IDE (auto-complete, code checking, code debugging, convenient integration with databases and servers) as well as support for many development tools and technologies. Second, you take the first step toward mastering the professional development tool used by most developers. Instructions on how to install IntelliJ IDEA are provided <a href="https://codegym.cc/quests/lectures/questsyntax.level03.lecture02" target="_blank" rel="noreferrer noopener">at the beginning of Level 3</a> of the <a href="https://codegym.cc/" target="_blank" rel="noreferrer noopener">CodeGym educational course</a>.</p>
<p></p>
<h2 class="wp-block-heading"><strong>How long does it take to learn Java?</strong></h2>
<p>You can probably learn the basics of Java and develop programming skills in 6 to 12 months, depending on how intensely you study. Take a structured approach: make a study plan, gather the necessary sources, and set aside a few hours a day for your studies. Don’t forget that the key to learning how to program is practice.</p>
<p></p>
<h2 class="wp-block-heading"><strong>Conclusion</strong></h2>
<p>Studying Java on your own is actually easier than you might think. You only need basic computer skills. To start learning Java effectively, follow a few simple steps:</p>
<ol>
<li>Install Java on your computer</li>
<li>Learn the basic concepts</li>
<li>Install a development environment</li>
<li>Write and run your first program</li>
</ol>
<div class="wp-block-group alignfull has-global-padding is-layout-constrained wp-block-group-is-layout-constrained">
<div class="wp-block-group alignfull has-background-color has-primary-background-color has-text-color has-background has-link-color wp-elements-6dc1bcad6cc7f4cd2231e7cc3e943bed has-global-padding is-layout-constrained wp-container-core-group-is-layout-7 wp-block-group-is-layout-constrained" style="padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
<div class="wp-block-columns alignfull is-layout-flex wp-container-core-columns-is-layout-2 wp-block-columns-is-layout-flex" style="padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)">
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="padding-right:0;padding-left:0;flex-basis:21.5%">
<ul class="wp-block-social-links aligncenter has-small-icon-size has-icon-color is-style-logos-only is-content-justification-center is-layout-flex wp-container-core-social-links-is-layout-1 wp-block-social-links-is-layout-flex"><li style="color: #ffffff; " class="wp-social-link wp-social-link-facebook has-background-color wp-block-social-link"><a href="https://facebook.com/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12 2C6.5 2 2 6.5 2 12c0 5 3.7 9.1 8.4 9.9v-7H7.9V12h2.5V9.8c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.5h-1.3c-1.2 0-1.6.8-1.6 1.6V12h2.8l-.4 2.9h-2.3v7C18.3 21.1 22 17 22 12c0-5.5-4.5-10-10-10z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Facebook</span></a></li>
<li style="color: #ffffff; " class="wp-social-link wp-social-link-twitter has-background-color wp-block-social-link"><a href="https://twitter.com/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M22.23,5.924c-0.736,0.326-1.527,0.547-2.357,0.646c0.847-0.508,1.498-1.312,1.804-2.27 c-0.793,0.47-1.671,0.812-2.606,0.996C18.324,4.498,17.257,4,16.077,4c-2.266,0-4.103,1.837-4.103,4.103 c0,0.322,0.036,0.635,0.106,0.935C8.67,8.867,5.647,7.234,3.623,4.751C3.27,5.357,3.067,6.062,3.067,6.814 c0,1.424,0.724,2.679,1.825,3.415c-0.673-0.021-1.305-0.206-1.859-0.513c0,0.017,0,0.034,0,0.052c0,1.988,1.414,3.647,3.292,4.023 c-0.344,0.094-0.707,0.144-1.081,0.144c-0.264,0-0.521-0.026-0.772-0.074c0.522,1.63,2.038,2.816,3.833,2.85 c-1.404,1.1-3.174,1.756-5.096,1.756c-0.331,0-0.658-0.019-0.979-0.057c1.816,1.164,3.973,1.843,6.29,1.843 c7.547,0,11.675-6.252,11.675-11.675c0-0.178-0.004-0.355-0.012-0.531C20.985,7.47,21.68,6.747,22.23,5.924z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Twitter</span></a></li>
<li style="color: #ffffff; " class="wp-social-link wp-social-link-instagram has-background-color wp-block-social-link"><a href="https://instagram.com/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M12,4.622c2.403,0,2.688,0.009,3.637,0.052c0.877,0.04,1.354,0.187,1.671,0.31c0.42,0.163,0.72,0.358,1.035,0.673 c0.315,0.315,0.51,0.615,0.673,1.035c0.123,0.317,0.27,0.794,0.31,1.671c0.043,0.949,0.052,1.234,0.052,3.637 s-0.009,2.688-0.052,3.637c-0.04,0.877-0.187,1.354-0.31,1.671c-0.163,0.42-0.358,0.72-0.673,1.035 c-0.315,0.315-0.615,0.51-1.035,0.673c-0.317,0.123-0.794,0.27-1.671,0.31c-0.949,0.043-1.233,0.052-3.637,0.052 s-2.688-0.009-3.637-0.052c-0.877-0.04-1.354-0.187-1.671-0.31c-0.42-0.163-0.72-0.358-1.035-0.673 c-0.315-0.315-0.51-0.615-0.673-1.035c-0.123-0.317-0.27-0.794-0.31-1.671C4.631,14.688,4.622,14.403,4.622,12 s0.009-2.688,0.052-3.637c0.04-0.877,0.187-1.354,0.31-1.671c0.163-0.42,0.358-0.72,0.673-1.035 c0.315-0.315,0.615-0.51,1.035-0.673c0.317-0.123,0.794-0.27,1.671-0.31C9.312,4.631,9.597,4.622,12,4.622 M12,3 C9.556,3,9.249,3.01,8.289,3.054C7.331,3.098,6.677,3.25,6.105,3.472C5.513,3.702,5.011,4.01,4.511,4.511 c-0.5,0.5-0.808,1.002-1.038,1.594C3.25,6.677,3.098,7.331,3.054,8.289C3.01,9.249,3,9.556,3,12c0,2.444,0.01,2.751,0.054,3.711 c0.044,0.958,0.196,1.612,0.418,2.185c0.23,0.592,0.538,1.094,1.038,1.594c0.5,0.5,1.002,0.808,1.594,1.038 c0.572,0.222,1.227,0.375,2.185,0.418C9.249,20.99,9.556,21,12,21s2.751-0.01,3.711-0.054c0.958-0.044,1.612-0.196,2.185-0.418 c0.592-0.23,1.094-0.538,1.594-1.038c0.5-0.5,0.808-1.002,1.038-1.594c0.222-0.572,0.375-1.227,0.418-2.185 C20.99,14.751,21,14.444,21,12s-0.01-2.751-0.054-3.711c-0.044-0.958-0.196-1.612-0.418-2.185c-0.23-0.592-0.538-1.094-1.038-1.594 c-0.5-0.5-1.002-0.808-1.594-1.038c-0.572-0.222-1.227-0.375-2.185-0.418C14.751,3.01,14.444,3,12,3L12,3z M12,7.378 c-2.552,0-4.622,2.069-4.622,4.622S9.448,16.622,12,16.622s4.622-2.069,4.622-4.622S14.552,7.378,12,7.378z M12,15 c-1.657,0-3-1.343-3-3s1.343-3,3-3s3,1.343,3,3S13.657,15,12,15z M16.804,6.116c-0.596,0-1.08,0.484-1.08,1.08 s0.484,1.08,1.08,1.08c0.596,0,1.08-0.484,1.08-1.08S17.401,6.116,16.804,6.116z"></path></svg><span class="wp-block-social-link-label screen-reader-text">Instagram</span></a></li>
<li style="color: #ffffff; " class="wp-social-link wp-social-link-tiktok has-background-color wp-block-social-link"><a href="https://tiktok.com/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 32 32" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M16.708 0.027c1.745-0.027 3.48-0.011 5.213-0.027 0.105 2.041 0.839 4.12 2.333 5.563 1.491 1.479 3.6 2.156 5.652 2.385v5.369c-1.923-0.063-3.855-0.463-5.6-1.291-0.76-0.344-1.468-0.787-2.161-1.24-0.009 3.896 0.016 7.787-0.025 11.667-0.104 1.864-0.719 3.719-1.803 5.255-1.744 2.557-4.771 4.224-7.88 4.276-1.907 0.109-3.812-0.411-5.437-1.369-2.693-1.588-4.588-4.495-4.864-7.615-0.032-0.667-0.043-1.333-0.016-1.984 0.24-2.537 1.495-4.964 3.443-6.615 2.208-1.923 5.301-2.839 8.197-2.297 0.027 1.975-0.052 3.948-0.052 5.923-1.323-0.428-2.869-0.308-4.025 0.495-0.844 0.547-1.485 1.385-1.819 2.333-0.276 0.676-0.197 1.427-0.181 2.145 0.317 2.188 2.421 4.027 4.667 3.828 1.489-0.016 2.916-0.88 3.692-2.145 0.251-0.443 0.532-0.896 0.547-1.417 0.131-2.385 0.079-4.76 0.095-7.145 0.011-5.375-0.016-10.735 0.025-16.093z" /></svg><span class="wp-block-social-link-label screen-reader-text">TikTok</span></a></li>
<li style="color: #ffffff; " class="wp-social-link wp-social-link-youtube has-background-color wp-block-social-link"><a href="https://youtube.com/" class="wp-block-social-link-anchor"><svg width="24" height="24" viewBox="0 0 24 24" version="1.1" xmlns="http://www.w3.org/2000/svg" aria-hidden="true" focusable="false"><path d="M21.8,8.001c0,0-0.195-1.378-0.795-1.985c-0.76-0.797-1.613-0.801-2.004-0.847c-2.799-0.202-6.997-0.202-6.997-0.202 h-0.009c0,0-4.198,0-6.997,0.202C4.608,5.216,3.756,5.22,2.995,6.016C2.395,6.623,2.2,8.001,2.2,8.001S2,9.62,2,11.238v1.517 c0,1.618,0.2,3.237,0.2,3.237s0.195,1.378,0.795,1.985c0.761,0.797,1.76,0.771,2.205,0.855c1.6,0.153,6.8,0.201,6.8,0.201 s4.203-0.006,7.001-0.209c0.391-0.047,1.243-0.051,2.004-0.847c0.6-0.607,0.795-1.985,0.795-1.985s0.2-1.618,0.2-3.237v-1.517 C22,9.62,21.8,8.001,21.8,8.001z M9.935,14.594l-0.001-5.62l5.404,2.82L9.935,14.594z"></path></svg><span class="wp-block-social-link-label screen-reader-text">YouTube</span></a></li></ul>
</div>
<div class="wp-block-column is-layout-flow wp-block-column-is-layout-flow"></div>
<div class="wp-block-column is-vertically-aligned-center is-layout-flow wp-block-column-is-layout-flow" style="padding-right:3vw;padding-left:3vw;flex-basis:21%">
<div class="wp-block-group is-content-justification-space-between is-nowrap is-layout-flex wp-container-core-group-is-layout-5 wp-block-group-is-layout-flex"><form role="search" method="get" action="https://elearn767.wpcomstaging.com/" class="wp-block-search__button-inside wp-block-search__icon-button wp-block-search wp-container-content-4" ><label class="wp-block-search__label screen-reader-text" for="wp-block-search__input-3" style="font-size: 0.87rem">Search</label><div class="wp-block-search__inside-wrapper has-border-color" style="border-width: 1px;border-color: #4a4a4a"><input class="wp-block-search__input" id="wp-block-search__input-3" placeholder="Search" value="" type="search" name="s" required style="border-radius: 0px;font-size: 0.87rem"/><button aria-label="Search" class="wp-block-search__button has-icon wp-element-button" type="submit" style="border-radius: 0px;font-size: 0.87rem"><svg class="search-icon" viewBox="0 0 24 24" width="24" height="24">
<path d="M13 5c-3.3 0-6 2.7-6 6 0 1.4.5 2.7 1.3 3.7l-3.8 3.8 1.1 1.1 3.8-3.8c1 .8 2.3 1.3 3.7 1.3 3.3 0 6-2.7 6-6S16.3 5 13 5zm0 10.5c-2.5 0-4.5-2-4.5-4.5s2-4.5 4.5-4.5 4.5 2 4.5 4.5-2 4.5-4.5 4.5z"></path>
</svg></button></div></form></div>
</div>
</div>
<div class="aligncenter wp-block-site-logo"><a href="https://elearn767.wpcomstaging.com/" class="custom-logo-link" rel="home"><img loading="lazy" decoding="async" width="64" height="64" 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" 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>
<h1 class="has-text-align-center alignwide wp-block-site-title"><a href="https://elearn767.wpcomstaging.com" target="_self" rel="home">LEarn</a></h1>
<div class="wp-block-group alignfull has-global-padding is-layout-constrained wp-block-group-is-layout-constrained" style="border-top-color:#fafafa54;border-top-style:solid;border-top-width:1px;margin-top:1.5rem;padding-top:1rem;padding-bottom:1rem"><nav class="is-responsive items-justified-center wp-block-navigation is-content-justification-center is-layout-flex wp-container-core-navigation-is-layout-2 wp-block-navigation-is-layout-flex" aria-label="التنقل 2"
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 " style="" id="modal-5"
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-5-content">
<ul class="wp-block-navigation__container is-responsive items-justified-center 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>
<div class="sharedaddy sd-sharing-enabled"><div class="robots-nocontent sd-block sd-social sd-social-icon-text sd-sharing"><h3 class="sd-title">Share this:</h3><div class="sd-content"><ul><li class="share-twitter"><a rel="nofollow noopener noreferrer" data-shared="sharing-twitter-532" class="share-twitter sd-button share-icon" href="https://elearn767.wpcomstaging.com/2024/01/26/how-to-start-learning-java/?share=twitter" target="_blank" title="Click to share on Twitter" ><span>Twitter</span></a></li><li class="share-facebook"><a rel="nofollow noopener noreferrer" data-shared="sharing-facebook-532" class="share-facebook sd-button share-icon" href="https://elearn767.wpcomstaging.com/2024/01/26/how-to-start-learning-java/?share=facebook" target="_blank" title="Click to share on Facebook" ><span>Facebook</span></a></li><li class="share-end"></li></ul><p class="share-customize-link"><a href="https://jetpack.com/redirect/?source=calypso-marketing-sharing-buttons&site=elearn767.wpcomstaging.com" target="_blank" rel="noopener noreferrer">Customize buttons</a></p></div></div></div><div class='sharedaddy sd-block sd-like jetpack-likes-widget-wrapper jetpack-likes-widget-unloaded' id='like-post-wrapper-226953149-532-65b7e885b9b7c' data-src='https://widgets.wp.com/likes/?ver=13.1-a.7#blog_id=226953149&post_id=532&origin=elearn767.wpcomstaging.com&obj_id=226953149-532-65b7e885b9b7c&n=1' data-name='like-post-frame-226953149-532-65b7e885b9b7c' data-title='Like or Reblog'><h3 class="sd-title">Like this:</h3><div class='likes-widget-placeholder post-likes-widget-placeholder' style='height: 55px;'><span class='button'><span>Like</span></span> <span class="loading">Loading…</span></div><span class='sd-text-color'></span><a class='sd-link-color'></a></div></div>
<div class="wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained">
<div class="wp-block-template-part">
<div class="wp-block-group is-layout-flow wp-block-group-is-layout-flow">
<div class="wp-block-group is-layout-flex wp-block-group-is-layout-flex">
<div style="font-size:14px" class="taxonomy-category wp-block-post-terms"><a href="https://elearn767.wpcomstaging.com/category/%d8%ba%d9%8a%d8%b1-%d9%85%d8%b5%d9%86%d9%91%d9%81/" rel="tag">غير مصنّف</a></div>
</div>
<div class="wp-block-group is-nowrap is-layout-flex wp-container-core-group-is-layout-10 wp-block-group-is-layout-flex">
</div>
</div>
</div>
<div style="height:3rem" aria-hidden="true" class="wp-block-spacer"></div>
<div class="wp-block-comments-query-loop wp-block-comments"><div> <div class="wpdiscuz_top_clearing"></div>
<div id='comments' class='comments-area'><div id='respond' style='width: 0;height: 0;clear: both;margin: 0;padding: 0;'></div> <div id="wpdcom" class="wpdiscuz_auth wpd-default wpd-layout-1 wpd-comments-open">
<div id="respond" class="comment-respond">
<h3 id="reply-title" class="comment-reply-title">Leave a Reply<small><a rel="nofollow" id="cancel-comment-reply-link" href="/2024/01/26/how-to-start-learning-java/#respond" style="display:none;">Cancel reply</a></small></h3> <form id="commentform" class="comment-form">
<iframe
title="Comment Form"
src="https://jetpack.wordpress.com/jetpack-comment/?blogid=226953149&postid=532&comment_registration=0&require_name_email=1&stc_enabled=1&stb_enabled=1&show_avatars=1&avatar_default=identicon&greeting=Leave+a+Reply&jetpack_comments_nonce=b20dded50c&greeting_reply=Leave+a+Reply+to+%25s&color_scheme=light&lang=en_US&jetpack_version=13.1-a.7&hc_post_as=jetpack&hc_userid=243832447&hc_username=etharjur&hc_userurl=&hc_useremail=2c6bd0f0020943ad1ed42a9109297042&_wp_unfiltered_html_comment=b4ef9ef7ca&token_key=%3Bnormal%3B&sig=5d8110920d8faa626eacb015c0e9d8f83cc28abb#parent=https%3A%2F%2Felearn767.wpcomstaging.com%2F2024%2F01%2F26%2Fhow-to-start-learning-java%2F"
name="jetpack_remote_comment"
style="width:100%; height: 315px; border:0;"
class="jetpack_remote_comment"
id="jetpack_remote_comment"
sandbox="allow-same-origin allow-top-navigation allow-scripts allow-forms allow-popups"
>
</iframe>
<!--[if !IE]><!-->
<script>
document.addEventListener('DOMContentLoaded', function () {
var commentForms = document.getElementsByClassName('jetpack_remote_comment');
for (var i = 0; i < commentForms.length; i++) {
commentForms[i].allowTransparency = false;
commentForms[i].scrolling = 'no';
}
});
</script>
<!--<![endif]-->
</form>
</div>
<input type="hidden" name="comment_parent" id="comment_parent" value="" />
<div id="wpd-threads" class="wpd-thread-wrapper">
<div class="wpd-thread-head">
<div class="wpd-thread-info "
data-comments-count="0">
<span class='wpdtc' title='0'>0</span> Comments </div>
<div class='wpdiscuz-user-settings wpd-info wpd-not-clicked' wpd-tooltip='My content and settings' wpd-tooltip-position='right'><i class='fas fa-user-cog'></i></div> <div class="wpd-space"></div>
<div class="wpd-thread-filter">
<div class="wpd-filter wpdf-reacted wpd_not_clicked"
wpd-tooltip="Most reacted comment">
<i class="fas fa-bolt"></i></div>
<div class="wpd-filter wpdf-hottest wpd_not_clicked"
wpd-tooltip="Hottest comment thread">
<i class="fas fa-fire"></i></div>
</div>
</div>
<div class="wpd-comment-info-bar">
<div class="wpd-current-view"><i
class="fas fa-quote-left"></i> Inline Feedbacks </div>
<div class="wpd-filter-view-all">View all comments</div>
</div>
<div class="wpd-thread-list">
<!-- // From wpDiscuz's Caches // --> <div class="wpdiscuz-comment-pagination">
</div>
</div>
</div>
</div>
</div>
<div id="wpdiscuz-loading-bar"
class="wpdiscuz-loading-bar-auth"></div>
<div id="wpdiscuz-comment-message"
class="wpdiscuz-comment-message-auth"></div>
</div></div>
</div>
</main>
<footer class="wp-block-template-part">
<div style="height:50px" aria-hidden="true" class="wp-block-spacer"></div>
<div class="wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained" style="padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)">
<p class="has-text-align-center has-small-font-size"></p>
</div>
</footer>
</div>
<!-- wpcom_wp_footer -->
<div id="um_upload_single" style="display:none"></div>
<div id="um_view_photo" style="display:none">
<a href="javascript:void(0);" data-action="um_remove_modal" class="um-modal-close"
aria-label="Close view photo modal">
<i class="um-faicon-times"></i>
</a>
<div class="um-modal-body photo">
<div class="um-modal-photo"></div>
</div>
</div>
<style>
.sd-social-icon .sd-content ul li a.sd-button>span {
margin-left: 0;
}
</style><script defer id="bilmur" data-provider="wordpress.com" data-service="atomic" src="https://s0.wp.com/wp-content/js/bilmur.min.js?m=202405"></script>
<span id='wpdUserContentInfoAnchor' style='display:none;' rel='#wpdUserContentInfo' data-wpd-lity>wpDiscuz</span><div id='wpdUserContentInfo' style='overflow:auto;background:#FDFDF6;padding:20px;width:600px;max-width:100%;border-radius:6px;' class='lity-hide'></div><div id='wpd-bubble-wrapper'><span id='wpd-bubble-all-comments-count' style='display:none;' title='0'>0</span><div id='wpd-bubble-count'><svg xmlns='https://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path class='wpd-bubble-count-first' d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/><path class='wpd-bubble-count-second' d='M0 0h24v24H0z' /></svg><span class='wpd-new-comments-count'>0</span></div><div id='wpd-bubble'><svg xmlns='https://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path class='wpd-bubble-plus-first' d='M19 13h-6v6h-2v-6H5v-2h6V5h2v6h6v2z'/><path class='wpd-bubble-plus-second' d='M0 0h24v24H0z' /></svg><div id='wpd-bubble-add-message'>Would love your thoughts, please comment.<span id='wpd-bubble-add-message-close'><a href='#'>x</a></span></div></div><div id='wpd-bubble-notification'><svg xmlns='https://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><path class='wpd-bubble-notification-first' d='M20 2H4c-1.1 0-1.99.9-1.99 2L2 22l4-4h14c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zm-2 12H6v-2h12v2zm0-3H6V9h12v2zm0-3H6V6h12v2z'/><path class='wpd-bubble-notification-second' d='M0 0h24v24H0z' /></svg><div id='wpd-bubble-notification-message'><div id='wpd-bubble-author'><div><span id='wpd-bubble-author-avatar'></span><span id='wpd-bubble-author-name'></span><span id='wpd-bubble-comment-date'>(<span class='wpd-bubble-spans'></span>)</span></div><span id='wpd-bubble-comment-close'><a href='#'>x</a></span></div><div id='wpd-bubble-comment'><span id='wpd-bubble-comment-text'></span><span id='wpd-bubble-comment-reply-link'>| <a href='#'>Reply</a></span></div></div></div></div><div id='wpd-editor-source-code-wrapper-bg'></div><div id='wpd-editor-source-code-wrapper'><textarea id='wpd-editor-source-code'></textarea><button id='wpd-insert-source-code'>Insert</button><input type='hidden' id='wpd-editor-uid' /></div> <div class="jetpack-subscription-modal">
<div class="jetpack-subscription-modal__modal-content">
<div class="wp-block-group has-border-color jetpack-subscription-modal__modal-content-form is-layout-flow wp-block-group-is-layout-flow" style="border-color:#dddddd;border-width:1px;margin-top:0;margin-bottom:0;padding:32px">
<h2 class="wp-block-heading has-text-align-center" style="margin-top:4px;margin-bottom:10px;font-size:clamp(16.834px, 1.052rem + ((1vw - 3.2px) * 1.042), 26px);font-style:normal;font-weight:600">Discover more from LEarn</h2>
<p class='has-text-align-center' style='margin-top:4px;margin-bottom:0px;font-size:clamp(14px, 0.875rem + ((1vw - 3.2px) * 0.114), 15px);'>Subscribe now to keep reading and get access to the full archive.</p>
<div class="wp-block-jetpack-subscriptions__supports-newline is-style-compact wp-block-jetpack-subscriptions">
<div class="wp-block-jetpack-subscriptions__container is-not-subscriber">
<form
action="https://wordpress.com/email-subscriptions"
method="post"
accept-charset="utf-8"
data-blog="226953149"
data-post_access_level="everybody"
data-subscriber_email=""
id="subscribe-blog"
>
<div class="wp-block-jetpack-subscriptions__form-elements">
<p id="subscribe-email">
<label
id="subscribe-field-label"
for="subscribe-field"
class="screen-reader-text"
>
Type your email… </label>
<input
required="required"
type="email"
name="email"
style="font-size: 16px;padding: 15px 23px 15px 23px;border-radius: 50px;border-width: 1px;"
placeholder="Type your email…"
value=""
id="subscribe-field"
/> </p>
<p id="subscribe-submit"
>
<input type="hidden" name="action" value="subscribe"/>
<input type="hidden" name="blog_id" value="226953149"/>
<input type="hidden" name="source" value="https://elearn767.wpcomstaging.com/2024/01/26/how-to-start-learning-java/"/>
<input type="hidden" name="sub-type" value="subscribe-block"/>
<input type="hidden" name="app_source" value="atomic-subscription-modal-lo"/>
<input type="hidden" name="redirect_fragment" value="subscribe-blog"/>
<input type="hidden" name="lang" value="en_US"/>
<input type="hidden" id="_wpnonce" name="_wpnonce" value="726cc52932" /><input type="hidden" name="_wp_http_referer" value="/2024/01/26/how-to-start-learning-java/" /><input type="hidden" name="post_id" value="532"/> <button type="submit"
class="wp-block-button__link"
style="font-size: 16px;padding: 15px 23px 15px 23px;margin: 0px; margin-left: 10px;border-radius: 50px;border-width: 1px;"
name="jetpack_subscriptions_widget"
>
Subscribe </button>
</p>
</div>
</form>
</div>
</div>
<p class="has-text-align-center jetpack-subscription-modal__close" style="margin-top:20px;font-size:14px"><a href="#">Continue reading</a></p>
</div>
</div>
</div>
<div style="display:none">
<div class="grofile-hash-map-2c6bd0f0020943ad1ed42a9109297042">
</div>
<div class="grofile-hash-map-2c6bd0f0020943ad1ed42a9109297042">
</div>
</div>
<div id="jp-carousel-loading-overlay">
<div id="jp-carousel-loading-wrapper">
<span id="jp-carousel-library-loading"> </span>
</div>
</div>
<div class="jp-carousel-overlay" style="display: none;">
<div class="jp-carousel-container">
<!-- The Carousel Swiper -->
<div
class="jp-carousel-wrap swiper-container jp-carousel-swiper-container jp-carousel-transitions"
itemscope
itemtype="https://schema.org/ImageGallery">
<div class="jp-carousel swiper-wrapper"></div>
<div class="jp-swiper-button-prev swiper-button-prev">
<svg width="25" height="24" viewBox="0 0 25 24" fill="none" xmlns="http://www.w3.org/2000/svg">
<mask id="maskPrev" mask-type="alpha" maskUnits="userSpaceOnUse" x="8" y="6" width="9" height="12">