-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
227 lines (222 loc) · 8.19 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>JS Practical</title>
<link rel="stylesheet" href="style.css" />
<script src="https://kit.fontawesome.com/c1c38b6dde.js" crossorigin="anonymous"></script>
</head>
<body>
<div id="loader">
<img src="images/loader.gif" id="loader-gif">
<p>Loading...</p>
</div>
<div id="overlay"></div>
<div class="over-container">
<header class="heading color-white">
<h1>JavaScript Practical Assignment</h1>
<nav class="navigation">
<ul class="nav-list">
<li><a href="#desc" id="l1">Description</a></li>
<div class="vertical-line"></div>
<li><a href="#ques" id="l2">Questions</a></li>
</ul>
</nav>
</header>
<main>
<section id="desc">
<h2 class="sec-heading color-white">Assignment Description</h2>
<p class="big-desc color-white txt-bold paragraph">
JavaScript Practical for CMSACOR11P
</p>
<p class="small-desc color-white paragraph">
This assignment involves developing event-driven JavaScript programs
to solve a series of practical tasks, including table generation,
calculations, and data analysis. The tasks are designed to deepen
understanding of JavaScript fundamentals, such as loops,
conditionals, and functions. Each program will prompt the user for
input, perform the required operations, and display results using
alerts or other interactive methods. By completing these exercises,
I will gain hands-on experience with JavaScript programming
techniques essential for client-side web development.
</p>
<br />
<p class="small-desc color-white paragraph">
To navigate through this JavaScript Practical Assignment webpage,
start on this homepage where you’ll find the Description and
Questions tabs. The Description section provides an overview of the
assignment and its objectives. To access specific questions and view
solutions, simply click on the Questions. This will direct you to a
separate page where each question is presented along with its
solution.
</p>
</section>
<section id="ques">
<h2 class="sec-heading color-white">Assignment Questions</h2>
<div class="all-ques">
<a href="Q1/q1.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q1</p>
</div>
<p class="small-desc color-white">
Print a table of numbers from 5 to 15 and their squares and
cubes using alert.
</p>
</div>
</a>
<a href="Q2/q2.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q2</p>
</div>
<p class="small-desc color-white">
Print the largest of three numbers.
</p>
</div>
</a>
<a href="Q3/q3.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q3</p>
</div>
<p class="small-desc color-white">
Find the factorial of a number n.
</p>
</div>
</a>
<a href="Q4/q4.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q4</p>
</div>
<p class="small-desc color-white">
Enter a list of positive numbers terminated by Zero. Find the
sum and average of these numbers.
</p>
</div>
</a>
<a href="Q5/q5.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q5</p>
</div>
<p class="small-desc color-white">
A person deposits Rs 1000 in a fixed account yielding 5%
interest. Compute the amount in the account at the end of each
year for n years.
</p>
</div>
</a>
<a href="Q6/q6.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q6</p>
</div>
<p class="small-desc color-white">
Read n numbers. Count the number of negative numbers, positive
numbers and zeros in the list.
</p>
</div>
</a>
<a href="Q7(extra)/q7.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q7</p>
</div>
<p class="small-desc color-white">
Input a string and use String Copy function.
</p>
</div>
</a>
<a href="Q8(extra)/q8.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q8</p>
</div>
<p class="small-desc color-white">
Without using string function reverse a string.
</p>
</div>
</a>
<a href="Q9(extra)/q9.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q9</p>
</div>
<p class="small-desc color-white">
Take a list of random numbers and bubble sort the list.
</p>
</div>
</a>
<a href="Q10(extra)/q10.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q10</p>
</div>
<p class="small-desc color-white">
Take a list of random numbers and sort the list using
selection sort.
</p>
</div>
</a>
<a href="Q11(extra)/q11.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q11</p>
</div>
<p class="small-desc color-white">
Using searching algorithm search a number from the list.
</p>
</div>
</a>
<a href="Q12(extra)/q12.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q12</p>
</div>
<p class="small-desc color-white">Merge two given list.</p>
</div>
</a>
<a href="Q13(extra)/q13.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q13</p>
</div>
<p class="small-desc color-white">
Take an input and find if the data exists in the list.
</p>
</div>
</a>
<a href="Q14(extra)/q14.html" target="_blank">
<div class="q">
<div class="q-no">
<p class="big-desc color-secondary">Q14</p>
</div>
<p class="small-desc color-white">
Take input of user id and password and give access after
proper authentication.
</p>
</div>
</a>
</div>
</section>
</main>
<footer>
<div class="content">
<p class="color-white">
JavaScript Practical Assignment : CMSACOR11P
</p>
<p class="color-white">
Made with <span class="love-icon"> ❤ </span> by Deeptanu Sen.
</p>
<p class="color-white">Registration Number : 1052211402478</p>
<a href="/~https://github.com/Deeptanu2005?tab=repositories" target="_blank" class="btn1">
Open GitHub
<i class="fa-solid fa-arrow-right"></i>
</a>
</div>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>