What are strings in physics?
No Answer is Posted For this Question
Be the First to Post Answer
how session will be expired ?
How do you access command-line arguments within the code?
0 Answers Flextronics, Hexaware,
Explain java heap space and garbage collection?
What is += mean in java?
How to send a request to garbage collector?
what state does a thread enter when it terminates its processing? : Java thread
Explain the importance of join() method in thread class?
What is the integer of 16?
What is the significance of continue jump statement? Explain with an example.
What is starvation?
Can we write a class without main method 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..