<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:dc="http://purl.org/dc/elements/1.1/">
  <channel>
    <title>DEV Community: Pramod Bablad</title>
    <description>The latest articles on DEV Community by Pramod Bablad (@pramodbablad).</description>
    <link>https://dev.to/pramodbablad</link>
    <image>
      <url>https://media2.dev.to/dynamic/image/width=90,height=90,fit=cover,gravity=auto,format=auto/https:%2F%2Fdev-to-uploads.s3.amazonaws.com%2Fuploads%2Fuser%2Fprofile_image%2F580308%2F1f19018d-bfaf-4373-a7c0-e0b450273894.png</url>
      <title>DEV Community: Pramod Bablad</title>
      <link>https://dev.to/pramodbablad</link>
    </image>
    <atom:link rel="self" type="application/rss+xml" href="https://dev.to/feed/pramodbablad"/>
    <language>en</language>
    <item>
      <title>Spring IoC Container</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Thu, 03 Aug 2023 06:52:23 +0000</pubDate>
      <link>https://dev.to/pramodbablad/spring-ioc-container-3lpg</link>
      <guid>https://dev.to/pramodbablad/spring-ioc-container-3lpg</guid>
      <description>&lt;h1&gt;
  
  
  Spring IoC Container
&lt;/h1&gt;

&lt;p&gt;1) Spring IoC container forms the core of the Java Spring Framework. &lt;br&gt;
2) It is responsible for instantiating, configuring and managing the beans in your spring application.&lt;br&gt;
3) It uses configuration metadata to manage the beans.&lt;br&gt;
4) Configuration metadata can be supplied through XML file or through Java annotations or through Java Code.&lt;br&gt;
5) It uses configuration metadata and POJO classes to set up an application ready for use.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Hfncshvw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8wctj9h9s21lswwuvu72.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Hfncshvw--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/8wctj9h9s21lswwuvu72.png" alt="Spring IoC Container" width="800" height="400"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;See more at &lt;a href="https://javaconceptoftheday.com/spring-ioc-container/"&gt;https://javaconceptoftheday.com/spring-ioc-container/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>spring</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Java Array Cheat Sheet</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Thu, 27 Jul 2023 12:01:32 +0000</pubDate>
      <link>https://dev.to/pramodbablad/java-array-cheat-sheet-3l2g</link>
      <guid>https://dev.to/pramodbablad/java-array-cheat-sheet-3l2g</guid>
      <description>&lt;p&gt;Quick reference guide for arrays in Java.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--50QQuUVm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/h2p44sw6vljj8uvbmn4s.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--50QQuUVm--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_800/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/h2p44sw6vljj8uvbmn4s.png" alt="Java Array Cheat Sheet" width="800" height="1147"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;See more at &lt;a href="https://javaconceptoftheday.com/java-array-cheat-sheet/"&gt;https://javaconceptoftheday.com/java-array-cheat-sheet/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>interview</category>
      <category>programming</category>
      <category>freshers</category>
    </item>
    <item>
      <title>Most Likely Java Array Interview Questions And Answers</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Mon, 24 Apr 2023 08:05:14 +0000</pubDate>
      <link>https://dev.to/pramodbablad/most-likely-java-array-interview-questions-and-answers-3g0j</link>
      <guid>https://dev.to/pramodbablad/most-likely-java-array-interview-questions-and-answers-3g0j</guid>
      <description>&lt;p&gt;1) What is an array?&lt;br&gt;
