You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9-5Lines changed: 9 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -90,7 +90,7 @@ Below we have the explanation regarding the key elements in the above syntax :-
90
90
-**Double** : This data type is used for storing the double precision values in the Source code.
91
91
-**Char** : This data type is used for storing the character in any particular variable.
92
92
93
-
Note : Code is in the Basic.java file above in the Repo.
93
+
Note : Proper code is given at [Basic.java](https://github.com/ackwolver335/Java-Coder/blob/main/Basic.java) Click to go on.
94
94
95
95
### Non-Primitive
96
96
@@ -153,6 +153,8 @@ Syntax Code :
153
153
datatype array_name = new datatype[length];
154
154
```
155
155
156
+
Note : Proper Code is given at [npdata.java](https://github.com/ackwolver335/Java-Coder/blob/main/npdata.java) Click to go on it.
157
+
156
158
## Input/Output Methods :
157
159
158
160
Below we have some packages to be used while working with Inputs and Outputs :
@@ -251,7 +253,7 @@ class Sample{
251
253
}
252
254
```
253
255
254
-
Note : More explanation is available in the "Inout.java" Code File.
256
+
Note : Proper Code is given on [Inout.java](https://github.com/ackwolver335/Java-Coder/blob/main/Inout.java) Click to go on it.
255
257
256
258
## Operators :
257
259
@@ -271,7 +273,7 @@ Categories of Operators :
271
273
272
274
-**Bitwise Operator** : Operators constitute the basic building block of any programming language. Java too provides many types of operators which can be used according to the need to perform various calculations and functions, be it logical, arithmetic, relational, etc.
273
275
274
-
Note : The Code examples are given in the code file named as "operatr.java" above.
276
+
Note : Proper Code is given on [operatr.java](https://github.com/ackwolver335/Java-Coder/blob/main/operatr.java) Click to go on it.
275
277
276
278
## Variables in JAVA
277
279
@@ -340,7 +342,7 @@ class Sample{
340
342
}
341
343
```
342
344
343
-
Note : Further Explanation is been given in the code file above with name "var1.java".
345
+
Note : Proper code is given on [var1.java](https://github.com/ackwolver335/Java-Coder/blob/main/var1.java) Click to go on it.
344
346
345
347
## Wrapper Class
346
348
@@ -407,7 +409,7 @@ class Sample{
407
409
}
408
410
```
409
411
410
-
Note : Proper Code will be given in the file name as "wrap.java".
412
+
Note : Proper Code will be given in the file name as [wrap.java](https://github.com/ackwolver335/Java-Coder/blob/main/wrap.java) Click to go on it.
411
413
412
414
## Intro to Decision Making
413
415
@@ -420,6 +422,8 @@ Decision Making in programming is similar to decision-making in real life. In pr
420
422
- nested if : A nested if is an if statement that is the target of another if or else. Nested if statements mean an if statement inside an if statement. Yes, java allows us to nest if statements within if statements. i.e, we can place an if statement inside another if statement.
421
423
- if else if ladder : Here, a user can decide among multiple options.The if statements are executed from the top down. As soon as one of the conditions controlling the if is true, the statement associated with that ‘if’ is executed, and the rest of the ladder is bypassed.
422
424
425
+
Note : Proper Code is given in the file [decision.java](https://github.com/ackwolver335/Java-Coder/blob/main/decision1.java) Click to go on it.
0 commit comments