Write a regular expression to validate a password. A password must start with an alphabet and followed by alphanumeric characters; its length must be in between 8 to 20.
What is int short for?
What is better - 'bit-shift a value' or 'multiply by 2'?
What is string syntax?
What is sorting algorithm in java?
What is autoboxing and unboxing?
Is there any difference between synchronized methods and synchronized statements?
What is casting in java programming?
What are the various access specifiers in java?
Explain JSP life cycle
We can write any Java Logics in our JSP. Then why we are using servlets(Controller Layer) to interact with the DAO ?
what is difference between String buffer and String builder?
for(i=0;i<100;i++) { int i=method();//method returns no's from 1 to 10; /* insert some stmts which can give output like no.of times numbers(1-10) returned. (for example if it returns 2 then i want output how many times 2 returned) like that i want output for no's 1 - 10 how many times each no returned. */ }