2) What are the different ways to create arrays in Java?&lt;br&gt;
3) What is ArrayStoreException in Java? When you will get this exception?&lt;br&gt;
4) Can you pass the negative number as an array size?&lt;br&gt;
5) Can you change the size of an array once you define it?&lt;br&gt;
6) What is an anonymous array? Give example?&lt;br&gt;
7) What is the difference between int[] a and int a[] ?&lt;br&gt;
8) There are two array objects of int type. One is containing 100 elements and another one is containing 10 elements. Can you assign an array of 100 elements to an array of 10 elements?&lt;br&gt;
9) “int a[] = new int[3] {1, 2, 3}” – is it a legal way of defining the arrays in Java?&lt;br&gt;
10) What are the differences between Array and ArrayList in Java?&lt;br&gt;
11) Where the arrays are stored in the memory?&lt;br&gt;
12) What are the different ways of copying an array into another array?&lt;br&gt;
13) What are jagged arrays in Java? Give example?&lt;br&gt;
14) How do you check the equality of two arrays in Java?&lt;br&gt;
15) What is ArrayIndexOutOfBoundsException in Java? When it occurs?&lt;br&gt;
16) How do you sort the array elements?&lt;br&gt;
17) How do you find the intersection of two arrays in Java?&lt;br&gt;
18) What are the different ways of declaring multidimensional arrays in Java?&lt;br&gt;
19) While creating the multidimensional arrays, can you specify an array dimension after an empty dimension?&lt;br&gt;
20) How do you search an array for a specific element?&lt;br&gt;
21) What value does array elements get, if they are not initialized?&lt;br&gt;
22) What are the different ways to iterate over an array in java?&lt;br&gt;
23) How do you convert a List or Set to an array?&lt;br&gt;
24) What is the time complexity of different operations on arrays?&lt;br&gt;
25) What are the main drawbacks of the arrays in Java?&lt;br&gt;
26) How do you find duplicate elements in an array?&lt;br&gt;
27) How do you find a missing number in an array of integers if it contains elements from 1 to n where n is the number of elements?&lt;br&gt;
28) How do you remove duplicate elements from an array?&lt;br&gt;
29)How do you find the most frequent element in an array?&lt;br&gt;
30) How do you merge two unsorted arrays into single sorted array?&lt;br&gt;
31) How do you merge two sorted or unsorted arrays into single sorted array without duplicates?&lt;br&gt;
32) How do you find smallest and second smallest element in an integer array?&lt;/p&gt;

&lt;p&gt;See the answers at &lt;a href="https://javaconceptoftheday.com/java-array-interview-questions-and-answers/"&gt;https://javaconceptoftheday.com/java-array-interview-questions-and-answers/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>programming</category>
      <category>coding</category>
      <category>interview</category>
    </item>
    <item>
      <title>Java HashSet Internal Working</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Wed, 19 Apr 2023 11:05:51 +0000</pubDate>
      <link>https://dev.to/pramodbablad/java-hashset-internal-working-36ff</link>
      <guid>https://dev.to/pramodbablad/java-hashset-internal-working-36ff</guid>
      <description>&lt;p&gt;HashSet internally uses HashMap to store it’s elements. Whenever you create a HashSet object, one HashMap object associated with it is also created. This HashMap object is used to store the elements you enter in the HashSet. The elements you add into HashSet are stored as keys of this HashMap object. The value associated with those keys will be a constant.&lt;/p&gt;

&lt;p&gt;See more at &lt;a href="https://javaconceptoftheday.com/how-hashset-works-internally-in-java/"&gt;https://javaconceptoftheday.com/how-hashset-works-internally-in-java/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>programming</category>
      <category>coding</category>
      <category>interview</category>
    </item>
    <item>
      <title>Most Likely Java Exception Handling Interview Questions</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Mon, 17 Apr 2023 08:22:17 +0000</pubDate>
      <link>https://dev.to/pramodbablad/most-likely-java-exception-handling-interview-questions-561b</link>
      <guid>https://dev.to/pramodbablad/most-likely-java-exception-handling-interview-questions-561b</guid>
      <description>&lt;p&gt;1) What is an exception?&lt;br&gt;
