How java is platform independent?
Answers were Sorted based on User's Feedback
What is Java Annotations?
What is null statement?
Can we override constructor in java?
What does || mean in code?
how to pass the parameters to applets?
How do you find the maximum number from an array without comparing and sorting?
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..
How do you end a program?
What initialize variables?
What is the difference between the final method and abstract method?
What if the main() method is declared as private? What happens when the static modifier is removed from the signature of the main() method?
Give an example of call be reference significance.