How does regex work?
Answer / Km Pooja Yadav
Regular expressions (regex) in Java are a powerful tool for searching, matching, and manipulating text based on patterns. They use special characters to define the rules of what they should match.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a parameter example?
Explain what are final variable in java?
what is Remote Reference Layer ?
public class Base { public void myMethod(int a,intb) {} } // Uses myMethod and then hides it. public class DerivedOne extends Base { private void myMethod(int a,int b); } will this compile or not .yes or no. why
In a program, initializing an array of 100 KB is throwing an out of memory exception while there is 100 MB of memory available. Why?
Difference String and String Buffer
What is externalizable interface?
How will you load a specific locale?
Explain method local inner classes ?
class A { class B { psvm(String args[]) { } } } if the prg saved in A.java whats the o/p?
What is variable and example?
Can we override a variable in java?