Skip to content

Commit f64ff23

Browse files
Update ABOUT.md
1 parent 38110bd commit f64ff23

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

docs/ABOUT.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

2-
[Java](https://en.wikipedia.org/wiki/Java_(programming_language)) is a general-purpose computer programming language that is
3-
- concurrent,
4-
- [class-based](https://en.wikipedia.org/wiki/Class-based_programming),
5-
- [object-oriented](https://en.wikipedia.org/wiki/Object-oriented_programming),
2+
[Java](https://en.wikipedia.org/wiki/Java_(programming_language)) is a general-purpose computer programming language that is:
3+
1. [Concurrent](https://en.wikipedia.org/wiki/Concurrent_computing)
4+
2. [Class-Based](https://en.wikipedia.org/wiki/Class-based_programming)
5+
3. [Object-Oriented](https://en.wikipedia.org/wiki/Object-oriented_programming)
66

7-
and specifically designed to have as few [implementation dependencies](http://www.java-tips.org/other-api-tips-100035/60-netbeans/1025-what-is-an-implementation-dependency-and-whathowwhen-should-i-use-one.html) as possible. Java applications are typically compiled to [bytecode](https://en.wikipedia.org/wiki/Bytecode) that can run on any [Java virtual machine](https://en.wikipedia.org/wiki/Java_virtual_machine) (JVM) regardless of computer architecture.
7+
It has been specifically designed to have as few [implementation dependencies](http://www.java-tips.org/other-api-tips-100035/60-netbeans/1025-what-is-an-implementation-dependency-and-whathowwhen-should-i-use-one.html) as possible. Java applications are typically compiled to [bytecode](https://en.wikipedia.org/wiki/Bytecode) that can run on any [Java virtual machine](https://en.wikipedia.org/wiki/Java_virtual_machine) (JVM) regardless of computer architecture.
88

99
The primary goals kept in mind during the making of the language were:
1010

@@ -16,11 +16,11 @@ The primary goals kept in mind during the making of the language were:
1616

1717
The language derives much of its syntax from C and C++, but it has fewer low-level facilities than either of them.
1818

19-
Why Learn JAVA?
19+
## Why Learn JAVA?
2020

21-
- JAVA IS EVERYWHERE. It is one of the most sought after programming languages, as it is a standard for enterprise software, web-based content, games and mobile apps, as well as the Android operating system.
21+
- JAVA IS EVERYWHERE. It is one of the most sought after programming languages, as it is a standard for enterprise software, web-based content, games and mobile apps, as well as the [Android operating system](https://developer.android.com/index.html).
2222

23-
- [Write once, run anywhere](https://en.wikipedia.org/wiki/Write_once,_run_anywhere) policy : Programs written in Java, are compiled into machine-independent bytecodes, so it can run on any Java platform.Basically, Java is [Platform Independent](https://en.wikipedia.org/wiki/Cross-platform#Platform-independent_software)
23+
- [Write once, run anywhere](https://en.wikipedia.org/wiki/Write_once,_run_anywhere) policy : Programs written in Java, are compiled into machine-independent bytecodes, so it can run on any Java platform.Basically, Java is [Platform Independent](https://en.wikipedia.org/wiki/Cross-platform#Platform-independent_software)
2424

2525
- Java has a Rich API:
2626
Java provides [API](https://en.wikipedia.org/wiki/Application_programming_interface)'s(Application Programming Interface) for I/O, networking, utilities, XML parsing, database connections, and many other functions. Standard libraries can be supplemented by open source libraries like Apache Commons, Google Guava and others.

0 commit comments

Comments
 (0)