Skip to content

Commit b9f5a9b

Browse files
committed
ver101
1 parent 4d00d9f commit b9f5a9b

File tree

2 files changed

+493
-2
lines changed

2 files changed

+493
-2
lines changed

README.md

Lines changed: 89 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,89 @@
1-
# Java-Full-Course-for-Beginners
2-
This Java course is designed for absolute beginners. You will learn Java from very basics to very advance. Learn All the fundamentals and core concepts of Java Programming language.
1+
# Java Full Course for Beginners
2+
3+
Learn Java from very basics up to and including Object Oriented Programming, Classes, Objects and much more. Learn All the fundamentals and core concepts of Java Programming language.
4+
5+
Follow the course:
6+
7+
On this [Website](https://coding-aqyanoos.github.io/Java-Full-Course-for-Beginners/) or On [YouTube](https://youtu.be/IlNLmM-_ktY).
8+
9+
10+
> _Thanks for Supporting our YouTube Channel_
11+
12+
### Table of Content + Timing
13+
14+
15+
<ul>
16+
<li><strong>0:00 </strong> Course Introduction</li>
17+
<li><strong>2:20 </strong> Useful Info About Java</li>
18+
<li><strong>4:17 </strong> Installing Java</li>
19+
<li><strong>6:42 </strong> How to add Java to the Path/System variables?</li>
20+
<li><strong>10:04 </strong> How to install Visual Studio Code?</li>
21+
<li><strong>11:17 </strong> The Anatomy of Java Program</li>
22+
<li><strong>22:55 </strong> Naming conventions in Java</li>
23+
<li><strong>24:06 </strong> Writing Your First Java Program</li>
24+
<li><strong>26:33 </strong> How to compile and execute a Java Program?</li>
25+
<li><strong>31:34 </strong> How does Java code get executed behind the scenes(under the hood)?</li>
26+
<li><strong>38:22 </strong> Interesting and funny facts about Java</li>
27+
<li><strong>40:14 </strong> How to create Comments in Java?</li>
28+
<li><strong>41:13 </strong> Variables in Java</li>
29+
<li><strong>51:35 </strong> Data Types(Primitive Types) in Java</li>
30+
<li><strong>1:06:38 </strong> Reference Types (Non-primitive Types) in Java</li>
31+
<li><strong>1:18:49 </strong> Strings in Java</li>
32+
<li><strong>1:27:43 </strong> What is the difference between Parameter and Argument?</li>
33+
<li><strong>1:31:33 </strong> Is String mutable or immutable in Java?</li>
34+
<li><strong>1:32:39 </strong> String methods in Java</li>
35+
<li><strong>1:40:31 </strong> Escape Sequences in Java</li>
36+
<li><strong>1:51:22 </strong> Arrays in Java</li>
37+
<li><strong>2:11:53 </strong> Multi-dimension arrays in Java</li>
38+
<li><strong>2:19:24 </strong> How to create Constant variables in Java?</li>
39+
<li><strong>2:21:59 </strong> Operators in Java</li>
40+
<li><strong>2:22:04 </strong> Arithmetic Operators or Arithmetic expressions in Java</li>
41+
<li><strong>2:27:25 </strong> Assignment Operators or Compound Operators or Augmented Operators in Java
42+
</li>
43+
<li><strong>2:32:33 </strong> Comparison Operators in Java</li>
44+
<li><strong>2:36:20 </strong> Logical Operators in Java</li>
45+
<li><strong>2:44:42 </strong> How can the order of logical expression impact the performance of your
46+
application?</li>
47+
<li><strong>2:47:36 </strong> Bitwise Operators in Java</li>
48+
<li><strong>2:49:21 </strong> How to convert integer or Decimal to Binary?</li>
49+
<li><strong>2:56:07 </strong> How to convert Binary to integer or Decimal?</li>
50+
<li><strong>2:57:03 </strong> Order of Operations in Java</li>
51+
<li><strong>2:59:41 </strong> Casting or Type Conversion in Java</li>
52+
<li><strong>3:02:12 </strong> Implicit type conversion or implicit casting in Java</li>
53+
<li><strong>3:06:40 </strong> Explicit type conversion or explicit casting in Java</li>
54+
<li><strong>3:08:17 </strong> Type conversion between non-compatible Types in Java</li>
55+
<li><strong>3:12:13 </strong> Example of Data Loss in type conversion</li>
56+
<li><strong>3:16:15 </strong> Math class or Math Library in Java</li>
57+
<li><strong>3:26:38 </strong> Formatting Numbers(Currency, percent,...) in Java</li>
58+
<li><strong>3:31:15 </strong> Reading / Getting User inputs from terminal in Java</li>
59+
<li><strong>3:40:15 </strong> Conditionals or if else statements in Java</li>
60+
<li><strong>3:47:58 </strong> Project: Weather reporter</li>
61+
<li><strong>3:55:25 </strong> Ternary operator (short-hand if else) in Java</li>
62+
<li><strong>4:02:01 </strong> Switch Statement in Java</li>
63+
<li><strong>4:08:53 </strong> Loops in Java</li>
64+
<li><strong>4:10:14 </strong> For Loop in Java</li>
65+
<li><strong>4:17:34 </strong> While Loop in Java</li>
66+
<li><strong>4:24:11 </strong> Do While Loop in Java</li>
67+
<li><strong>4:26:01 </strong> For Each Loop in Java</li>
68+
<li><strong>4:27:47 </strong> Break and Continue in Java</li>
69+
<li><strong>4:30:20 </strong> Blocks and Scopes in Java</li>
70+
<li><strong>4:37:34 </strong> Functions in Java</li>
71+
<li><strong>4:38:23 </strong> Project: Finding the Area of any circle in Java</li>
72+
<li><strong>4:53:43 </strong> Lambda Function in Java</li>
73+
<li><strong>4:55:28 </strong> The Return keyword in Java</li>
74+
<li><strong>4:56:19 </strong> What is the difference between Procedural programming and Object Oriented
75+
Programming?</li>
76+
<li><strong>4:58:22 </strong> Classes and objects in Java</li>
77+
<li><strong>5:05:58 </strong> Access Modifiers in Java</li>
78+
<li><strong>5:06:54 </strong> Constructor in classes in Java</li>
79+
<li><strong>5:11:56 </strong> Inheritance in classes in Java</li>
80+
<li><strong>5:23:04 </strong> Inheritance with Constructor in Java</li>
81+
<li><strong>5:26:53 </strong> How to prevent Inheritance in Java?</li>
82+
<li><strong>5:27:44 </strong> Project: Shopping Calculator</li>
83+
<li><strong>5:47:20 </strong> Handle Exceptions in Java</li>
84+
<li><strong>5:48:27 </strong> Regex or Regular Expression in Java</li>
85+
<li><strong>6:05:02 </strong> Best Practices and Important tips about programming</li>
86+
<li><strong>6:07:51 </strong> Final words and thanks</li>
87+
</ul>
88+
89+
## Have fun Learning programming.

0 commit comments

Comments
 (0)