2) How the exceptions are handled in Java?&lt;br&gt;
3) What is the difference between error and exception in Java?&lt;br&gt;
4) Can we keep other statements in between try, catch and finally blocks?&lt;br&gt;
5) Can we write only try block without catch and finally blocks?&lt;br&gt;
6) There are three statements in a try block – statement1, statement2 and statement3. After that there is a catch block to catch the exceptions occurred in the try block. Assume that exception has occurred in statement2. Does statement3 get executed or not?&lt;br&gt;
7) What is unreachable catch block error?&lt;br&gt;
8) Explain the hierarchy of exceptions in Java?&lt;br&gt;
9) What are run time exceptions in Java. Give example?&lt;br&gt;
10) What is OutOfMemoryError in Java?&lt;br&gt;
11) what are checked and unchecked exceptions in Java?&lt;br&gt;
12) What is the difference between ClassNotFoundException and NoClassDefFoundError in Java?&lt;br&gt;
13) Can we keep the statements after finally block If the finally block is returning the control?&lt;br&gt;
14) Does finally block get executed If either try or catch blocks are returning the control?&lt;br&gt;
15) Can we throw an exception manually? If yes, how?&lt;br&gt;
16) What is Re-throwing an exception in Java?&lt;br&gt;
17) What is the use of throws keyword in Java?&lt;br&gt;
18) Why it is always recommended that clean up operations like closing the DB resources to keep inside a finally block?&lt;br&gt;
19) What is the difference between final, finally and finalize in Java?&lt;br&gt;
20) How do you create customized exceptions in Java?&lt;br&gt;
21) What is ClassCastException in Java?&lt;br&gt;
22) What is the difference between throw, throws and throwable in Java?&lt;br&gt;
23) What is StackOverflowError in Java?&lt;br&gt;
24) Can we override a super class method which is throwing an unchecked exception with checked exception in the sub class?&lt;br&gt;
25) What are chained exceptions in Java?&lt;br&gt;
26) Which class is the super class for all types of errors and exceptions in Java?&lt;br&gt;
27) What are the legal combinations of try, catch and finally blocks?&lt;br&gt;
28) What is the use of printStackTrace() method?&lt;br&gt;
29) Give some examples to checked exceptions?&lt;br&gt;
30) Give some examples to unchecked exceptions?&lt;br&gt;
31) Do you know try-with-resources blocks? Why do we use them? When they are introduced?&lt;br&gt;
32) What are the benefits of try-with-resources?&lt;br&gt;
33) What are the changes made to exception handling from Java 7?&lt;br&gt;
34) What are the improvements made to try-with-resources in Java 9?&lt;br&gt;
35) What are the differences between StackOverflowError and OutOfMemoryError In Java?&lt;/p&gt;

&lt;p&gt;See the answers at &lt;a href="https://javaconceptoftheday.com/java-exception-handling-interview-questions-and-answers/"&gt;https://javaconceptoftheday.com/java-exception-handling-interview-questions-and-answers/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>interview</category>
      <category>fresher</category>
      <category>jobs</category>
    </item>
    <item>
      <title>Java Collections Cheat Sheet</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Wed, 21 Dec 2022 09:19:58 +0000</pubDate>
      <link>https://dev.to/pramodbablad/java-collections-cheat-sheet-1938</link>
      <guid>https://dev.to/pramodbablad/java-collections-cheat-sheet-1938</guid>
      <description>&lt;h1&gt;
  
  
  Java Collections Cheat Sheet
&lt;/h1&gt;

&lt;p&gt;Here is the Java collections cheat sheet. You can use it as quick reference guide to prepare for the interviews.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--b-607bXS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pxf8rnwc12kpowfecckt.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--b-607bXS--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/pxf8rnwc12kpowfecckt.png" alt="Java Collection Cheat Sheet" width="880" height="1460"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;See more at &lt;a href="https://javaconceptoftheday.com/java-collections-cheat-sheet/"&gt;https://javaconceptoftheday.com/java-collections-cheat-sheet/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>beginners</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Java 8 Tutorials</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Tue, 13 Dec 2022 06:57:09 +0000</pubDate>
      <link>https://dev.to/pramodbablad/java-8-tutorials-21ig</link>
      <guid>https://dev.to/pramodbablad/java-8-tutorials-21ig</guid>
      <description>&lt;h1&gt;
  
  
  Java 8 Tutorials 
&lt;/h1&gt;

&lt;p&gt;1) Java 8 Lambda Expressions : &lt;a href="https://javaconceptoftheday.com/java-8-lambda-expressions/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-8-lambda-expressions/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;2) Java 8 Functional Interfaces : &lt;a href="https://javaconceptoftheday.com/java-8-functional-interfaces/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-8-functional-interfaces/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;3) Java 8 Method References : &lt;a href="https://javaconceptoftheday.com/java-8-method-references/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-8-method-references/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;4) Java 8 Interface Changes : &lt;a href="https://javaconceptoftheday.com/java-8-interface-changes-default-methods-and-static-methods/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-8-interface-changes-default-methods-and-static-methods/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;5) Java 8 Streams : &lt;a href="https://javaconceptoftheday.com/java-8-streams-beginners-guide/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-8-streams-beginners-guide/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;6) Java 8 Collectors : &lt;a href="https://javaconceptoftheday.com/java-8-collectors-tutorial/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-8-collectors-tutorial/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;7) Java 8 Optional Class : &lt;a href="https://javaconceptoftheday.com/java-8-optional-class/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-8-optional-class/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;8) Java 8 Spliterator : &lt;a href="https://javaconceptoftheday.com/java-8-spliterator/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-8-spliterator/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;9) Java 8 StringJoiner, String.join() And Collectors.joining() : &lt;a href="https://javaconceptoftheday.com/java-8-stringjoiner-string-join-collectors-joining/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-8-stringjoiner-string-join-collectors-joining/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;10) Solving Real Time Queries Using Java 8 Features -Employee Management System :   &lt;a href="https://javaconceptoftheday.com/solving-real-time-queries-using-java-8-features-employee-management-system/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/solving-real-time-queries-using-java-8-features-employee-management-system/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>saas</category>
      <category>productivity</category>
      <category>management</category>
    </item>
    <item>
      <title>Java Exception Handling Cheat Sheet</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Tue, 06 Dec 2022 07:18:27 +0000</pubDate>
      <link>https://dev.to/pramodbablad/java-exception-handling-cheat-sheet-2j0j</link>
      <guid>https://dev.to/pramodbablad/java-exception-handling-cheat-sheet-2j0j</guid>
      <description>&lt;p&gt;Java Exception Handling Cheat Sheet&lt;/p&gt;

