This blog Explain about Git Git is a distributed version control system used for tracking changes in source code during software development. It is widely used by developers to collaborate…
This blog explains about Stream API in java is given below : Print Array values in Sorted Order: int[] ar = {10,5,7,3,6}; Arrays .stream(ar) //Intermediate Operation .sorted() // Intermediate Operation…
This blog explains about Method reference double colon operator in java is given below : Method Reference: :: Double Colon Operator: Short cut for Lambda Expressions:Code Readability:Compact. ArrayList<Integer> al =…
JAVA Features - Java 8 This Blog explains about Java 8 - New Features - Functions, forEach, Consumer Interface. Demo_Impl.java package function_consumer; public class Demo_Impl implements Demo_Interface{ public static void…
This Blog explains about Java 8 - New Features - default, static Methods in Interface, Predicates. Ticket booking. java package default_static_demo; import java.util.ArrayList; import java.util.Collection; import java.util.function.Predicate; public class Ticket_Booking…
This Blog explains about Java 8 - New Features - Lambda Expressions, Functional Interfaces. Lambda Expressions: WHY: Functional Programming WHAT: Anonymous Functions: Closures Function - Method: HOW: Eg: 1 public…
HTML documents are composed of a set of elements, each represented by a tag. These tags are used to define the structure and layout of a web page. Here are…
HTML stands for Hyper Text Markup Language. HTML is the standard markup language for creating Web pages. It is a fundamental technology for building websites and web applications. HTML is a…
In Java, access modifiers are keywords used to define the accessibility or visibility of classes, variables, methods, and constructors. There are four types of access modifiers in Java: Image referred…