COMPUTER FUNDAMENTALS

COMPUTER SOFTWARE

PROGRAMMING LANGUAGES

Question [CLICK ON ANY CHOICE TO KNOW THE RIGHT ANSWER]
This language’s design philosophy emphasizes code readability and uses meaningful whitespace, rather than braces, to mark blocks in the code.
A
Python
B
C++
C
Java
D
Javascript
Explanation: 

Detailed explanation-1: -Python is a high-level, general-purpose programming language. Its design philosophy emphasizes code readability with the use of significant indentation.

Detailed explanation-2: -Created by Guido van Rossum and first released in 1991, Python has a design philosophy that emphasizes code readability, notably using significant whitespace. It provides constructs that enable clear programming on both small and large scale.

Detailed explanation-3: -Python’s design philosophy emphasizes code readability with its notable use of significant whitespace.

Detailed explanation-4: -Indentation is used to define a block of code in python. Braces are used to define a block of code in most programming languages, like C, C++, and Java. But this indentation makes python unique among all programming languages.

There is 1 question to complete.