&lt;p&gt;================================&lt;/p&gt;

&lt;p&gt;Here is the Java exception handling cheat sheet. You can use it as quick reference guide to prepare for the interviews.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--UXYAie4U--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/w3vz8kaml2qskir1o8uc.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--UXYAie4U--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/w3vz8kaml2qskir1o8uc.png" alt="Java Exception Handling Cheat Sheet" width="880" height="1371"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;See more at &lt;a href="https://javaconceptoftheday.com/java-exception-handling-cheat-sheet/"&gt;https://javaconceptoftheday.com/java-exception-handling-cheat-sheet/&lt;/a&gt; &lt;/p&gt;

</description>
      <category>java</category>
      <category>programming</category>
      <category>career</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Java 9 New Features</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Wed, 30 Nov 2022 08:19:06 +0000</pubDate>
      <link>https://dev.to/pramodbablad/java-9-new-features-5c2c</link>
      <guid>https://dev.to/pramodbablad/java-9-new-features-5c2c</guid>
      <description>&lt;p&gt;&lt;strong&gt;Java 9 New Features&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;1) Java 9 Interface Private Methods : &lt;a href="https://javaconceptoftheday.com/java-9-interface-private-methods/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-9-interface-private-methods/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;2) Java 9 JShell – REPL Tool : &lt;a href="https://javaconceptoftheday.com/java-9-jshell-repl-tool/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-9-jshell-repl-tool/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;3) Java 9 Immutable Collections : &lt;a href="https://javaconceptoftheday.com/java-9-immutable-collections/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-9-immutable-collections/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;4) Java 9 Stream API Improvements : &lt;a href="https://javaconceptoftheday.com/java-9-stream-api-improvements-takewhile-dropwhile-ofnullable-and-iterate/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-9-stream-api-improvements-takewhile-dropwhile-ofnullable-and-iterate/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;5) Java 9 Try With Resources Improvements : &lt;a href="https://javaconceptoftheday.com/java-9-try-with-resources-improvements/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-9-try-with-resources-improvements/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;6) Java 9 Diamond Operator Improvements : &lt;a href="https://javaconceptoftheday.com/java-9-diamond-operator-improvements/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-9-diamond-operator-improvements/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;7) Java 9 @SafeVarargs Annotation Changes : &lt;a href="https://javaconceptoftheday.com/java-9-safevarargs-annotation-changes/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-9-safevarargs-annotation-changes/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;8) Java 9 Underscore Changes : &lt;a href="https://javaconceptoftheday.com/java-9-underscore-changes/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-9-underscore-changes/&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;9) Java 9 Optional Class Improvements : &lt;a href="https://javaconceptoftheday.com/java-9-optional-class-improvements/" rel="noopener noreferrer"&gt;https://javaconceptoftheday.com/java-9-optional-class-improvements/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>cheatsheet</category>
      <category>interview</category>
      <category>developer</category>
      <category>productivity</category>
    </item>
    <item>
      <title>Java OOP Concepts Cheat Sheet</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Thu, 15 Sep 2022 09:32:28 +0000</pubDate>
      <link>https://dev.to/pramodbablad/java-oop-concepts-cheat-sheet-1044</link>
      <guid>https://dev.to/pramodbablad/java-oop-concepts-cheat-sheet-1044</guid>
      <description>&lt;p&gt;Inheritance, Abstraction, Polymorphism and Encapsulation quick reference guide. &lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--sm-OevZo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kl5mehtz9d37asx4hdiy.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--sm-OevZo--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/kl5mehtz9d37asx4hdiy.png" alt="Java OOP Concepts Cheat Sheet" width="880" height="1362"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;See more at &lt;a href="https://javaconceptoftheday.com/java-oop-concepts-cheat-sheet/"&gt;https://javaconceptoftheday.com/java-oop-concepts-cheat-sheet/&lt;/a&gt; &lt;/p&gt;

