forked from submit50/submit50
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (52 loc) · 2.51 KB
/
Copy pathindex.html
File metadata and controls
56 lines (52 loc) · 2.51 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
<!DOCTYPE html>
<html>
<head>
<title>OOPS - Introduction</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css">
<meta name="viewport" content="width=device-width, intial-scale=1">
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<div class="container">
<div class="row">
<div id = "header" class="col-12">
<h1>OBJECT ORIENTED PROGRAMMING</h1>
</div>
<div class="left_menu col-sm-4 col-12" >
<ul>
<li><a href="index.html">Introduction</a></li>
<li><a href="classes.html">Classes</a></li>
<li><a href="object.html">Object</a></li>
<li><a href="encapsulation.html">Encapsulation</a></li>
<li><a href="inheritance.html">Inheritance</a></li>
<li><a href="polymorphism.html">Polymorphism</a></li>
<li><a href="ref.html">References</a></li>
</ul>
</div>
<div id="content" class="col-sm-8 col-12">
<h2>Introduction to Object Oriented Programming</h2>
<p>
Object-Oriented Programming (OOP) is the term used to describe a programming approach based on objects and classes. The object-oriented paradigm allows us to organise software as a collection of objects that consist of both data and behaviour. This is in contrast to conventional functional programming practice that only loosely connects data and behaviour.
</p>
<p>
The object-oriented programming approach encourages :</p>
<ul><li>Modularisation : where the application can be decomposed into modules.</li>
<li>Software re-use : where an application can be composed from exisiting and new modules.</li>
</ul>
<p>
An object-oriented programming language generally supports five main features :<p>
<table>
<tr><td><a href="classes.html">Classes</a></td></tr>
<tr> <td><a href="object.html">Object</a></td>
</tr>
<tr><td><a href="encapsulation.html">Encapsulation</a></td> </tr>
<tr> <td><a href="polymorphism.html">Polymorphism</a></td> </tr>
<tr> <td><a href="inheritance.html">Inheritance</a></td>
</tr>
</table>
</div>
<div id="footer" class="col-12">©ambalika2019</div>
</div>
</div>
</body>
</html>