During project development, every developer come across a situation where implementation of sorting becomes mandatory. There are many flavors of sorting. It depends on the scenario which one to implement where. In this article, we have mainly focused on sorting using Java 8. Moreover, we have also provided an example which was being used before the introduction of Java 8. Hence our article is on 'How To Sort the List in Java 8'. There are multiple ways to sort a list of items already available before Java8. Further, Java8 has introduced different ways to make sorting/comparison easy. Let's get into our topic 'How To Sort the List in Java 8'. What all solutions are covered in this article? This article covers the following
Interview
Spring Boot Interview Questions & Answers
If we talk about a job interview in Java technology, Spring Boot becomes the most popular topic. Even if you don't mention Spring Boot in your resume, you will reduce the chances of getting shortlisted. It happens because now-a-days Spring Boot is the most widely used framework for developing a Java based Application. Apart from that, it also used to develop microservices based projects in Java, which again is a trending architecture in the industry. Hence, Spring Boot becomes a 'Must Know' skill for a Java developer. Therefore, our topic for discussion is 'Spring Boot Interview Questions & Answers'. In this article, we will talk about the most important interview questions on Spring Boot. If you are looking for detailed tutorials
Java Core Tutorial
In this section we will cover the basics of Java with clear and simple explanation. Here in this section we have covered concepts in the form of questions. Moreover, I am sure that these concepts will be beneficial to new developers & to those who are preparing for interviews. We will call this section 'Java Core Tutorials'. They are like must to know concepts for every Java professional. In addition, we have a separate section for Java Interview Questions. Let's start learning basics of Core Java in our topic 'Java Core Tutorial'. Q: What is the history of Java ? How popular it is ? In the early nineties, Java was created by a team led by James Gosling for Sun Micro-systems
Java Coding Interview Questions
In this article, We will discuss about Java Coding Interview Questions and their Answers. Moreover, we will try to provide multiple approaches to solve a coding problem. Additionally, related concepts to a particular coding problem will also be discussed. Our primary focus of this article is to provide all kinds of Java Coding Interview Questions with their Answers. However, for theoretical questions & answers of Java Interview, kindly visit our another article 'Java Interview Questions'. How to iterate and modify value in Java 8 in a Map? Here is the program to update & iterate a Map in Java 8. public class MapUpdateTest { public static void main(String[] args) { Map<String,String> map = new
Java Interview Questions and Answers
Here in this section we will see Java Interview Questions and answers which will be valuable for any type of interview in Java Programming Language. I am sure that you will find some unique questions that you may rarely see in other sources. Moreover, you will find clear explanations of the answers to each question. When you go through the answers you will find that while answering the questions related new terms are also explained. If you need any other question to be added here, don't hesitate to put your comment in the comment section. Why are the Java primitive data types not objects? Why is Java not a pure Object-Oriented programming Language? Objects always consume more memory than primitives. If we