Can we use return in constructor?
No Answer is Posted For this Question
Be the First to Post Answer
What is parameter example?
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 visibility mode?
What is Java exception handling?
when System.out.println("") is executed what happens in the back ground?
What is the purpose of extern variable?
What is a method in java?
What is a local block?
Can we have multiple catch block for a try block?
Can we write a class without main method in java?
what is the difference between sleep() and Wait()?
What is the life cycle of an Applet ?