Question: All the following relates to this Java program, except: import java.io . File; import java.io . IOException; public class CreateFile { public static void main

All the following relates to this Java program, except:
import java.io.File;
import java.io.IOException;
public class CreateFile {
public static void main(String[] args){
File myObj = new File("C:\\ptuk\
tprog.txt");
if (myObj.createNewFile()){
System.out.println("File created: "+ myObj.getName());
} else {
System.out.println("File already exists.");
}
}
Select one or more:
a. The folder ptuk should exist
b. None of the mentioned
c. There is no need for the ptuk folder to exist
d. Add throws declaration or Surround with try-catch block

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!