Stream.anyMatch: The `anyMatch` method in the Stream API checks if any element in the stream matches the provided predicate. This terminal operation returns `true` if at least one element satisfies the condition, often used for validation or search tasks.