-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOOP.html
More file actions
55 lines (53 loc) · 3.15 KB
/
Copy pathOOP.html
File metadata and controls
55 lines (53 loc) · 3.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Course Details</title>
<link rel="stylesheet" href="Course.css" />
</head>
<body>
<div class="header">
<a href="index.html#courses"><div class="academy-name"><h2>CODEIN</h2></div></a>
<div class="course-title">Java - OOP ( I2211 )</div>
</div>
<div class="course-box">
<h2>Course Details</h2>
<div class="course-description">
<b>This Java course covers core programming concepts with a focus on the four fundamental principles of Java: encapsulation, inheritance, polymorphism, and abstraction to build robust and scalable applications .</b>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 1: Introduction to OOP :</div>
<div class="chapter-detail">Learn the concept of OOP (Object-Oriented Programming).</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 2: Definig Classes :</div>
<div class="chapter-detail">This chapter introduces how to define classes in Java, including declaring attributes, methods, and constructors to create reusable and organized code structures .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 3: Static Variables and Methods :</div>
<div class="chapter-detail">This chapter explains the use of static variables and methods in Java, highlighting how they belong to the class rather than instances and are shared among all objects .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 4: Inheritance :</div>
<div class="chapter-detail">Learn how explores inheritance in Java, demonstrating how one class can inherit properties and behaviors from another to promote code reuse and hierarchical relationships .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 5: Polymorphism :</div>
<div class="chapter-detail">This chapter covers polymorphism in Java, showing how objects can take many forms through method overriding and interface implementation to achieve flexible and dynamic behavior .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 6: Abstract Class :</div>
<div class="chapter-detail">This chapter explains abstract classes in Java, which serve as partially implemented blueprints that define common behavior for subclasses while enforcing method implementation through abstraction .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 7: Interfaces :</div>
<div class="chapter-detail">This chapter introduces interfaces in Java, which define a contract of methods that implementing classes must fulfill, supporting multiple inheritance and abstraction .</div>
</div>
<div class="chapter-box">
<div class="chapter-title">Chapter 8: Exceptions :</div>
<div class="chapter-detail">This chapter discusses exception handling in Java, teaching how to manage runtime errors gracefully using try-catch blocks, throw statements, and custom exceptions .</div>
</div>
</div>
</body>
</html>