Multiple choice technology programming languages

Which other programming language uses whitespace syntax

  1. Java

  2. Cobra

  3. VC++

  4. Python

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

Python is well-known for using significant whitespace (indentation) to define block structure, unlike languages like Java, C++, or Cobra that use braces/end keywords. Python's syntax relies on consistent indentation for nested blocks, making it the correct answer. Options A, B, C use brace-based syntax.