How many threads can I run java?
No Answer is Posted For this Question
Be the First to Post Answer
What is thread start?
Explain the difference between runnable and callable interface in java?
Write an algorithm for quick sort?
What is the differences between heap and stack memory in java? Explain
What is meant by attribute?
How to convert string to byte array and vice versa?
Tell me the difference between an applet and a Japplet?
Explain an intermediate language?
What is the default value of byte datatype in java?
What is the purpose of methodology?
What do you mean by composition in java?
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..