A ___________________ is a collective term for all the ways you interact with a software program.
Fill in the blank(s) with the appropriate word(s).
user interface
You might also like to view...
Which of the following is not a value for the autoLink attribute?
a. all b. phone c. display d. web
Which of the following statements are correct?
``` I: File file = new File("input.txt"); try (Scanner input = new Scanner(file)) { String line = input.nextLine(); } II: try (File file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine(); } III: File file; try (file = new File("input.txt"); Scanner input = new Scanner(file);) { String line = input.nextLine(); } IV: File file; Scanner input; try (file = new File("input.txt"); input = new Scanner(file);) { String line = input.nextLine(); } ``` a. I b. II c. III d. IV