-
Notifications
You must be signed in to change notification settings - Fork 0
/
faq.html
236 lines (201 loc) · 9.14 KB
/
faq.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Oklahoma Christian's 100% Unofficial Computer Science Website Part: 6</title>
<link rel="stylesheet" href="css/styles.css">
<link rel="icon" href="assets/favicon-32x32.png" type="image/png">
</head>
<body>
<script src="js/script.js"></script>
<a href="https://www.oc.edu/">
<img src="assets/OC Square.png" class="top-left-logo">
</a>
<header>
<div class="header-wrapper">
<div class="header">
<h1>We Love</h1>
<div id="faq-word-container">Questions</div>
<div class="at">At</div>
<svg width="300" height="300" xmlns="http://www.w3.org/2000/svg" class="svgstylings" viewBox="0 0 256 256">
<g>
<path
d="m73.38,106.87c-20.27,0-36.71-15.95-36.71-35.62s16.44-35.62,36.71-35.62,36.71,15.95,36.71,35.62-16.44,35.62-36.71,35.62M220,35.62V0c-39.29,0-71.37,29.94-73.33,67.59C144.7,29.97,112.64.06,73.38.06S0,31.93,0,71.26s32.85,71.2,73.38,71.2,71.32-29.92,73.29-67.54c1.96,37.65,34.04,67.58,73.33,67.58v-35.63c-20.24,0-36.71-15.98-36.71-35.62s16.46-35.62,36.71-35.62">
</path>
</g>
</svg>
</div>
</div>
</header>
<!-- Matthew's for responsiveness -->
<!-- Navigation Bar -->
<div class="nav-bar">
<li><a href="index.html">Home</a></li>
<li><a href="getting_started.html">Getting Started</a></li>
<li><a href="careers.html">Careers</a></li>
<li><a href="day_in_the_life.html">A Day in the Life</a></li>
<li><a class="active" href="faq.html">FAQ</a></li>
<li><a href="about_us.html">About Us</a></li>
</div>
<!-- Michael's original -->
<!-- <ul>
<li><a href="index.html">Home</a></li>
<li><a href="getting_started.html">Getting Started</a></li>
<li><a href="careers.html">Careers</a></li>
<li><a href="day_in_the_life.html">A Day in the Life</a></li>
<li><a class="active" href="faq.html">FAQ</a></li>
<li><a href="about_us.html">About Us</a></li>
</ul> -->
<h2>FAQS</h2>
<h3>General Questions</h3>
<div class="accordion">
<div class="accordion-item">
<button class="accordion-header">What is computer science?</button>
<div class="accordion-content">
<p>Computer science is the study of computers and computational systems. It involves both theoretical studies of
algorithms and practical aspects of implementing them through computer software and hardware.</p>
</div>
</div>
<p></p>
<div class="accordion-item">
<button class="accordion-header">What are the main areas of computer science?</button>
<div class="accordion-content">
<p>Major areas include algorithms and data structures, programming languages, software engineering, computer
architecture, artificial intelligence, databases, networking, and cybersecurity.</p>
</div>
</div>
<p></p>
<div class="accordion-item">
<button class="accordion-header">What skills are important for studying computer science?</button>
<div class="accordion-content">
<p>Key skills include problem-solving, logical thinking, attention to detail, mathematical proficiency, and
proficiency in programming languages.</p>
</div>
</div>
<h3>Academic Preparation</h3>
<p></p>
<div class="accordion-item">
<button class="accordion-header">What are the educational requirements to study computer science?</button>
<div class="accordion-content">
<p>Typically, a high school diploma with strong performance in mathematics and science is required. Some
programs may also require coursework in programming or computer science.</p>
</div>
</div>
<p></p>
<div class="accordion-item">
<button class="accordion-header">Do I need to have prior programming experience before starting a computer science
program?</button>
<div class="accordion-content">
<p>While prior programming experience can be beneficial, many computer science programs start with introductory
courses that teach basic programming skills.</p>
</div>
</div>
<p></p>
<div class="accordion-item">
<button class="accordion-header">What subjects should I focus on in high school to prepare for a computer science
degree?</button>
<div class="accordion-content">
<p>Focus on mathematics (especially algebra and calculus), computer science, physics, and logic. Advanced
courses in programming, if available, are also useful.</p>
</div>
</div>
<h3>Study and Coursework</h3>
<p></p>
<div class="accordion-item">
<button class="accordion-header">What kind of coursework can I expect in a computer science program?</button>
<div class="accordion-content">
<p>Coursework typically includes programming, data structures and algorithms, computer systems, databases,
software engineering, operating systems, and elective courses in areas like artificial intelligence or
cybersecurity.</p>
</div>
</div>
<p></p>
<div class="accordion-item">
<button class="accordion-header">Are there specific programming languages I should learn first?</button>
<div class="accordion-content">
<p>Common introductory languages include Python, Java, and C++. The choice may depend on the specific program or
curriculum.</p>
</div>
</div>
<p></p>
<div class="accordion-item">
<button class="accordion-header">How much math is involved in computer science studies?</button>
<div class="accordion-content">
<p>Mathematics is a significant part of computer science, including topics such as discrete mathematics, linear
algebra, calculus, and statistics.</p>
</div>
</div>
<h3>Career and Practical Experience</h3>
<p></p>
<div class="accordion-item">
<button class="accordion-header">What types of careers can I pursue with a computer science degree?</button>
<div class="accordion-content">
<p>Career options include software developer, data scientist, systems analyst, cybersecurity specialist, network
engineer, and artificial intelligence engineer, among others.</p>
</div>
</div>
<p></p>
<div class="accordion-item">
<button class="accordion-header">How important is practical experience and internships in computer
science?</button>
<div class="accordion-content">
<p>Practical experience is crucial. Internships, coding projects, and practical assignments provide hands-on
experience and enhance job readiness.</p>
</div>
</div>
<p></p>
<div class="accordion-item">
<button class="accordion-header">Should I participate in coding competitions or hackathons?</button>
<div class="accordion-content">
<p>Yes, participating in coding competitions and hackathons can be a great way to practice skills, build a
portfolio, and network with professionals.</p>
</div>
</div>
<h3>Challenges and Tips</h3>
<p></p>
<div class="accordion-item">
<button class="accordion-header">What are some common challenges in studying computer science?</button>
<div class="accordion-content">
<p>Common challenges include managing complex problem-solving tasks, understanding abstract concepts, keeping up
with rapidly evolving technology, and debugging code.</p>
</div>
</div>
<p></p>
<div class="accordion-item">
<button class="accordion-header">What study habits are recommended for computer science students?</button>
<div class="accordion-content">
<p>Recommended habits include regular practice, seeking help when needed, working on projects, collaborating
with peers, and staying updated with industry trends.</p>
</div>
</div>
<p></p>
<div class="accordion-item">
<button class="accordion-header">How can I stay motivated and succeed in a computer science program?</button>
<div class="accordion-content">
<p>Set clear goals, break tasks into manageable chunks, seek support from peers and mentors, and stay curious
and engaged with technology.</p>
</div>
</div>
<h3>Additional Resources</h3>
<p></p>
<div class="accordion-item">
<button class="accordion-header">What are some good resources for learning computer science outside of the
classroom?</button>
<div class="accordion-content">
<p>Resources include online courses (e.g., Coursera, edX, Udacity), coding practice platforms (e.g., LeetCode,
HackerRank), books, tutorials, and tech communities.</p>
</div>
</div>
<p></p>
<div class="accordion-item">
<button class="accordion-header">How important is networking in the field of computer science?</button>
<div class="accordion-content">
<p>Networking is very important. Connecting with professionals, joining tech communities, and attending industry
events can provide opportunities and insights.</p>
</div>
</div>
<h5>Written By</h5>
<a href="memes.html">
<img src="assets/Cute Rat.jpg" class="my-rat-image">
</a>
</body>
</html>