This blog explain about Array in detailed. Array:- A group of similar data types is called an array. Arrays are used in computer programming to organize the same type of data.…
final keyword is used in different contexts. First of all, final is a non-access modifier applicable only to a variable, a method, or a class. The following are different contexts where final is used. Final…
This blog explains about Stream part 3 in java is given below : map(Function) map(List of Objects -> List of Objects) ArrayList<Integer> al = new ArrayList<Integer>(); al.add(10); al.add(20); al.add(30); //…
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…