Multiple choice technology programming languages

Which of the following correctly describes C++ language?

  1. Statically typed language

  2. Dynamically typed language

  3. Both Statically and dynamically typed language

  4. Type-less language

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

C++ is a statically typed language, meaning variable types are checked and enforced at compile time. This is different from dynamically typed languages where types are checked at runtime. The language is neither type-less nor both statically and dynamically typed.