Chapter 14: I/O Flashcards
True or False: NIO stands for non-blocking input/output API. If false, why?
False. NIO stands for New Input/Output, not necessarily non-blocking.
True or False: Java 17 SE OCP 1Z0-829 covers both NIO version 1 and version 2. If false, why?
False. The exam only covers NIO version 2.
True or False: Data can be stored in persistent storage devices like hard disk drives and memory cards.
True
True or False: A file within a storage device can contain directories. If false, why?
False. A file holds data, while a directory contains files and other directories.
In Java, directories and files can be treated similarly.
True
The JVM must be manually configured to connect to the file system. If false, why?
False. The JVM automatically connects to the local file system.
True or False: The root directory is always the same across all operating systems. If false, why?
False. Windows uses drive letters (e.g., C:), while Linux uses “/”.
True or False: A path is a representation of a file or directory in the file system.
True
The path separator character is the same for all operating systems. If false, why?
False. It differs; Windows uses “”, while Linux uses “/”.
The system property “file.separator” retrieves the local separator character.
True
True or False: An absolute path includes the full path from the root directory.
True
True or False: A relative path always starts from the root directory. If false, why?
False. A relative path starts from the current working directory.
Whether a path is absolute or relative is independent of the file system. If false, why?
False. It depends on the file system’s conventions
The path /bird/parrot.png is an absolute path in Windows. If false, why?
False. In Windows, absolute paths start with a drive letter, not “/”.
The “.” symbol represents the parent directory. If false, why?
False. “.” refers to the current directory, not the parent.
The “..” symbol refers to the parent directory.
True
A symbolic link is a special file that points to another file or directory.
True
A symbolic link is a copy of the original file. If false, why?
False. A symbolic link is a reference, not a copy.
A File object can represent only a file, not a directory. If false, why?
False. A File object can represent both a file and a directory.
The File class provides only one constructor to create a File object. If false, why?
False. The File class has multiple constructors that accept different parameters, such as a single String, a parent and child String, or a parent File and child String.
If we pass null as the parent in new File(parent, “data/stripes.txt”), it behaves like new File(“data/stripes.txt”). If false, why?
True
The Path interface can be instantiated directly using the new keyword. If false, why?
False. Path is an interface and cannot be instantiated directly; instead, we use factory methods like Path.of() or Paths.get().
The Path.of() method was introduced in Java 8. If false, why?
False. Path.of() was introduced in Java 11.
Both Path.of() and Paths.get() can accept varargs to build a path dynamically. If false, why?
True
All of the following create equivalent Path objects: Path.of(“/home/tiger/data/stripes.txt”) and Paths.get(“/home”, “tiger”, “data”, “stripes.txt”). If false, why?
True
Paths is an interface similar to Path. If false, why?
False. Paths is a utility class with static methods, while Path is an interface.
A URI always begins with “http://” or “https://”. If false, why?
False. A URI can start with other schemas like file://, ftp://, and more.
A URI can be used to reference both local and remote resources. If false, why?
True.
File and Path objects can interact with URIs. If false, why?
True
The file separator used in Path.of() and Paths.get() is always “/”. If false, why?
False. The file separator depends on the operating system, e.g., \ on Windows and / on Linux/macOS.
A File object can be converted to a Path using the toPath() method. If false, why?
True
A Path object can be converted to a File using the toFile() method. If false, why?
True
Paths.get() and Path.of() are both shortcuts for a method in FileSystem. If false, why?
True
FileSystems is an instance of FileSystem. If false, why?
False. FileSystems is a factory class that provides instances of FileSystem.
Files operates on both Path and File instances. If false, why?
False. Files operates only on Path instances, not File instances.
The File class belongs to the NIO.2 API. If false, why?
False. The File class belongs to the traditional I/O (java.io) API.
A Path object can be created using Path.of(URI uri). If false, why?
True
Paths.create() is a valid method to create a Path object. If false, why?
False. There is no Paths.create() method; use Paths.get() or Path.of().
A FileSystem instance can be obtained using FileSystems.getDefault(). If false, why?
True
A Path object can be created from another Path object using Path.of(). If false, why?
True
Classes with plural names, like Files and Paths, are typically factory or utility classes. If false, why?
True
File.toPath() and Path.toFile() can be used interchangeably in all scenarios. If false, why?
False. Conversion is possible but may not always be reversible due to symbolic links, different file system behaviors, or URI-based paths.
What is the purpose of the resolve(Path other) method in Java?
It resolves the given path against the current path, effectively joining them to form a new path.
What happens if the other path provided to resolve() is absolute?
The method simply returns other as it is, without considering the current path.
What is returned if an empty path is passed to resolve(Path other)?
The method returns the original path without any modification
How does resolve(Path other) behave when other is a relative path?
It joins other to the current path, treating the current path as a directory.
What happens if the other path has a root component?
The resolution behavior is implementation-dependent and unspecified.
What is the output of Paths.get(“/home/user”).resolve(“docs/file.txt”)?
/home/user/docs/file.txt (assuming a Unix-based file system).
What is the difference between resolve() and relativize()?
resolve() joins paths, while relativize() calculates the relative path between two paths.
If basePath = Paths.get(“C:\Users\John”), what does basePath.resolve(“Documents\file.txt”) return?
C:\Users\John\Documents\file.txt
How does resolve() behave if the base path does not represent a directory?
The method still performs a logical path joining, even if the base path is a file.
What does resolve() return when used with a path containing .. or .?
It joins the paths as given; normalization (removing .. and .) requires calling normalize().