Basic java programs

Print prime numbers?  Interfaces allows constructors?  Can we create static constructor in java  (adsbygoogle = window.adsbygoogle || []).push({}); Super keyword interview questions java  Java interview questions on final... read more ?

Top 10 Java interview questions on final keyword

interface+final

1. What is the use of final keyword in java?    (adsbygoogle = window.adsbygoogle || []).push({}); By using final keyword we can make Final class Final method Final... read more ?

Super keyword interview questions java

super+interview

Super Keyword: (adsbygoogle = window.adsbygoogle || []).push({}); The functionality of super keyword is only to point the immediate super class object of the current object. super keyword is... read more ?

Data types in java with example programs

intdatatypes

The data type is something which gives information about Size of the memory location and range of the data that can be accommodated inside that location. Possible legal... read more ?

Top 10 interview questions on java interfaces

interface+concrete+method

1.What is an interface in Java. Before Java 8 interfaces are pure abstract classes which allow us to define public static final variables and public abstract methods(by default).... read more ?

Hibernate configuration file

hibernate+configuration+file

1.hibernate.dialect: This property hibernate.dialect makes Hibernate generate the appropriate SQL for the given database. 2.hibernate.connection.driver_class: This property hibernate.connection.driver_class specifies jdbc driver class name  3.hibernate.connection.username: This property hibernate.connection.username specifies... read more ?

Constructor in interface ?

interface+constructor

Can we write constructor inside interface in java? No. Interfaces does not allow constructors. Why interface does not have constructor? The variables inside interfaces are static final variables... read more ?

Select Menu