Can you override static methods?
No Answer is Posted For this Question
Be the First to Post Answer
What about member inner classes?
What is difference between overloading and overriding?
Can we override constructor?
Why is the type for real numbers called double?
Differentiate between == and equals().
What is nextint java?
what is difference between Exception and Error?
Can a static class have a constructor java?
What is the constructor?
Discuss different types of errors that generally occur while programming.
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..
What is a class in java?