Skip to content

Commit 2ca9ac3

Browse files
committed
Linkedin_learning
1 parent 997e272 commit 2ca9ac3

File tree

4 files changed

+14
-7
lines changed

4 files changed

+14
-7
lines changed

.idea/markdown.xml

Lines changed: 7 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Core JAVA.md renamed to Core_JAVA/Core JAVA.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@ Yes — You should use built-in collections from `java.util` because:
584584

585585
---
586586

587-
<img src="img/line.gif">
587+
<img src="../img/line.gif">
588588

589589
# OOPS
590590

@@ -658,7 +658,7 @@ Integer y = new Integer(5); // Object (wrapper class)
658658

659659
---
660660

661-
<img src="img/line.gif">
661+
<img src="../img/line.gif">
662662

663663
## Primitive Data Types (8)
664664

@@ -966,7 +966,7 @@ So, the "incompatible types" error you're seeing in the Table for `float f = 123
966966
---
967967
---
968968

969-
<img src="img/JVM%2001.jpg">
969+
<img src="../img/JVM%2001.jpg">
970970

971971
In C/C++, this two are allow because of.
972972

@@ -983,7 +983,7 @@ Java's "powerful compiler" enforces **stronger type checking**. It does **not**
983983
984984
---
985985

986-
<img src="img/integral%20data%20types.JPG">
986+
<img src="../img/integral%20data%20types.JPG">
987987

988988
Specify literal values for integral data types (byte, short, int, long) in Java:
989989

@@ -1001,7 +1001,7 @@ Specify literal values for integral data types (byte, short, int, long) in Java:
10011001

10021002
## Literal
10031003

1004-
<img src="img/literal.JPG">
1004+
<img src="../img/literal.JPG">
10051005

10061006
```
10071007
+-----------+ +---------+ +-----------------------+ +---------------------+
@@ -1016,7 +1016,7 @@ Specify literal values for integral data types (byte, short, int, long) in Java:
10161016

10171017
## This is the only possible way to specify lateral values for integral data types.
10181018

1019-
<img src="img/specify%20lateral%20values.JPG">
1019+
<img src="../img/specify%20lateral%20values.JPG">
10201020

10211021
Here's a table representing valid and invalid syntax for integral literals, along with common errors,
10221022

@@ -1041,7 +1041,7 @@ Here's a table representing valid and invalid syntax for integral literals, alon
10411041

10421042
---
10431043

1044-
<img src="img/JVM%2002.JPG">
1044+
<img src="../img/JVM%2002.JPG">
10451045

10461046
When you write integral literal values in your Java code (e.g., `10`, `010`, `0x10`, `0b10`), the **Java compiler and eventually the JVM (Java Virtual Machine) always convert these into their standard binary representation (which corresponds to their decimal value)** for internal storage and processing.
10471047

Binary file not shown.

OOPS_Object_oriented_Concepts/A01_Linkedin_learning/Ex_Files_Learning_Java/Exercise Files/Chapter 01/01_05/begin/src/.gitignore

Whitespace-only changes.

0 commit comments

Comments
 (0)