Question: Which statement about the `Clone` and `Copy` traits is false?

  1. `Copy` is enabled for primitive, built-in types.
  2. Without `Copy`, Rust applies move semantics to a type's access.
  3. When using `Clone`, copying data is explicit.
  4. Until a type implements either `Copy` or `Clone`, its internal data cannot be copied.

Answer: The correct answer of the above question is Option A:`Copy` is enabled for primitive, built-in types.