Which command from the jdk compiles a java program?
No Answer is Posted For this Question
Be the First to Post Answer
What is the catch or declare rule for method declarations?
What is methods and methodology?
How many bits does a boolean take?
Explain how can you debug the Java code?
There are 2 different ways to create an object. a)By using keyword "new" b)By using Class.forName ("className").newInstance(); What is the difference between these 2 methods.
What are null interfaces? Give some examples?
Can a static class have a constructor java?
Define how objects are stored in java?
What is difference between static class and normal class?
write a program to create an vector and listeterator.and value should be enter through keyboard.
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 are synchronized methods and synchronized statements in java programming?