Can a class be final?
No Answer is Posted For this Question
Be the First to Post Answer
What is complexity and its types?
Difference between == and .equals() ?
Give us a program to check for parenthesis matching using stack.
Which class is the superclass for every class in java programming?
What is the difference between synchronized and synchronized block?
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..
Can we sort a map in java?
What are data types in oop?
how to create multithreaded program? Explain different ways of using thread? When a thread is created and started, what is its initial state? Or extending thread class or implementing runnable interface. Which is better? : Java thread
What is externalizable?
how we can create packages in java?
Write a java program to count the number of words present in a string?