wHAT IS DEFAULT SPECIFIER IN JAVA
wHAT IS DEFAULT CONSTRUCTOR IN JAVA
wHAT IS DEFAULT METHOD IN JAVA
Answers were Sorted based on User's Feedback
Answer / guest
default specifier is private
default constructor is className(){}
there is no default method in java
| Is This Answer Correct ? | 7 Yes | 15 No |
How multipleInheritance is possible in java?
How do you sort in java?
If goto and const is reserve words than why it is not work in java?
Is null == null in java?
What are the two ways in which thread can be created?
What is difference between throw and throws ?
What is data type modifier?
What is type inference in java8?
when we create singleton design then we create private constructtor..so how JVM take private constructor to make object..but it's private..
What is super in java?
Can a method be static?
Given: 1. package test; 2. 3. class Target { 4. public String name = “hello”; 5. } What can directly access and change the value of the variable name? 1 any class 2 only the Target class 3 any class in the test package 4 any class that extends Target