What is the constructor?
No Answer is Posted For this Question
Be the First to Post Answer
What happens when you invoke a thread’s interrupt method while it is sleeping or waiting?
How to create a fecelet view?
What is the multi-catch block in java?
What are facelets templates?
Which collections are thread safe in java?
what is difference between validation.xml & validation rules.xml?
How is a variable stored in memory?
what is the difference between statis block and static variable
What are the OOPS concepts in Java ?
How do you do absolute value in java?
What are recursive functions?
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..