DEV Community

s
s

Posted on

Answer:

A programming language that is 'type-safe' means following things:

  1. You can't read from uninitialized variables
  2. You can't index arrays beyond their bounds
  3. You can't perform unchecked type casts

Top comments (0)