A _______ presents a pictorial user interface to a program.
Fill in the blank(s) with the appropriate word(s).
graphical user interface (GUI).
You might also like to view...
A(n) ________ virus is a series of commands that is executed without your knowledge
Fill in the blank(s) with correct word
import java.util.Scanner;import java.nio.file.*;public class PathDemo2{ public static void main(String[] args) { String name; Scanner keyboard = new Scanner(System.in); System.out.print("Enter a file name >> "); name = keyboard.nextLine(); Path inputPath = Paths.get(name); ------- Code here ----- System.out.println("Full path is " + fullPath.toString()); } }Using the above code, add a statement on the indicated line that creates an absolute path by assigning the file to the current directory.
What will be an ideal response?