1.Is it possible to create static constructor in java? No. We can not create constructor with static. If we try to create a static constructor compile time error... read more ?
- Core java Interview Questions
- java programming interview questions
- Java SE
- Java Programs
- c programming examples for beginners
- C language interview programs
- Python Programming
- java Collections interview Questions
- Angular
- Concept and Interview Questions
- java interview programs
- Collections
- concept and program
- Java EE
- Java 8
- c programming language
- exception handling interview questions
- hibernate interview questions
- ArrayList
- Basic Java Example programs
- Hashtable
- java string interview programs
- javascript
- Class-Program
- Find Output of Program
- Javascript interview questions
- arrays
- Hibernate Tutorial
- core java multiple choice questions with answers
- java programs for freshers
- treeset
- Python
- Servlets Tutorial
- hashset
- java sorting algorithms
- AI tools
- Design Pattern
- Jsp
- LinkedHashSet
- hashmap
- hibernate
- java8
- linux unix commands
- technology
- Big data Hadoop interview questions and answers for freshers and experienced
- JDBC
- Jsp interview questions
- Trending
- apache spark examples java
- java interview questions
- Files
- HCQL
- HQL
- HTML interview questions
- Hibernate named query
- ListIterator
- Multithreading interview questions
- Oracle
- Quantitative Aptitude questions in java for freshers
- Sorting algorithms
- finally with return
- java
- java design pattern interview questions and answers
- java eclipse
- java load properties file example
- java test
- jobs
- spring
- springboot
- technews
- try except example
How to check internet connection using java
Posted by: Instanceofjava Posted date: 12:06 PM / comment : 1 Core java Interview Questions
Hi friends now we are going to check our pc is having internet connection or not using java code yes we can check internet connection using java code... read more ?
Top 10 Interview Programs and questions on method overriding in java
Posted by: Instanceofjava Posted date: 1:09 PM / comment : 2 Concept and Interview Questions , Core java Interview Questions , java interview programs
1.What is method overriding in java? Defining multiple methods with same name and same signature in super class and sub class known as method overriding. Method overriding is... read more ?
Top 15 Java abstract class and abstract method interview questions and programs
Posted by: Instanceofjava Posted date: 8:11 PM / comment : 2 Core java Interview Questions , java programming interview questions
1.What is abstract class in java? Hiding the implementation and showing the function definition to the user. Abstract class contains abstract methods and concrete methods(normal methods) 2.How can... read more ?
Can we call super class static method from subclass in java
Posted by: Instanceofjava Posted date: 12:46 PM / comment : 0 Core java Interview Questions , java interview programs
If you want to call static method of a class we can call directly from another static method or by using its class name we can call static... read more ?
Inheritance interview programming questions : Part 2
Posted by: Instanceofjava Posted date: 11:17 PM / comment : 0 Core java Interview Questions , java interview programs
1. what is the output of following program: package com.instanceofjava; public class SuperDemo{ public void show(){ System.out.println("Super class show() method called"); } }... read more ?