Answers In Depth
Pages
(Move to ...)
Home
!!! Hibernate interview questions !!!
!!! Spring Interview Questions !!!
▼
Monday, 10 August 2020
Spring Boot @ConfigurationProperties and Properties File
›
In this tutorial, you will learn to use @ConfigurationProperties to map properties files to POJO classes in Spring Boot application. Let’s ...
List the key features of Angular 8?
›
T he key features of Angular 8 are as follows: Differential Loading to create two different production bundles of your app. New Dynamic Laz...
Wednesday, 5 June 2019
What is a Functional interface in Java 8? What does @Functional annotation do?
›
What is Functional interface in Java 8 Well, a functional interface is nothing but an interface with just one abstract method e.g. Compa...
Explain comparable interface in java
›
By using Comparable we can sort the objects based on any data member. For example, lets say we have an Author class has data members: Autho...
Abstract class in java can’t be instantiated
›
Because that would contravene their whole purpose. Abstract classes , by design, are not complete or functional. They are meant to serve ...
Abstract Class in Java
›
Abstract class in Java is similar to interface except that it can contain default method implementation. An abstract class can have an abst...
Friday, 31 May 2019
How to create immutable class in Java
›
An immutable class is one whose state can not be changed once created. There are certain guidelines to create a class immutable in Java. ...
Why Strings are Immutable in Java?
›
An immutable object is an object which state is guaranteed to stay identical over its entire lifetime. This is really a good definition. Is...
What is Marker interfaces in Java and why required
›
Marker interface in Java is interfaces with no field or methods or in simple word empty interface in java is called marker interface. Exa...
Wednesday, 29 May 2019
important Interface interview questions
›
1) Can abstract class have constructors in Java? Yes, abstract class can declare and define constructor in Java. Since you can not creat...
1 comment:
›
Home
View web version