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.
No Answer is Posted For this Question
Be the First to Post Answer
How will you load a specific locale?
33. try { 34. // some code here 35. } catch (NullPointerException e1) { 36. System.out.print(”a”); 37. } catch (RuntimeException e2) { 38. System.out.print(”b”); 39. } finally { 40. System.out.print(”c”); 41. } What is the result if a NullPointerException occurs on line 34? 1 c 2 a 3 ab 4 ac
How the elements are organized in GridBagLayout?
What is the intersection and union methods?
What are memory tables?
What is the purpose of the system class in java?
how does the run() method in runnable work? : Java thread
What methodology can be employed to locate substrings inside a string?
What is the basic concept of java?
Explain about abstract classes in java?
can used Protected Class outside Function.?
Consider that class classA, abstract class classB, and final classC have been defined.Which one of the following is correct? 1. classA extends classC implements classB 2. class A extends classB, classC 3. classA extends classB 4. classB implements classC