Forwarded from Java
Chapter 3: Java Web Development
1. Ajax Development with JavaScript
2. Creating the java package and Source File
3. Troubleshooting
4. Web Services
5. The entity Class and session Facade
6. Introduction JavaServer Faces
7. Introducing Ajax for Java
8. Connecting to a MySQL database
9. Application and Database Communication
10. Using JQuery to improve a Web page
1. Ajax Development with JavaScript
2. Creating the java package and Source File
3. Troubleshooting
4. Web Services
5. The entity Class and session Facade
6. Introduction JavaServer Faces
7. Introducing Ajax for Java
8. Connecting to a MySQL database
9. Application and Database Communication
10. Using JQuery to improve a Web page
Forwarded from Java
Chapter 4: Java GUI Programming
1. GUI Programming with AWT
2. Label
3. Examples
4. MouseEvent and MouseListener Interface
5. KeyEvent and KeyListener interface
6. Nested Classes
7. Adaptor Class Event Listeners
8. An Introduction to Swing
9. Content-Pane in JFrame
10. NetBeans for Java
11. Java Application Development
12. Java GUI Tools
1. GUI Programming with AWT
2. Label
3. Examples
4. MouseEvent and MouseListener Interface
5. KeyEvent and KeyListener interface
6. Nested Classes
7. Adaptor Class Event Listeners
8. An Introduction to Swing
9. Content-Pane in JFrame
10. NetBeans for Java
11. Java Application Development
12. Java GUI Tools
Forwarded from Java
Chapter 5: Object-Oriented Programming
1. Why OOP ?
2. Java Constructor
3. Accessing Parent Class Variables
4. The Java OOP Concepts
5. Abstraction
6. Encapsulation
7. Polymorphism
8. Inheritance
9. Association
10. Aggregation
11. Composition
12. Abstraction
13. Aggregation
14. Composition
15. Interface
16. Association, Aggregation, and Composition
17. Practice Guide for OOP
18. Composition is better than Inheritance in some sense
19. Java OOP - Miscellaneous
20. OOP math
21. Java Calls by Value and Reference
22. Java command Line Argument
23. Java Method Overriding
24. Java Method Overloading
25. Difference between Overloading and Overriding
1. Why OOP ?
2. Java Constructor
3. Accessing Parent Class Variables
4. The Java OOP Concepts
5. Abstraction
6. Encapsulation
7. Polymorphism
8. Inheritance
9. Association
10. Aggregation
11. Composition
12. Abstraction
13. Aggregation
14. Composition
15. Interface
16. Association, Aggregation, and Composition
17. Practice Guide for OOP
18. Composition is better than Inheritance in some sense
19. Java OOP - Miscellaneous
20. OOP math
21. Java Calls by Value and Reference
22. Java command Line Argument
23. Java Method Overriding
24. Java Method Overloading
25. Difference between Overloading and Overriding
Media is too big
VIEW IN TELEGRAM
Java 20: Reviewing the Enhancement in the Latest JDK Release
In what is now a semi-annual tradition, we offer an overview of the JDK Enhancement Proposal (JEPs) delivered with the latest JDK release. Along with thousands of performance, stability, and security updates, JKD 20 offers advances in Project Amber, Project Loom, and Project Panama. In this session, learn all about the value JDK 20 offers develops.
An Oracle DevLive Up - Java Developer Day session. Presented by Aurelio Garcia-Ribeyra - Senior Director, Product Management (Oracle)
In what is now a semi-annual tradition, we offer an overview of the JDK Enhancement Proposal (JEPs) delivered with the latest JDK release. Along with thousands of performance, stability, and security updates, JKD 20 offers advances in Project Amber, Project Loom, and Project Panama. In this session, learn all about the value JDK 20 offers develops.
An Oracle DevLive Up - Java Developer Day session. Presented by Aurelio Garcia-Ribeyra - Senior Director, Product Management (Oracle)
Fibonacci Series in Java without using recursion
Let's see the fibonacci series progam in java without using recursion.
Fibonacci series in Java
In fibonacci series, next number is the sum of previous two numbers for example 0, 1, 1, 2, 3, 5, 8, 13, 34, 55 etc. The first two numbers of fibonacci series are 0 and 1.
There are two ways to write the fibonacci series program in java:
* Fibonacci Series without using recursion
* Fibonacci Series using recursion
#Source_code
#6
Let's see the fibonacci series progam in java without using recursion.
Fibonacci series in Java
In fibonacci series, next number is the sum of previous two numbers for example 0, 1, 1, 2, 3, 5, 8, 13, 34, 55 etc. The first two numbers of fibonacci series are 0 and 1.
There are two ways to write the fibonacci series program in java:
* Fibonacci Series without using recursion
* Fibonacci Series using recursion
#Source_code
#6
Fibonacci Series using recursion in Java
Let's see the fibonacci series program in java using recursion.
#Source_code
#7
Let's see the fibonacci series program in java using recursion.
#Source_code
#7
Let's see the prime number program in java. In this java program, we will take a number variable and check whether the number is prime or not.
Prime Number Program in Java
Prime number in Java: Prime number is a number that is greater than 1 and divided by 1 or itself only. In other words, prime numbers can't be divided by other numbers can't be divided by other numbers than itself of 1. For Example 2, 3, 5, 7, 11, 13, 17 ... are the prime numbers.
#Source_code
#8
Prime Number Program in Java
Prime number in Java: Prime number is a number that is greater than 1 and divided by 1 or itself only. In other words, prime numbers can't be divided by other numbers can't be divided by other numbers than itself of 1. For Example 2, 3, 5, 7, 11, 13, 17 ... are the prime numbers.
#Source_code
#8