forked from UjjwalSharma01/checklist
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJavaBasic.html
More file actions
326 lines (312 loc) · 11.5 KB
/
JavaBasic.html
File metadata and controls
326 lines (312 loc) · 11.5 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Java Basics - The Checklist</title>
<link href="https://api.fontshare.com/v2/css?f[]=nunito@400&f[]=bebas-neue@400&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="dark-mode.css">
<link rel="stylesheet" href="code-snippet.css"> <!-- Add the code snippet CSS file -->
</head>
<body>
<header>
<h1><a href="index.html">The Checklist</a></h1>
</header>
<nav>
<button class="dark-mode-toggle">
<i class="sun-icon"></i>
<i class="moon-icon"></i>
</button>
</nav>
<main>
<section class="checklist">
<h2>Java Basics</h2>
<ul>
<!-- Example 1: Introduction to Java -->
<li class="checklist-item">
<div class="section">
<div class="section-box">
<label class="section-box-label">
<input type="checkbox" class="checkbox" data-checklist="java-basics">
<span class="checkmark"></span>
</label>
</div>
<div class="section-title">
<label class="section-title-label">
Introduction to Java
<span class="dropdown-arrow"></span>
</label>
</div>
</div>
<div class="hidden-text code-snippet" data-example="1">
<p>
Java is a versatile and widely used programming language known for its portability and ease of use. It's widely used for developing web and mobile applications, enterprise software, and more.
</p>
<pre class="code-block">
public class HelloWorld {
public static main(String[] args) {
System.out.println("Hello, Java!");
}
</pre>
<button class="copy-button" onclick="copyToClipboard(1)">Copy</button>
</div>
</li>
<!-- Example 2: Variables and Data Types in Java -->
<li class="checklist-item">
<div class="section">
<div class="section-box">
<label class="section-box-label">
<input type="checkbox" class="checkbox" data-checklist="java-basics">
<span class="checkmark"></span>
</label>
</div>
<div class "section-title">
<label class="section-title-label">
Variables and Data Types in Java
<span class="dropdown-arrow"></span>
</label>
</div>
</div>
<div class="hidden-text code-snippet" data-example="2">
<p>
Variables in Java store data, while data types define the kind of data a variable can hold. Common data types include int, double, and String, among others.
</p>
<pre class="code-block">
int age = 30;
double price = 19.99;
String name = "Amit Aryan";
</pre>
<button class="copy-button" onclick="copyToClipboard(2)">Copy</button>
</div>
</li>
<!-- Example 3: Operators in Java -->
<li class="checklist-item">
<div class="section">
<div class="section-box">
<label class="section-box-label">
<input type="checkbox" class="checkbox" data-checklist="java-basics">
<span class="checkmark"></span>
</label>
</div>
<div class="section-title">
<label class="section-title-label">
Operators in Java
<span class="dropdown-arrow"></span>
</label>
</div>
</div>
<div class="hidden-text code-snippet" data-example="3">
<p>
Operators in Java perform various operations, including arithmetic, comparison, and logical operations. These are essential for manipulating data and making decisions in your programs.
</p>
<pre class="code-block">
int a = 10;
int b = 5;
int result = a + b; // result will be 15
</pre>
<button class="copy-button" onclick="copyToClipboard(3)">Copy</button>
</div>
</li>
<!-- Example 4: Control Structures in Java -->
<li class="checklist-item">
<div class="section">
<div class="section-box">
<label class="section-box-label">
<input type="checkbox" class="checkbox" data-checklist="java-basics">
<span class="checkmark"></span>
</label>
</div>
<div class="section-title">
<label class="section-title-label">
Control Structures in Java
<span class="dropdown-arrow"></span>
</label>
</div>
</div>
<div class="hidden-text code-snippet" data-example="4">
<p>
Control structures like if-else, switch, and loops (for, while, do-while) help in controlling the flow of your Java programs, allowing you to make decisions and repeat actions as needed.
</p>
<pre class="code-block">
if (condition) {
// Code to execute when the condition is true
} else {
// Code to execute when the condition is false
}
</pre>
<button class="copy-button" onclick="copyToClipboard(4)">Copy</button>
</div>
</li>
<!-- Example 5: Functions (Methods) in Java -->
<li class="checklist-item">
<div class="section">
<div class="section-box">
<label class="section-box-label">
<input type="checkbox" class="checkbox" data-checklist="java-basics">
<span class="checkmark"></span>
</label>
</div>
<div class="section-title">
<label class="section-title-label">
Functions (Methods) in Java
<span class="dropdown-arrow"></span>
</label>
</div>
</div>
<div class="hidden-text code-snippet" data-example="5">
<p>
Functions (methods) are reusable blocks of code that perform specific tasks. They improve code organization and make it easier to maintain and understand.
</p>
<pre class="code-block">
public int add(int a, int b) {
return a + b;
}
</pre>
<button class="copy-button" onclick="copyToClipboard(5)">Copy</button>
</div>
</li>
<!-- Example 6: Arrays in Java -->
<li class="checklist-item">
<div class="section">
<div class="section-box">
<label class="section-box-label">
<input type="checkbox" class="checkbox" data-checklist="java-basics">
<span class="checkmark"></span>
</label>
</div>
<div class="section-title">
<label class="section-title-label">
Arrays in Java
<span class="dropdown-arrow"></span>
</label>
</div>
</div>
<div class="hidden-text code-snippet" data-example="6">
<p>
Arrays are used to store multiple values of the same type in Java. They are fundamental for working with collections of data.
</p>
<pre class="code-block">
int[] numbers = {1, 2, 3, 4, 5};
</pre>
<button class="copy-button" onclick="copyToClipboard(6)">Copy</button>
</div>
</li>
<!-- Example 7: Object-Oriented Programming (OOP) in Java -->
<li class="checklist-item">
<div class="section">
<div class="section-box">
<label class="section-box-label">
<input type="checkbox" class="checkbox" data-checklist="java-basics">
<span class="checkmark"></span>
</label>
</div>
<div class="section-title">
<label class="section-title-label">
Object-Oriented Programming (OOP) in Java
<span class="dropdown-arrow"></span>
</label>
</div>
</div>
<div class="hidden-text code-snippet" data-example="7">
<p>
Object-Oriented Programming (OOP) is a paradigm in Java that focuses on creating objects and classes. This concept helps in organizing and modeling real-world entities.
</p>
<pre class="code-block">
class Person {
String name;
int age;
public Person(String name, int age) {
this.name = name;
this.age = age;
}
}
</pre>
<button class="copy-button" onclick="copyToClipboard(7)">Copy</button>
</div>
</li>
<!-- Example 8: Inheritance in Java -->
<li class="checklist-item">
<div class="section">
<div class="section-box">
<label class="section-box-label">
<input type="checkbox" class="checkbox" data-checklist="java-basics">
<span class="checkmark"></span>
</label>
</div>
<div class="section-title">
<label class="section-title-label">
Inheritance in Java
<span class="dropdown-arrow"></span>
</label>
</div>
</div>
<div class="hidden-text code-snippet" data-example="8">
<p>
Inheritance allows one class (subclass or derived class) to inherit attributes and methods from another class (superclass or base class). It facilitates code reuse and extensibility.
</p>
<pre class="code-block">
class Vehicle {
String brand;
public Vehicle(String brand) {
this.brand = brand;
}
}
class Car extends Vehicle {
int speed;
public Car(String brand, int speed) {
super(brand);
this.speed = speed;
}
}
</pre>
<button class="copy-button" onclick="copyToClipboard(8)">Copy</button>
</div>
</li>
<!-- Example 9: Polymorphism in Java -->
<li class="checklist-item">
<div class="section">
<div class="section-box">
<label class="section-box-label">
<input type="checkbox" class="checkbox" data-checklist="java-basics">
<span class="checkmark"></span>
</label>
</div>
<div class="section-title">
<label class="section-title-label">
Polymorphism in Java
<span class="dropdown-arrow"></span>
</label>
</div>
</div>
<div class="hidden-text code-snippet" data-example="9">
<p>
Polymorphism enables objects of different classes to be treated as objects of a common superclass. This promotes flexibility and dynamic method invocation in Java programs.
</p>
<pre class="code-block">
class Animal {
public void sound() {
System.out.println("Animal makes a sound");
}
}
class Dog extends Animal {
public void sound() {
System.out.println("Dog barks");
}
}
class Cat extends Animal {
public void sound() {
System.out.println("Cat meows");
}
</pre>
<button class="copy-button" onclick="copyToClipboard(9)">Copy</button>
</div>
</li>
</ul>
</section>
</main>
<script src="script.js"></script>
<script src="dark-mode.js"></script>
<script src="code-snippet.js"></script> <!-- Add the code snippet JavaScript file -->
</body>
</html>