Correct Answer: To create directory on the HD we use mkDir() method: boolean mkDir(); This method returns true if the directory is created on HD This method returns false if the directory is already existing on HD
5. How to create a file on the hard disk by using File class object?
Correct Answer: We can use the following method call: boolean createNewFile(); This method creates a new file on the HD If a file is already existing with the name given in the constructor then this method does not creates file on HD If file is successfully created then this method returns true If file is already existing on the HD then this method returns false This method may throw IOException whenever IO error is generated while creating file on HD
Correct Answer: Executing more than one program simultaniously(ie at time) Ex: Windows media player is a program Internet explorer(IE) is another program executing both the programs at a time is called multi tasking
Correct Answer: To do multi threading in java we use interfaces and classes defined in javalang package Those classes and interfaces are: JavalangRunnable, Javalang Thread, JavalangThreadGroup
Correct Answer: When ever two or more threads are sharing same data for updating then unpredicted result will be there in the data For Example take a thread is depositing amount in Account Object and another thread is withdrawing amount from the same Account Object when ever both threads are executed simultaneously then unexpected result is stored in the balance of the Account Object