-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfaq.html
More file actions
1705 lines (1632 loc) · 50.8 KB
/
faq.html
File metadata and controls
1705 lines (1632 loc) · 50.8 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">
<head>
<meta name="viewport" content="width=device-width , initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="resources/css/styles.css" />
<link rel="stylesheet" type="text/css" href="resources/css/queries.css" />
<link
href="https://fonts.googleapis.com/css?family=Bebas+Neue|Raleway:300,400&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" type="text/css" href="external/css/all.css" />
<link
rel="stylesheet"
href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css"
integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh"
crossorigin="anonymous"
/>
<link rel="icon" type="image/ico" href="favicon.ico" />
<title>Frequently Asked Questions</title>
<style>
a:hover {
text-decoration: none;
}
.faq-container {
margin: 10% auto 5%;
width: 75%;
}
.faq-header {
font-size: 8rem;
font-weight: bold;
border-bottom: 15px solid #cccccc;
margin-bottom: 5%;
}
.accordion {
background-color: transparent;
color: #000;
}
.card-header {
display: flex;
justify-content: space-between;
align-items: center;
cursor: pointer;
padding: 1.4rem 2rem;
}
.card-header h5 {
margin-right: 1rem;
font-weight: bold;
}
.fa-angle-up {
font-size: 1rem;
transform: rotate(0deg);
}
.collapsed .fa-angle-up {
transform: rotate(180deg);
}
.card-body {
padding: 1.4rem 2rem;
}
li {
margin: 0.5rem 0;
}
.card-body ul:last-of-type li:last-of-type {
margin-bottom: 0;
}
</style>
</head>
<body>
<div id="preloader">
<img
src="preloader.gif"
style="
width: auto;
height: 80vh;
background: #fff no-repeat center center;
margin-left: auto;
margin: auto;
text-align: center;
display: block;
"
/>
</div>
<nav class="navbar navbar-expand-lg navbar-light fixed-top" id="hero-nav">
<div class="logo">
<a class="navbar-brand" style="color: #fffffb" href="/">
<img
style="width: 2.7em; height: auto"
src="images/hncc-logo.png"
alt="Hackathon & Coding Club"
/>
</a>
</div>
<button
class="navbar-toggler"
type="button"
data-toggle="collapse"
data-target="#navbarSupportedContent"
aria-controls="navbarSupportedContent"
aria-expanded="false"
aria-label="Toggle navigation"
>
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto text-center">
<a class="nav-link" href="index.html#about-us">About Us</a>
<a class="nav-link" href="faq.html">FAQs</a>
<a class="nav-link" href="index.html#stats">Stats</a>
<a class="nav-link" href="index.html#events">Events</a>
<a class="nav-link" href="index.html/#projects">Projects</a>
<a class="nav-link" href="team.html">Team</a>
<a class="nav-link" href="https://blog.hnccbits.com">Blog</a>
<a class="nav-link" href="#footer">Contact Us</a>
</ul>
</div>
</nav>
<!-- Floating Social Media bar Starts -->
<div class="float-sm">
<div class="fl-fl float-tw">
<i class="fab fa-facebook-f"></i>
<a href="https://www.facebook.com/hnccbits/" target="_blank"
>    Like us on fb</a
>
</div>
<div class="fl-fl float-gp">
<i class="fab fa-github"></i>
<a href="https://www.github.com/hnccbits" target="_blank"
>    Check our Projects</a
>
</div>
<div class="fl-fl float-rs">
<i class="fab fa-linkedin-in"></i>
<a href="https://www.linkedin.com/company/hnccbits" target="_blank"
>    Follow us on linkedin</a
>
</div>
<div class="fl-fl float-ig">
<i class="fab fa-instagram"></i>
<a href="https://www.instagram.com/hnccbits" target="_blank"
>    Follow us on insta!</a
>
</div>
</div>
<!-- Floating Social Media bar Ends -->
<!-- FAQ Starts -->
<section class="faq-container">
<h1 class="faq-header">FAQ</h1>
<div id="accordion" class="accordion">
<div class="card">
<div
class="card-header collapsed"
id="headingOne"
data-toggle="collapse"
data-target="#collapseOne"
aria-expanded="false"
aria-controls="collapseOne"
>
<h5 class="mb-0">What is HnCC?</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseOne"
class="collapse"
aria-labelledby="headingOne"
data-parent="#accordion"
>
<div class="card-body">
HnCC, Hackathon and Coding Club is the Official Coding Club of BIT
Sindri, Dhanbad. It works as an open-source organization. Members
here learn and collaborate to make their ideas into a
solution/product. It also organizes national level hackathons
driven by the idea of making proof of concepts of great ideas
using software.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingTwo"
data-toggle="collapse"
data-target="#collapseTwo"
aria-expanded="false"
aria-controls="collapseTwo"
>
<h5 class="mb-0">Who is the Professor-In-Charge of HnCC?</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseTwo"
class="collapse"
aria-labelledby="headingTwo"
data-parent="#accordion"
>
<div class="card-body">
The Professor-In-Charge of HnCC is Mr. Dinesh Kumar Prabhakar Sir
from the Dept. of Information Technology, BIT Sindri.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingThree"
data-toggle="collapse"
data-target="#collapseThree"
aria-expanded="false"
aria-controls="collapseThree"
>
<h5 class="mb-0">
Where does HnCC operate from?
<br />
What is your address?
</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseThree"
class="collapse"
aria-labelledby="headingThree"
data-parent="#accordion"
>
<div class="card-body">
HnCC operates from IT Building, BIT Sindri, Dhanbad,
Jharkhand-828123
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingFour"
data-toggle="collapse"
data-target="#collapseFour"
aria-expanded="false"
aria-controls="collapseFour"
>
<h5 class="mb-0">What qualities are required at HnCC?</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseFour"
class="collapse"
aria-labelledby="headingFour"
data-parent="#accordion"
>
<div class="card-body">
To join HnCC you have to:-
<ul>
<li>
Prove that you understand Computer Science and the IT industry
</li>
<li>
Showcase your technical skills in programming by either making
cool projects or being good at competitive programming.
</li>
<li>
Be versatile. You have to be good at social skills as well
such as communication and leadership.
</li>
<li>
Be patient. You have to prove your willingness to join HnCC.
We will test this quality by rejecting you if you fall short
in your domain. You have to improve and apply again. We want
genuine people who show interest as well as do some actual
work to get inducted.
</li>
<li>
Think objectively. We will set up multiple hurdles for you.
</li>
<li>
Have a Hacker mentality. Hacker mentality means that you have
to possess a thought process to solve problems you haven’t
heard about or have experienced before.
</li>
</ul>
For the design team :-
<ul>
<li>
Have an interest in art and craft and willingness to go
digital.
</li>
<li>Prove that you have a good taste in design principles.</li>
<li>Ability to take criticism over your work.</li>
<li>
Learn digital art from the guidance of current HnCC members
and submit your work for evaluation.
</li>
</ul>
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingFive"
data-toggle="collapse"
data-target="#collapseFive"
aria-expanded="false"
aria-controls="collapseFive"
>
<h5 class="mb-0">What are some of the domains of HnCC?</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseFive"
class="collapse"
aria-labelledby="headingFive"
data-parent="#accordion"
>
<div class="card-body">
The domains of HnCC are:-
<ul>
<li>Competitive Programming</li>
<li>Android App Development</li>
<li>Web Development</li>
<li>Game Development</li>
<li>Systems Programming (Currently on Linux)</li>
<li>Free and Open Source Software (FOSS) Culture.</li>
<li>Graphics Design</li>
<li>Machine Learning and Deep Neural Networks</li>
<li>API’s, backend and Cloud Computing</li>
<li>Management.</li>
</ul>
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingSix"
data-toggle="collapse"
data-target="#collapseSix"
aria-expanded="false"
aria-controls="collapseSix"
>
<h5 class="mb-0">
What tasks do I need to do to land an interview for HnCC?
</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseSix"
class="collapse"
aria-labelledby="headingSix"
data-parent="#accordion"
>
<div class="card-body">
Do at least one of the following:-
<ul>
<li>
Get in touch with a member of HnCC and ask him/her to refer
you. He/she will refer you only if they feel you are skilled.
</li>
<li>
At least 4 stars on
<a href="https://www.hackerrank.com/" target="_blank"
>HackerRank</a
>
in any domain such as language or problem solving, etc.
</li>
<li>
Should know basic algorithms such as Bubble Sort, Selection
Sort, Insertion Sort, Binary Search, ‘Tower of Hanoi’.
</li>
<li>
Can solve at least 2 questions from
<a href="https://www.codechef.com/" target="_blank"
>CodeChef</a
>
Codechef Monthly Long Challenge 8 months from joining College
or 4 questions, after 1.5 years from joining college
</li>
<li>
You are confident enough to explain to us any concept from
your previous experience in programming from your class 10 or
12.
</li>
<li>
Make a very simple and basic App and should be able to explain
basics from your own project.
</li>
<li>
Make a very simple and basic Website and should be able to
explain basics from your own project.
</li>
<li>
Make a very simple and basic Game and should be able to
explain basics from your own project.
</li>
<li>
Make a very simple and basic Machine Learning Project and
should be able to explain basics from your own project.
</li>
<li>
Make an attractive Design and should be able to explain the
basics of the platform you have used.
</li>
<li>
You have experience with Linux Operating systems before and
you can use and explain basic UNIX commands.
</li>
<li>
You can explain DBMS or SQL concepts and can perform basic SQL
queries.
</li>
<li>
Make a 3D design from software such as Blender and can explain
the basics of their project.
</li>
<li>
Make a promotional video from scratch in any of the following
software like Adobe Premiere Pro, Adobe After Effects,
Filmora, etc.
</li>
<li>
You have displayed management skills before and you have
(Management + basic programming skills) or (Management + any
skill in any domain of HnCC). In such a scenario Management
has more weightage.
</li>
<li>Have any prior experience with Robots or Arduino.</li>
<li>
Miscellaneous i.e. Show us any skill that you might think HnCC
might be interested in.
</li>
</ul>
Once you have completed any of the points, contact your immediate
seniors.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingSeven"
data-toggle="collapse"
data-target="#collapseSeven"
aria-expanded="false"
aria-controls="collapseSeven"
>
<h5 class="mb-0">
I got rejected in Interview but I want to join the Developer’s
community i.e. HnCC. What should I do now?
</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseSeven"
class="collapse"
aria-labelledby="headingSeven"
data-parent="#accordion"
>
<div class="card-body">
There is nothing to be worried about if you got rejected. You can
try again after sharpening your skills. All that matters is skill
and interest to us.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingEight"
data-toggle="collapse"
data-target="#collapseEight"
aria-expanded="false"
aria-controls="collapseEight"
>
<h5 class="mb-0">
I want to keep in touch with my seniors. How can I contact them?
</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseEight"
class="collapse"
aria-labelledby="headingEight"
data-parent="#accordion"
>
<div class="card-body">
Hey, you can get a list of all our members at
<a href="https://hnccbits.com/team.html" target="_blank"
>HnCC Team Page.</a
>
Keep in touch with your Seniors and Alumni, It is a very good
culture. You will gain a lot.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingNine"
data-toggle="collapse"
data-target="#collapseNine"
aria-expanded="false"
aria-controls="collapseNine"
>
<h5 class="mb-0">
I don’t know anything about coding. What should I do?
</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseNine"
class="collapse"
aria-labelledby="headingNine"
data-parent="#accordion"
>
<div class="card-body">
Just start with any Object-Oriented Programming Language
like(Python, Java, C++, etc).<br />
For now, you should focus on our
<strong>“Intro to Python Bootcamp”</strong> session. Also, you can
pick a language of your own and search for a top-rated playlist on
YouTube. Knowledge is free on the Internet. Don’t pay.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingTen"
data-toggle="collapse"
data-target="#collapseTen"
aria-expanded="false"
aria-controls="collapseTen"
>
<h5 class="mb-0">
I am not from a CSE/IT Branch. Is HnCC the right choice for me?
</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseTen"
class="collapse"
aria-labelledby="headingTen"
data-parent="#accordion"
>
<div class="card-body">
There is <strong>“NO BRANCH RESTRICTION”</strong>, we have more
than 60% of members, who are from non-CS/IT branch, If you are
interested in any one of our segments, then definitely you should
apply.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingEleven"
data-toggle="collapse"
data-target="#collapseEleven"
aria-expanded="false"
aria-controls="collapseEleven"
>
<h5 class="mb-0">
Please give me an assignment. I want to get started and show off
my skills.
</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseEleven"
class="collapse"
aria-labelledby="headingEleven"
data-parent="#accordion"
>
<div class="card-body">
<ul>
<li>
<strong>Competitive Programming</strong>: Here are some
suggestions you can goto
<a href="https://www.hackerrank.com" target="_blank"
>HackerRank</a
>
and get a Gold Badge in any domain.
</li>
<li>
<strong>Android Development</strong>: You can create a
Calculator App or a Tic Tac Toc App or you can choose any one
from internet or here
<a
href="https://techvidvan.com/tutorials/android-project-ideas/"
target="_blank"
>Android Development Project Ideas for Beginners.</a
>
</li>
<li>
<strong>Web Development</strong>: You can make a TO DO App or
a Login Page or any project from Internet or see here
<a
href="https://www.upgrad.com/blog/web-development-project-ideas-for-beginners/"
target="_blank"
>
Web Development Project Ideas for Beginners.
</a>
</li>
<li>
<strong>Game Development</strong>: Check out the Unity Website
<a href="https://learn.unity.com/projects" target="_blank"
>Unity Projects.</a
>
Pick a beginner level project from here or from youtube.
</li>
<li>
<strong>Machine Learning</strong>: Check this out
<a
href="https://www.dezyre.com/article/top-10-machine-learning-projects-for-beginners/397"
target="_blank"
>
Top 10 Machine Learning Projects for Beginners.
</a>
</li>
</ul>
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingTwelve"
data-toggle="collapse"
data-target="#collapseTwelve"
aria-expanded="false"
aria-controls="collapseTwelve"
>
<h5 class="mb-0">Is HnCC an open club?</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseTwelve"
class="collapse"
aria-labelledby="headingTwelve"
data-parent="#accordion"
>
<div class="card-body">
<strong>No.</strong> It takes a lot of time and dedication for
what we do. To achieve our goals we need full time members. Be it
hard skills like coding or soft skills like event management,
product management, etc. , HnCC got you covered.
<br />
There are some organizations/clubs you can be in along with HnCC
are:-
<ul>
<li>Arts Club</li>
<li>Sports Club</li>
<li>Prayaas India</li>
<li>Sarjana</li>
</ul>
If your club is not in the list and you feel It should be here.
Please contact and ask us for a review.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingThirteen"
data-toggle="collapse"
data-target="#collapseThirteen"
aria-expanded="false"
aria-controls="collapseThirteen"
>
<h5 class="mb-0">
Sir, I don't know anything about coding but I want to learn, so
kindly guide me from where should I start and which language
should I learn first?
</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseThirteen"
class="collapse"
aria-labelledby="headingThirteen"
data-parent="#accordion"
>
<div class="card-body">
No issues, if you have no prior knowledge of coding you just need
a strong will to master programming. First of all, pick a
programming language (C++, Java, Python -recommended) learn its
syntax and then dive into learning DSA (Data Structure and
Algorithm) using that language and practice your skills on various
platforms such as
<a href="https://www.hackerrank.com" target="_blank">HackerRank</a
>,
<a href="https://www.hackerearth.com" target="_blank"
>HackerEarth</a
>.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingFourteen"
data-toggle="collapse"
data-target="#collapseFourteen"
aria-expanded="false"
aria-controls="collapseFourteen"
>
<h5 class="mb-0">When will the inductions start?</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseFourteen"
class="collapse"
aria-labelledby="headingFourteen"
data-parent="#accordion"
>
<div class="card-body">
The induction process has no starting and ending point. It is LIVE
always. However, there is a good chance the earliest you join the
more you get to learn fast and become Industry ready. If for any
reason, you don’t understand what to do or how to get inducted,
just make a project of your own and show us the project by sending
a message on our Fb page or follow
<a href="https://learn.hnccbits.com" target="_blank"
>HnCC Learn.</a
>
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingFifteen"
data-toggle="collapse"
data-target="#collapseFifteen"
aria-expanded="false"
aria-controls="collapseFifteen"
>
<h5 class="mb-0">Can a Non-Bitian become a member of HnCC?</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseFifteen"
class="collapse"
aria-labelledby="headingFifteen"
data-parent="#accordion"
>
<div class="card-body">
HnCC is working towards making the community diverse and strong.
We are going to come up with this idea very soon. Right now we are
working towards the structure of HnCC when Non-Bitian can join.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingSixteen"
data-toggle="collapse"
data-target="#collapseSixteen"
aria-expanded="false"
aria-controls="collapseSixteen"
>
<h5 class="mb-0">
How to get started with Android App Development?
</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseSixteen"
class="collapse"
aria-labelledby="headingSixteen"
data-parent="#accordion"
>
<div class="card-body">
First of all you should be clear to your learning goals like how
to step one by one from basics to advance and for that one should
follow a roadmap as it is the best way to get ahead in a proper
manner and will help you to be a pro in this field.<br />
Follow the steps listed below :-
<ul>
<li>Learn Basics of Java</li>
<li>
Find a beginner course on YT or any Online learning platform
</li>
<li>
Make simple projects like Calculator, Tic Tac Toe, TO DO,
Reminder App, Alarm App to get started.
</li>
</ul>
You can find resources on YouTube such as
<a
href="https://www.youtube.com/watch?v=hzrGAZnMOMQ&list=PLonJJ3BVjZW6hYgvtkaWvwAVvOFB7fkLa"
target="_blank"
>
slidenerd</a
>
YouTube channel. You can find intermediate free resources by
Google at Udemy and Coursera. There are a lot of very good free
courses at Coursera and edx.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingSeventeen"
data-toggle="collapse"
data-target="#collapseSeventeen"
aria-expanded="false"
aria-controls="collapseSeventeen"
>
<h5 class="mb-0">How to get started with Website Development?</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseSeventeen"
class="collapse"
aria-labelledby="headingSeventeen"
data-parent="#accordion"
>
<div class="card-body">
Web Development basically involves the development of front-end
and back-end.<br /><br />
In front-end development, we develop the user-end of the website.
For front-end you should learn HTML,CSS and Javascript. You should
first start with front-end development. After having a good
command on HTML and CSS, you should learn Javascript basics(For
simple front-end development basics of JS is enough).<br /><br />
After the front-end, comes the backend. In the backend you should
first learn about servers, databases and how the internet works?
After that pick up a language (any one) such as Python
(Django/Flask) preferable if you want to increase your tech-stack,
You can also prefer Node.js as you have already learnt about JS in
the front-end, you don’t have to learn something new. Learn
Database languages like SQL and MongoDB (learn both). After that,
you should learn any javascript framework which is in great demand
like ReactJS.<br /><br />
Also, keep in mind that each year, lots of new things come in this
field, so be prepared with old technologies. The new ones are
basically the modified forms of the old ones.<br />
For learning all these, you can refer to W3Schools, MDN WebDocs,
Udemy, YouTube or the official documentation of the language.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingEighteen"
data-toggle="collapse"
data-target="#collapseEighteen"
aria-expanded="false"
aria-controls="collapseEighteen"
>
<h5 class="mb-0">How to get started with Graphics Design?</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseEighteen"
class="collapse"
aria-labelledby="headingEighteen"
data-parent="#accordion"
>
<div class="card-body">
Graphic Design is a broad field with various niches. You will need
to figure out your niche and proceed, which will ultimately come
along with experience.<br /><br />
First of all grab a decent level laptop and try installing Adobe
Illustrator or Photoshop, and look for some courses for Graphic
Design on Udemy (Although they are paid but you can get them for
free on torrent).<br />
Complete the course and parallelly keep exploring about Graphic
Design on the internet, particularly on YouTube. (Some recommended
channels: The Futur, GFX Mentor).<br /><br />
Follow the above steps, you'll gradually get to know how to
proceed further in the world of Media and Graphics. Hope it
helps!<br />
<strong
>PS: You can feel free to contact any of your seniors if you
face issue in any of the above mentioned steps.</strong
>
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingNineteen"
data-toggle="collapse"
data-target="#collapseNineteen"
aria-expanded="false"
aria-controls="collapseNineteen"
>
<h5 class="mb-0">How to get started with Game Development?</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseNineteen"
class="collapse"
aria-labelledby="headingNineteen"
data-parent="#accordion"
>
<div class="card-body">
You can start game development using any language but a game
engine is preferred as it make everything easy and manageable,
Unity (C#), Godot (C++, GDScript, C#) or Unreal Engine (C++) .<br /><br />
In HnCC we use Unity as it is good for beginners and small
developers. YouTube has tons of tutorials regarding Unity Game
Development and Unity itself has Demo Games and Tutorials for
learning for free on their website.<br /><br />
A mid or high core cpu is recommended and if you are thinking of
creating a high graphics intensive game you must have a dedicated
graphic card.
</div>
</div>
</div>
<div class="card">
<div
class="card-header collapsed"
id="headingTwenty"
data-toggle="collapse"
data-target="#collapseTwenty"
aria-expanded="false"
aria-controls="collapseTwenty"
>
<h5 class="mb-0">
What is AI? What is Machine Learning? How do I get started?
</h5>
<i class="fas fa-angle-up"></i>
</div>
<div
id="collapseTwenty"
class="collapse"
aria-labelledby="headingTwenty"
data-parent="#accordion"
>
<div class="card-body">
AI or artificial intelligence simply means human intelligence
exhibited by machines.<br /><br />
Machine Learning is a subset of AI,it is an algorithm that has the
capability to learn from its previous experiences and for that we
don’t have to program it separately.<br />
First thing is to get familiar with the terms that we use in ML
like features,training etc, secondly we have to understand the use
of tools like jupyter notebook,pandas,numpy etc.then learn about
the common ML models like linear regression,decision trees etc and
the maths behind them.’<br /><br />
You can start your journey with the youtube channel “Code with
Harry”.<br />
<strong
>In short , ML is one small step towards data science. Start
your journey with this small initiative.</strong
>
</div>
</div>
</div>