Does java support multiple inheritance or not?
Answer / Vaibhav Kumar
"Java does not support multiple inheritance for classes. However, it allows a class to implement multiple interfaces."
| Is This Answer Correct ? | 0 Yes | 0 No |
What are multiple inheritances?
solve this is my problem byte a=40,byte b=50 both add value is 90 this is with in range of byte... byte range is -128to 127.... why this pgm gives error like type mismatch.... package javapgms; public class byte1 { public static void main(String args[]) { byte a=40,b=50; byte c=a+b; System.out.println(c); } } note : dont use int k... a,b,c are in byte range... mind it..
Can we sort list in java?
What is the range of the short datatype?
Is Java a dying language?
What is super in java?
Write down program for following scenario. Use java coding standard. You have array list with some words in it..we will call it as dictionary….and you have a arbitrary string containing some chars in it. You have to go through each word of dictionary and find out if that word can be constructed with the help of chars from arbitrary string given. If you find the word print it else print none.
what is filters and its use?
What are the types of web technologies?
What is volatile keyword in java
What is a variable declaration?
What is instance example?