Is string is a keyword in java?
No Answer is Posted For this Question
Be the First to Post Answer
how are methods defined?
Can Anybody tell the diff b/w jdk1.6 and latest version.
Suppose if we have variable ' I ' in run method, if I can create one or more thread each thread will occupy a separate copy or same variable will be shared?
How to stop a thread in java? Explain about sleep () method in a thread?
public class BatchTest { public static void main(String[] args) { Runtime run = Runtime.getRuntime(); try { Process p = run.exec("cmd start /c D:/test.bat"); System.out.println(p.exitValue()); } catch (Exception e) { e.printStackTrace(); } System.out.println("FINISHED"); } }
Name the method that used to clear the buffer ?
How are variables stored in memory?
What is currentthread()?
What are the object and class classes used for?
How we can skip finally block of exception even if some exception occurs in the exception block in java?
What initialize variables?
what is the purpose of the final in the try-catch-final