Why java uses the concept of the string literal?
No Answer is Posted For this Question
Be the First to Post Answer
Can I declare a class as private?
What is a double?
What is size () in java?
What is public static?
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..
Write a program for recursive Traverse?
What state is a thread in when it is executing?
How many arguments can be passed to main ()?
Can we have any code between try and catch blocks?
Which sorting is used in arrays sort in java?
Explain features of interfaces in java?
What is Java Package and which package is imported by default?