Multiple choice technology security

In which type of language can Buffer over flows occur?

  1. Pure C++

  2. Any file type on a web server

  3. Pure C#

  4. Pure Java

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

C and C++ allow direct memory access and lack automatic bounds checking, making them vulnerable to buffer overflows. Languages like Java and C# have built-in bounds checking and type safety that prevent buffer overflows in normal usage.