Geek Coding Academy
Geek Coding Academy
  • 32
  • 42 843
Chapter 7.2 | Java IO | Types of Streams | Java tutorial | Geek coding academy
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial
Presentation (.ppt) file :
docs.google.com/presentation/d/1B-r8oTcG-l8E0nXr85SZf5xMexsfs3ygrSSbBNbpN_A/edit?usp=sharing
In Java, streams represent a continuous flow of data that can be read or written.
Streams are an essential part of Java I/O (input/output) operations.
They handle the transmission of data between programs and input/output sources like files, networks, and even the console.
Переглядів: 9

Відео

Chapter 7.1 | Java IO | Introduction | Java tutorial | Geek coding academy
Переглядів 20Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) file : docs.google.com/presentation/d/17KwN1HYGJApW_9z282KPv-zIgZUojmpImMiktEnmy8w/edit?usp=sharing In Java, I/O (Input and Output) refers to the system of handling data input from and output to external sources like files, network connections, and user inputs. This system forms the foundation of data manipulatio...
Chapter 6.13 | Best Practices with the Collection Framework | Java tutorial | Geek coding academy
Переглядів 21Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) file : docs.google.com/presentation/d/16VXoQUwH0tMMtJ1lw6u8SfR3jxmtpgMpRGvy1z-md78/edit?usp=sharing When working with the Java Collection Framework (JCF), following best practices can significantly improve the efficiency, readability, maintainability, and performance of your code. Below are key best practices, ex...
Chapter 6.12 | Streams | Collections Framework | Java tutorial | Geek coding academy
Переглядів 36Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) file : docs.google.com/presentation/d/1ju9kJZ4dSYuagysskjyI2fWwDMDVT_eVE7arGYDRSlA/edit?usp=sharing Introduced in Java 8, Streams provide a functional programming approach to handling sequences of elements. Streams allow us to process collections of objects in a declarative manner (using functional operations) li...
Chapter 6.11 | Immutable Collections | Collections Framework | Java tutorial | Geek coding academy
Переглядів 66Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) file : docs.google.com/presentation/d/1ujKFwa0GRvmQDHYe8s2FjdavRdV5xq7uU3h6Db4fo1M/edit?usp=sharing Immutable collections in Java are collections whose elements cannot be modified after the collection is created. This means once an immutable collection is constructed, elements cannot be added, removed, or replace...
Chapter 6.10 | Generics | Collection Framework | Java tutorial | Geek coding academy.
Переглядів 43Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) file : docs.google.com/presentation/d/1W0EZzSD4PLvdV2r3nwdp4VAiN2p-qCYt7GCwhFl93w4/edit?usp=sharing Generics in Java are an advanced feature introduced in Java 5 that enable the creation of classes, methods, and interfaces that operate on parameterized types. This allows developers to write flexible, reusable, an...
Chapter 6.9 | Concurrent Collections | Collection framework | Java tutorial | Geek coding academy
Переглядів 16Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) file : docs.google.com/presentation/d/1s2pD0PD4fHcbc3nNrxblQO3Psc1XgnnHubltA5SHbv0/edit?usp=sharing Concurrent collections in Java are part of the java.util.concurrent package, introduced to address concurrency challenges in multi-threaded environments. These collections provide a safe and efficient way for multi...
Chapter 6.8 | Iterating Through Collections | Collection framework | Java tutorial.
Переглядів 68Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) file : docs.google.com/presentation/d/1wVSB9UiUmhL2pHV 6VY9KS49JB3F4jkhYIO7zILUi4/edit?usp=sharing In Java, there are multiple ways to iterate through collections (e.g., List, Set, Map). Each method has its pros and cons, depending on the type of collection, the desired functionality (e.g., whether modifications ...
Chapter 6.7 | Collection Framework | Utility Classes | Java tutorial | Geek coding academy
Переглядів 22Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) file : docs.google.com/presentation/d/1OWz4HuRC8ZNIlSHvHZ0EQDaFdvpsWGXBCbjUYbmDu4I/edit?usp=sharing In the Java Collections Framework, there are several utility classes that provide useful methods for working with collections. These utility classes are not collections themselves but contain static methods to help...
Chapter 6.6 | Collections Framework | Comparison of List, Set, and Map | Java tutorial
Переглядів 104Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) file : docs.google.com/presentation/d/1XTFmVJqkMW91v9XL71pVIThgxyP1g6s6BFd37OKKz34/edit?usp=sharing In Java, List, Set, and Map are part of the Java Collections Framework, and they serve distinct purposes in managing collections of data. Below is a detailed comparison of these three interfaces, highlighting their...
Chapter 6.5 | Collections Framework | Map Interface and Implementations | Java tutorial
Переглядів 46Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) file : docs.google.com/presentation/d/1x6a4PD3PWm9IHpY3Y-V_POuqK5s-DSDqXeUZIumNhx4/edit?usp=sharing In Java, the Map interface is a part of the Java Collections Framework and represents a collection of key-value pairs. Each key in a Map must be unique, but the values can be duplicated. Common implementations of t...
Chapter 6.4 | Collections Framework | Queue and Deque Interfaces | Java tutorial
Переглядів 26Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) link : docs.google.com/presentation/d/1-XkEP6Dz4mzyaCtdm5JN-Ioi8uSfPBZISL_yxLS2GdA/edit?usp=sharing In Java, the Queue and Deque interfaces are part of the Java Collections Framework. Both of these interfaces define data structures that follow specific orders for adding and removing elements, which makes them use...
Chapter 6.3 | Collections Framework | Set Interface and Implementations | Java tutorial
Переглядів 57Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) file : docs.google.com/presentation/d/1S_9byLMFoFPST47_riBDuyRDjYN4QLzztgBl87kDl2s/edit?usp=sharing The Set interface in Java is part of the Java Collections Framework and is used to store unique elements, meaning that it does not allow duplicate values. It extends the Collection interface and behaves like a math...
Chapter 6.2 | Collections Framework | List Interface and Implementations | Java tutorial
Переглядів 105Місяць тому
Java Code Repo : github.com/geeksyntaxerror/geek-java-tutorial Presentation (.ppt) Link : docs.google.com/presentation/d/1oNp0y2nMWm2DwULhhfmSjK9OmC7sB5Tn39Ot9SZd5GU/edit?usp=sharing The List interface in Java is part of the Java Collections Framework and extends the Collection interface. It represents an ordered collection of elements (often referred to as a sequence). Unlike sets, lists can c...
Chapter 6.1 | Collections Framework | Introduction | Java tutorial | Geek Coding Academy.
Переглядів 75Місяць тому
Presentation (.ppt) link : docs.google.com/presentation/d/1GUP0zKE-gxpl8S8nLFK3K9PsTTTjmgGdxDOORY1CeLY/edit?usp=sharing The Java Collection Framework is a set of classes and interfaces that implement commonly reusable collection data structures. Introduced in Java 2 (JDK 1.2), it provides a more efficient way to work with groups of objects, known as collections. Collections are used to store, r...
Chapter 5 | Exception Handling Complete | Java tutorial | Geek Coding Academy
Переглядів 30Місяць тому
Chapter 5 | Exception Handling Complete | Java tutorial | Geek Coding Academy
Chapter 4.5 | Advanced OOPS Concepts| Final Keyword | Java tutorial | Geek Coding Academy
Переглядів 33Місяць тому
Chapter 4.5 | Advanced OOPS Concepts| Final Keyword | Java tutorial | Geek Coding Academy
Chapter 4.4 | Advanced OOPS Concepts | Static Keyword | Java tutorial | Geek Coding Academy
Переглядів 36Місяць тому
Chapter 4.4 | Advanced OOPS Concepts | Static Keyword | Java tutorial | Geek Coding Academy
Chapter 4.3 | Advanced OOPS Concepts | Nested and Anonymous Classes | Java tutorial.
Переглядів 28Місяць тому
Chapter 4.3 | Advanced OOPS Concepts | Nested and Anonymous Classes | Java tutorial.
Chapter 4.2 | Advanced OOPS Concepts | Interfaces in depth | Java tutorial | Geek Coding Academy
Переглядів 31Місяць тому
Chapter 4.2 | Advanced OOPS Concepts | Interfaces in depth | Java tutorial | Geek Coding Academy
Chapter 4.1 | Advanced OOPS Concepts | Abstraction | Java tutorial | Geek Coding Academy
Переглядів 29Місяць тому
Chapter 4.1 | Advanced OOPS Concepts | Abstraction | Java tutorial | Geek Coding Academy
Chapter 3.4 | Object oriented programming(oops) | Polymorphism | Java tutorial | Geek Coding Academy
Переглядів 202 місяці тому
Chapter 3.4 | Object oriented programming(oops) | Polymorphism | Java tutorial | Geek Coding Academy
Chapter 3.3 | Object oriented programming (oops) | Inheritance | Java tutorial | Geek Coding Academy
Переглядів 192 місяці тому
Chapter 3.3 | Object oriented programming (oops) | Inheritance | Java tutorial | Geek Coding Academy
Chapter 3.2 | Object oriented programming oops | Encapsulation, Access modifiers.
Переглядів 352 місяці тому
Chapter 3.2 | Object oriented programming oops | Encapsulation, Access modifiers.
Chapter 3.1 | Object oriented programming (oops) | classes, objects & methods | Geek Coding Academy.
Переглядів 672 місяці тому
Chapter 3.1 | Object oriented programming (oops) | classes, objects & methods | Geek Coding Academy.
Chapter 2.3 Basic syntax and Fundamentals | control flow statements | Geek coding academy.
Переглядів 222 місяці тому
Chapter 2.3 Basic syntax and Fundamentals | control flow statements | Geek coding academy.
Chapter 2.2 Basic syntax and Fundamentals | Operators | Geek Coding Academy | Java Tutorial
Переглядів 212 місяці тому
Chapter 2.2 Basic syntax and Fundamentals | Operators | Geek Coding Academy | Java Tutorial
Chapter 2.1 Basic syntax and Fundamentals - Variables and Datatypes | Geek Coding Academy.
Переглядів 502 місяці тому
Chapter 2.1 Basic syntax and Fundamentals - Variables and Datatypes | Geek Coding Academy.
Chapter 1 | Java Brief History and Significance | Java tutorial | Geek Coding Academy
Переглядів 802 місяці тому
Chapter 1 | Java Brief History and Significance | Java tutorial | Geek Coding Academy
Chapter 0 | Introduction to Java Programming Language | Java tutorial | Geek Coding Academy
Переглядів 692 місяці тому
Chapter 0 | Introduction to Java Programming Language | Java tutorial | Geek Coding Academy