</description>
      <category>java</category>
      <category>beginners</category>
      <category>programming</category>
      <category>tutorial</category>
    </item>
    <item>
      <title>Solving Real Time Queries Using Java 8 Features -Employee Management System</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Wed, 13 Jul 2022 07:53:20 +0000</pubDate>
      <link>https://dev.to/pramodbablad/solving-real-time-queries-using-java-8-features-employee-management-system-onm</link>
      <guid>https://dev.to/pramodbablad/solving-real-time-queries-using-java-8-features-employee-management-system-onm</guid>
      <description>&lt;p&gt;1) How many male and female employees are there in the organization?&lt;br&gt;
2) Print the name of all departments in the organization?&lt;br&gt;
3) What is the average age of male and female employees?&lt;br&gt;
4) Get the details of highest paid employee in the organization?&lt;br&gt;
5) Get the names of all employees who have joined after 2015?&lt;br&gt;
6) Count the number of employees in each department?&lt;br&gt;
7) What is the average salary of each department?&lt;br&gt;
8) Get the details of youngest male employee in the product development department?&lt;br&gt;
9) Who has the most working experience in the organization?&lt;br&gt;
10) How many male and female employees are there in the sales and marketing team?&lt;br&gt;
11) What is the average salary of male and female employees?&lt;br&gt;
12) List down the names of all employees in each department?&lt;br&gt;
13) What is the average salary and total salary of the whole organization?&lt;br&gt;
14) Separate the employees who are younger or equal to 25 years from those employees who are older than 25 years?&lt;br&gt;
15) Who is the oldest employee in the organization? What is his age and which department he belongs to?&lt;/p&gt;

&lt;p&gt;See the Java 8 code at &lt;a href="https://javaconceptoftheday.com/solving-real-time-queries-using-java-8-features-employee-management-system/"&gt;https://javaconceptoftheday.com/solving-real-time-queries-using-java-8-features-employee-management-system/&lt;/a&gt; &lt;/p&gt;

</description>
      <category>java</category>
      <category>java8</category>
      <category>programming</category>
      <category>coding</category>
    </item>
    <item>
      <title>Java New String Methods – From Java 8 To Java 17</title>
      <dc:creator>Pramod Bablad</dc:creator>
      <pubDate>Mon, 11 Jul 2022 07:30:13 +0000</pubDate>
      <link>https://dev.to/pramodbablad/java-new-string-methods-from-java-8-to-java-17-5ea1</link>
      <guid>https://dev.to/pramodbablad/java-new-string-methods-from-java-8-to-java-17-5ea1</guid>
      <description>&lt;p&gt;Strings are the most used data type in Java. Almost every application in Java makes use of strings. That’s why strings are treated with special attention in Java. From time to time, new methods are added to String class so that working with strings becomes effortless and simple. join() in Java 8, chars() and codePoints() in Java 9, isBlank(), lines(), repeat(), strip(), stripLeading() and stripTrailing() in Java 11, indent(), transform(), describeConstable() and resolveConstantDesc() in Java 12, formatted(), stripIndent() and translateEscapes() in Java 15 are some new Java string methods.&lt;/p&gt;

&lt;p&gt;&lt;a href="https://res.cloudinary.com/practicaldev/image/fetch/s--Fam1hPlc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ywdetabctgtj19zx1yj1.png" class="article-body-image-wrapper"&gt;&lt;img src="https://res.cloudinary.com/practicaldev/image/fetch/s--Fam1hPlc--/c_limit%2Cf_auto%2Cfl_progressive%2Cq_auto%2Cw_880/https://dev-to-uploads.s3.amazonaws.com/uploads/articles/ywdetabctgtj19zx1yj1.png" alt="javaconceptoftheday.com" width="880" height="177"&gt;&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;See more at &lt;a href="https://javaconceptoftheday.com/java-new-string-methods-with-examples/"&gt;https://javaconceptoftheday.com/java-new-string-methods-with-examples/&lt;/a&gt;&lt;/p&gt;

</description>
      <category>java</category>
      <category>java8</category>
      <category>java11</category>
      <category>string</category>
    </item>
  </channel>
</rss>
